forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Permissions & Access Rights => Topic started by: Knight of death on November 04, 2005, 08:23:33 am

Title: Error
Post by: Knight of death on November 04, 2005, 08:23:33 am
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...
Title: Re: Error
Post by: Joachim Müller on November 04, 2005, 08:33:45 am
if this message bothers you, edit upload.php, find
Code: [Select]
            chmod($path_to_image, octdec($CONFIG['default_file_mode']));and replace with
Code: [Select]
            @chmod($path_to_image, octdec($CONFIG['default_file_mode']));to silence the output.
Title: Re: Error
Post by: Knight of death on November 04, 2005, 08:36:15 pm
Thank you)