Although I'm not sure if these two problems are related, if they are, you've just saved me a lot of debugging :)
You could try this (Found via google):
In your php.ini change
error_reporting = E_ALL
to error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT If you don't have access to the php.ini, you can potentially put this in your .htaccess file:
php_value error_reporting 30711 This is the E_ALL value (32767) and the removing the E_STRICT (2048) and E_NOTICE (8) values.
If you don't have access to the .htaccess file or it's not enabled, you'll probably need to put this at the top of the PHP section of any script that gets loaded from a browser call:
error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE); ----------------------------------------------
All being well this should take care of the PHP warnings, and if it takes care of the "Problem only for guests" issue with Ozpost (Which I also assume only affects guests trying to obtain overseas quotes) then that will be icing on the cake.
Feedback will be greatly appreciated.
Cheers
Rod



Reply With Quote
