Home >CMS Tutorial >Empire CMS >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= 时间
Then restart the service, or write in the program
set_time_limit(时间); //0为无限制
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
Method 2: Add a line to the top PHP Script
ini_set("memory_limit","12M");
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!