Problem:
Setting of error_reporting value in your PHP.INI.
Solution:
Please make a request to your server administrator to edit your PHP.INI. Find the error_reporting attribute and update it to below code -
error_reporting = E_ALL & ~E_NOTICE
Reboot the web server. It should be fine then.
|