I'm running zenphoto 1.4.5.9. I have not been able to set error reporting via a new php.ini file as described in the forum due to my hosts parameters (I guess?). I cannot create a folder preceded by a period (as in .php).
I found the following in the zp-core folder: functions-basic.php lines 103, 104
'error_reporting(E_ALL | E_STRICT);
@ini_set('display_errors', 1);'
In doing some web search, I came across this suggestion
'ini_set('display_errors', 0);
ini_set('log_errors', 1);'
Can I replace the '@ini_set('display_errors', 1);' with the above two lines without causing problems and will it disable the php display errors [is enabled] setting?
Thanks!