Home > CMS Tutorial > Empire CMS > body text

What are the common English error messages in Imperial CMS?

王林
Release: 2019-11-06 17:48:25
Original
2188 people have browsed it

What are the common English error messages in Imperial CMS?

1. Login background error prompt: (This prompt is often encountered by novices during use)

Fatal error: Unable to read …. bytes …

Answer:

Please upload the file in binary format. Because this prompt means that the binary upload is not performed, delete the file on the server and upload it again.

2. Fatal error: Maximum execution time of …

Answer:

php runs timeout, go to the parameter setting Reduce the number of backups (refreshes) in each group, or change the value of max_execution_t= in the server's php.ini file.
If the folder data is relatively large, it is recommended that you download the backup data from ftp.

For the timeout setting, you need to modify php.ini:

max_execution_t= 时间
Copy after login

Then restart the service, or write in the program

set_time_limit(时间); //0为无限制
Copy after login

3. Fatal error: Allowed memory size of …. bytes exhausted (tried to allocate … bytes) in..

Answer:

Your server/space PHP settings problem

This is due to PHP’s limitation on Script memory space. The default setting is 8MB, and some previous scripts will require more than 8MB of memory space. Just increase the 8MB usage limit.

Increase the 8MB memory usage limit. There are two methods, choose one:

Method 1 (recommended): Modify the setting value of memory_limit in php.ini from 8M to 12M:

memory_limit = 12M
Copy after login

Method 2: Add a line to the top PHP Script

ini_set("memory_limit","12M");
Copy after login

Note: If the same error still occurs after expanding to 12M, increase the 12M limit.

4. Fatal error: Cannot redeclare printerror() (previously declared in …

answer

The reason for not copying the new version of the authorization file.

Recommended tutorial: Empire CMS Tutorial

The above is the detailed content of What are the common English error messages in Imperial CMS?. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!