Sensei
- Join Date:
- Jan 2004
- Posts:
- 63,513
- Plugin Contributions:
- 177
Moved Site - Compatibility Issues?
janellez:
[01-Aug-2011 09:08:10] PHP Warning: array_merge() [<a href='function.array-merge'>function.array-merge</a>]: Argument #1 is not an array in /home/xyz/public_html/fakeadmin/customers.php on line 1099That's appearing because when the store is attempting to look up the country associated with the selected customer's address, it's not finding a valid entry. That could be a result of the country being missing from your database's countries table, or the customer's address_book entry doesn't exist or has a country number associated with it that doesn't match a country in your countries table.
That sort of thing commonly happens when people do incomplete imports of database tables (typically when taking shortcuts to guess at what info comprises customer data and guessing incorrectly, and ending up missing tables.). Maybe for you your import of data for your customers was incomplete ... ie your database import between servers didn't happen properly.
janellez:[01-Aug-2011 09:08:10] PHP Warning: array_merge() [<a href='function.array-merge'>function.array-merge</a>]: Argument #2 is not an array in /home/xyz/public_html/fakeadmin/customers.php on line 1101
[01-Aug-2011 09:08:10] PHP Warning: reset() [<a href='function.reset'>function.reset</a>]: Passed variable is not an array or object in /home/xyz/public_html/fakeadmin/includes/classes/object_info.php on line 29
[01-Aug-2011 09:08:10] PHP Warning: Variable passed to each() is not an array or object in /home/xyz/public_html/fakeadmin/includes/classes/object_info.php on line 30all of those are consequences of the prior error.
janellez:
[01-Aug-2011 07:45:38] PHP Warning: Invalid argument supplied for foreach() in /home/xyz/public_html/includes/modules/shipping/usps.php on line 278
After the upgrade I was having trouble with international shipping so I installed the module USPS Shipping Module Update - RateV4 - IntlRateV2.That's a shipping issue only.
I can't see how that would be related to customer information missing.