FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum » FUDforum Installation Issues » How to remove installation in safe mode
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
How to remove installation in safe mode [message #10082] Sun, 18 May 2003 01:21 Go to previous message
Gady is currently offline  Gady   Canada
Messages: 117
Registered: March 2003
Karma:
Senior Member
Please, I'm looking for any possibilities.
I've tried "unlock" files - didn't work.
I can't delete EVERY file in file manager (too many!).
I've tried `rm -rf` - didn't work.
I've tried different variations of the script like that:
<?php

function delete($file) {
chmod($file,0777);
if (is_dir($file)) {
$handle = opendir($file);
while($filename = readdir($handle)) {
if ($filename != "." && $filename != "..") {
delete($file."/".$filename);
}
}
closedir($handle);
rmdir($file);
} else {
unlink($file);
}
}
delete("fud");
?>
- didn't work!

Help, please.


[Message index]
 
Read Message
Read Message
Read Message
Previous Topic: i cannot delete the server root and data root folders..
Next Topic: uninstall.php
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sun Oct 06 06:25:17 GMT 2024

Total time taken to generate the page: 0.05198 seconds