You should not be editing your files in DreamWeaver. this will cause php code to break.
http://www.zen-cart.com/wiki/index.p...d_Text_Editors
You should not be editing your files in DreamWeaver. this will cause php code to break.
http://www.zen-cart.com/wiki/index.p...d_Text_Editors
Thanks - have got that now and double checked - problem line 404 is def
$found_exact_iso_match_shipping = ($zone->RecordCount() == 1);
I ahev 8 matches showing up from developers kit search and no idea which one to change - am scared to even try as I have no idea what i'm changing as looks like a mass of symbols and numbers and makes no sense to me at all
Last edited by PudzPud; 18 Nov 2011 at 08:08 PM. Reason: changed text
Are you sure which one you want to check?
You are using:
Should you be using:Code:$found_exact_iso_match_shipping = ($zone->RecordCount() == 1);
Code:$found_exact_iso_match_shipping = ($zone_shipping->RecordCount() == 1);
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
I use Advanced Shipping module which was installed for me back in Feb and has worked fine all this time until today. The shipping part still works fine for existing customers and I can create orders no problem - the only issue is when someone is trying to create a new account they get a blank page instead of the 'congratulations you have created an account' page. I am still unsure why a line about shipping would be causing this problem but the debug check showed this was the php page and line with the error.
If you think this is the solution let me know and I will change the text
FROM - $found_exact_iso_match_shipping = ($zone->RecordCount() == 1);
TO - $found_exact_iso_match_shipping = ($zone_shipping->RecordCount() == 1);
( i just want to double check with you first as I am afraid in case it messes up my shipping module)
I tried it and it works!!!
Ajeh you are a star and I could kiss you right now (even though we both female lol). I was near in tears as I know nothing about php and could not solve this - thanks
One last thing - do you know why this would work since installation in Feb and then suddenly stop today? Does it mean someone has been changing things on my server or do odd things like this just happen from time to time?
I do not use that Add On ...
I am not for sure what select statement you are really needing to check but saw that was the closest select statement made so I thought maybe you were just using the wrong name for your test ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!