Quote Originally Posted by vandiermen View Post
We have same problem after upgrading to server with php 5.4.20. we also use OzPost.
Problem only for guests, no problem after logging in or in checkout.
Code:
[11-Oct-2013 01:55:25 Australia/Sydney] PHP Warning:  Creating default object from empty value in /home/bubsgr/public_html/includes/modules/shipping_estimator.php on line 92
i don't think I can role back PHP on this server, and moving server is not be best option
We also get a warning with latest Fast and Easy checkout which should be for a different post
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