Home > Article > CMS Tutorial > How to solve the error of uploading pictures in PHPCMS?
#What to do when uploading images to PHPCMS?
1. Modify the "php.ini" file and enable the "php_zip" extension;
2. Modify "attachment.class.php " file, change the attribute "upload_func" to "move_uploaded_file".
Change
$this->upload_func = 'copy';
to
$this->upload_func = 'move_uploaded_file';
Recommended tutorial: "PHPCMS Tutorial"
The above is the detailed content of How to solve the error of uploading pictures in PHPCMS?. For more information, please follow other related articles on the PHP Chinese website!