I have PHP script that writes few variables into a cookie. It suddenly stopped working without changes made from my side. Hosting company claimed there were no changes on their side, but when I run php info, I see the build date and time to be exactly when it stopped working.
The PHP version is 5.2.17
The php info shows the right path to my php.ini file.
Here are the setting for error reporting:
# supress php errors
display_startup_errors = off
display_errors = off
html_errors = off
docref_root = 0
docref_ext = 0
# php error logging
log_errors = on
error_reporting = 6135
error_log = /mypath/phperror.txt
# disable repeated error logging
ignore_repeated_errors = on
ignore_repeated_source = on
I'm waiting for support to get back to me now. In a meantime, what could I do to drill into this further?
Thanks