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

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

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