Home > CMS Tutorial > PHPCMS > body text

What should I do if pictures cannot be uploaded in the phpcms background?

藏色散人
Release: 2020-07-18 11:11:02
Original
2500 people have browsed it

The solution to the problem that phpcms cannot upload images in the background: first find and open the "attachment.class.php" file; then replace "if(empty($this->userid)){" with "if( empty($_POST['userid'])){" is enough.

What should I do if pictures cannot be uploaded in the phpcms background?

##phpcmsSolution to the problem of unable to upload images in the background

PHPCMS V9 has a code inference error in the latest updated version number (9.4.2). A bug that caused PHPCMS to be unable to upload images when updating articles in the background. I found a temporary solution in the PHPCMS forum. I hope that the PHPCMS official can announce the update package as soon as possible, so that many other webmasters can save trouble and effort.

What should I do if pictures cannot be uploaded in the phpcms background?

Students who encountered the prompt in the picture above! Here is a temporary fix for you.

Method 1: File path:/phpcms/libs/classes/attachment.class.php

What should I do if pictures cannot be uploaded in the phpcms background?

Method 2: File path:/phpcms/libs/ classes/attachment.class.php

Replace

if(empty($this->userid)){
Copy after login

with

if(empty($_POST['userid'])){
Copy after login

The above is the detailed content of What should I do if pictures cannot be uploaded in the phpcms background?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template