Solution to the problem that phpcms cannot upload videos: First find and open the "php.ini" file; then modify the content to "upload_max_filesize = 10M"; finally add a line of code to the upload program as "@set_time_limit(5 * 60);".
##phpcmsUnable to upload video
Approximately There are several reasons:
1. If other files are uploaded normally, it may be that the file size exceeds the maximum upload limit configured by PHP. Modify php.iniupload_max_filesize = 10M
@set_time_limit(5 * 60);
The above is the detailed content of What to do if phpcms cannot upload videos. For more information, please follow other related articles on the PHP Chinese website!