I'm trying to delete some images from the server using PHP. However I keep running into this error:
Warning: unlink(/public_html/sandbox/resources/blocks/space004.jpg) [function.unlink]: No such file or directory in /home//public_html/sandbox/application/blocks/models/m_blocks.php on line 503
Here is the unlink code:
if(unlink(SITE_ROOT . 'resources/blocks/' . $filename))
{
$Template->setAlert($filename.' has been deleted successfully');
}
else
{
$Template->setAlert($filename.' has not been deleted', 'error');
}
I've checked in FTP that the file exists, it's in the exact path that's in the error (/public_html/sandbox/resources/blocks/). I've also checked file permissions, they're set to 0644 and changing to 0777 for testing purposes did nothing (as expected).
Anyone got an idea what might be causing this?
public_htmldirectory at the root of your server? – Ignacio Vazquez-Abrams Feb 23 '12 at 2:15//in/home//public_html/..Maybe start there – relentless Feb 23 '12 at 2:16