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
Switch to threaded view of this topic Create a new topic Submit Reply
How to remove installation in safe mode [message #10082] Sun, 18 May 2003 01:21 Go to next message
Gady is currently offline  Gady   Canada
Messages: 117
Registered: March 2003
Karma: 0
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.


Re: How to remove installation in safe mode [message #10087 is a reply to message #10082] Sun, 18 May 2003 14:28 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
The 2.5.0 version has an uninstall.php script that given the installation paths will un-install the forum.

FUDforum Core Developer
Re: How to remove installation in safe mode [message #10197 is a reply to message #10087] Fri, 23 May 2003 02:14 Go to previous message
Gady is currently offline  Gady   Canada
Messages: 117
Registered: March 2003
Karma: 0
Senior Member
Thanks, prottoss.

I also was lucky to convince my provider to switch off safe mode over my domain. Smile))


  Switch to threaded view of this topic Create a new topic Submit Reply
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 Jun 16 21:47:04 GMT 2024

Total time taken to generate the page: 0.04587 seconds