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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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