Error_Log File No Working

hello,

i m facing many minor problems on my website, but the error_log file is not working, please help me out with this.

error_log file configuration can be done on the server side so please contact your server admin for assistance

however if PHP server config is set properly (allows to show errors to screen), it is enough to add the following lines in the end of the “config.local.php” file in root directory of CS-Cart:


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

define('DEVELOPMENT', true);


with this you may see errors in browser on page screen

[quote name='Damir (WSA-team)' timestamp='1427218913' post='208907']

error_log file configuration can be done on the server side so please contact your server admin for assistance

however if PHP server config is set properly (allows to show errors to screen), it is enough to add the following lines in the end of the “config.local.php” file in root directory of CS-Cart:


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

define('DEVELOPMENT', true);


with this you may see errors in browser on page screen

[/quote]

thanks a lot for the help…

you are welcome