News and articles
A selection of new modules for Opencart for March 2026

New for March 2026: GigantFilter, Coupon on the product page, MAX notifications, OpenCart Anti-Virus.

 
 
 
 
 
Discounts on modules and templates in March

Current discounts on payment modules, uploads to Yandex, modules from Serbulenko and opencart-cms.ru, Unishop2 template and GigantFilter.

 
 
 
 
 
Top-selling templates and extensions in February 2026

Top-selling templates and extensions in February 2026: Komplekt-Expert, Telegram Notifications, IMDBOptimizer (OC 3) - Database Optimization, #FX Sitemap - Ultra-fast Sitemap, Lightshop template.

 
 
 
 
 
A selection of new modules for OpenCart for February 2026

New releases for February 2026: Quiz for OpenCart, Redirect & Loop Monitor, Admin Panel on the Website, Brand Collection.

 
 
 
 
 

Enabling the display of php errors in Opencart

A little help for beginners on enabling the display of PHP errors, it may help with a "white screen" :)
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

 


Recommended to view
Recommended to read


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