Quote:
Originally Posted by y2ksw
Could you please try to create a file from a script in that folder and see what rights it has (or what errors):
PHP Code:
<?php $fp = fopen('imgcache/2011/03/test.file', 'wb'); fwrite($fp, 'abc'); fclose($fp);
echo file_get_contents('imgcache/2011/03/test.file'); die; ?>
|
It created the file perfectly content with
abc
What could be wrong? Very thanks for you help!