News:

CPG Release 1.6.29
During HTML5 upload, keep pseudo blank code 200 messages from triggering error condition
added Russian language
correct failure to use theme menu icons in album manager
minor vulnerabilities mitigation

Main Menu

[Solved]: error in upload.php on line 1205

Started by gizzmo, June 24, 2004, 06:40:57 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

gizzmo

When i use the file upload funtion i get an error display, everything works fine further the upload works etc. i only want to get rid of this error:

Warning: chmod, chgrp, realpath, tmpfile, link, mb_send_mail() has been disabled for security reasons in /data/members/free/tripod/nl/d/c/g/dcgallery/htdocs/upload.php on line 1205

Is there some way to fix this?

Joachim Müller

your webhost has disabled CHMOD to be executed in php (obviously for security reasons, but somehow castrating your webspace with this directive). To solve this issue for you, edit upload.php, find            // Change file permission
            chmod($path_to_image, octdec($CONFIG['default_file_mode']));
and comment it out by replacing it with            // Change file permission
            //chmod($path_to_image, octdec($CONFIG['default_file_mode']));


GauGau

gizzmo