thanks to trevorchan and partially shiichan on my server. 2 directories cannot be modified. i want them removed. chmod is denied, going into cpanel to delete them does nothing. i thought it was the .htaccess file in the /b/ directory. but the dir shiichan left wont delete either.
are there any methods that don't involve me calling my hosting's tech
>>9,10
why do you have to exec that shit?
<?php
$undeletable_file = "whatever.txt";
$undeletable_dir = "blah";
unlink($undeletable_file);
rmdir($undeletable_dir);
?>
>>15
Why do you have to use double quotes for strings?
Name:
Anonymous2007-08-01 0:21 ID:snDb3ZIZ
it may not work that way, what is the chmod set to now?
if its 0000, you are fucked, you gotta call your host, and he can remove it
(or any combination of 00xx or 0x00 or 0xxx 0 in the first spot means the server os itself cannot modify the directory [invalid security descriptor] - msscandisk/other util --> removed])
happened to me before, you might not have to call him, sometimes hosting companies have cron jobs setup to do 'garbage collection'
Name:
Anonymous2007-08-01 0:24 ID:3+cbfFfz
>>16,17
why do not use
<?php
unlink("whatever.txt");
rmdir("blah");
?>
?