Hi all !
I recently switched to a new hosting provider, and I can't get my php driven (cms-style) site to run correctly.
For example, I created this example to test php file-handling methods:
<?PHP
$file = "flower.jpg";
unlink($file);
?>
The example above gives no error, but does not delete the file.. Even when I remove the file manualy, and run this script - it still gives no PHP error !!!! While on my other server, it does !..
The strange thing is, that when I remove the ; character, it does give a parsing error, so the problem seems file-handling functions -related.
Anyone has any idea ?? Cause this way I can't manipulate or upload files in any possible way.. 🙁
Thnx in advance folks !
Roel.