Suggestion: Change includes/functions/functions_lookups.php zen_run_normal() from
case (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])):
to
case (!empty(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE) && strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])):
Prevents log:
[31-Mar-2015 09:01:33 America/Los_Angeles] PHP Warning: strstr(): Empty delimiter in /home/customer/public_html/includes/functions/functions_lookups.php on line 715


Reply With Quote
