Fix to remove apache owner directory files


/ Published in: PHP
Save to your folder(s)

Save in a php file and run in the directory.
Remove directory files through ftp.
Remove php file


Copy this code and paste it in your HTML
  1. <?php
  2. system('./fixmod');
  3.  
  4. print "\n\nComplete!";
  5.  
  6. system('find . -type d -exec chmod 777 {} \; 2>&1');
  7. system('find . -type f -exec chmod 777 {} \; 2>&1');
  8.  
  9. print "\n\nComplete!";
  10. ?>

URL: http://www.frihost.com/forums/vt-14867.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.