When i'm trying to upload files i get this:
Warning: chmod(): Operation not permitted in /pub/home/draggold/htdocs/photo/upload.php on line 1209
But upload works...
if this message bothers you, edit upload.php, find chmod($path_to_image, octdec($CONFIG['default_file_mode']));
and replace with @chmod($path_to_image, octdec($CONFIG['default_file_mode']));
to silence the output.
Thank you)