News and articles
HTML caching in OpenCart online stores using the IMCache module

The IMCache module solves key caching tasks in OpenCart: it speeds up the store by saving HTML pages and automatically updates the cache when prices, promotions, or product stock change. This allows keeping data up to date without manual clearing and improves the site's performance metrics.

 
 
 
 
 
How to change the OpenCart admin URL - simply and safely

Do you want to remove the default /admin/ in OpenCart and reduce junk login attempts? We’ll explain in simple terms two ways to change the admin URL - renaming the folder or using a “virtual” URL via rewrite, with ready-made rules for Apache and Nginx.

 
 
 
 
 
Best-selling templates and extensions in July 2025

Best-selling templates and extensions in July 2025: Microdata, ChatGPT, Server Video, Mango template

 
 
 
 
 
A selection of new modules for OpenCart in July 2025

New in July 2025: Remember Me, Quick Social Login, Smart Recommendations

 
 
 
 
 

Enabling the display of php errors in Opencart

 
Enabling the display of php errors in Opencart

Often when encountering problems in Opencart, users face error 500, Internal Service Error, or simply a "white screen" (empty browser screen), which makes it difficult to determine the cause of the problem. To obtain more detailed information about the errors that have occurred, it is necessary to enable their display. There are several ways to activate the output of errors in Opencart:

php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag output_buffering off

2) The php.ini file (at the end):

display_errors = On;
error_reporting = ~E_ALL;

3) The index.php file (after <?php):

ini_set('error_reporting', E_ALL);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);

After completing the debugging process and resolving the issue, do not forget to comment out or delete the added lines. This is important to prevent potential vulnerabilities and improve the security of your Opencart store.

Short URL of the article: liveopencart.ru/500

 


Рекомендуем посмотреть
Рекомендуем прочитать
 
 


Yet, no one has left a comment to the entry.