Scroll to the bottom of this page and check the Related Threads for possible help.
Scroll to the bottom of this page and check the Related Threads for possible help.
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
Kim's right. The issue is discussed in a few other related threads.
You've imported customer data but haven't done it thoroughly, and you've left data out of sync.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Snap!
I get the exact same error message.
I am no expert at Zen at all, but (there is always a but) it apperas to me that when someone pays via PayPal Express Checkout and have not created an account within Zen (not logged in or anything) then a few fields are not being populated that are 'required' fields. I have noticed that DofB, Telephone Number are 2 that do not get imported.
I have been chatting my DrByte about this so hopefully we will get to the botto of this soon.
Cheers
Jamie @ Fuzion
www.InkFuzion.co.uk
www.FunFuzion.co.uk - now live (with a few bugs, but getting there!)
Sorry, me again.
Has anyone any ideas on this, we are losing orders everyday as people are not being able to complete the whole checkout process properly.
Any pointers or ideas would be apprecaited.
Ta
J
Jamie @ Fuzion
www.InkFuzion.co.uk
www.FunFuzion.co.uk - now live (with a few bugs, but getting there!)
I am getting the same error when I try to view my customers. Additionally, the information does not show up on their orders, only a name, phone number and email address. I cannot find a clear cut way to fix this. This appears to only be happening to my Canada customers. Any ideas?!
This is what fixed the problem for me:
I changed the following line in the customers.php file:
$customer_info = array_merge($country->fields, $info->fields, $reviews->fields);
$cInfo_array = array_merge($customers->fields, $customer_info);
to:
$customer_info = array_merge((array)$country->fields, (array)$info->fields, (array)$reviews->fields);
$cInfo_array = array_merge((array)$customers->fields, (array)$customer_info);
$cInfo = new objectInfo($cInfo_array);
Hope it helps someone else.
That puts a bandage on it and completely hides the fact that you have a data problem. But if all you want to do is turn a blind eye, that works.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.