Going through as either a guest, or logged in, the checkout process gets to "Delivery Method" ok. I select the delivery option I want and then click continue but it won't move on. It does the little "thinking" circle but doesn't slide down to "Payment Method".
In developer tools in IE it says:
Could not complete the operation due to error 80020101
jquery-1.6.1.min.js, line 16 character 11799 (or sometimes character 11814)
So is there something wrong with the jquery file? Or could it be conflicting with another script? As I'm also getting this error in developer tools:
Syntax error
checkout line 27 character 4
Which relates to:
</script>
This is the end script tag for anylinkmenu, but I did remove all of this script and still had the same problem.
Checkout works fine in Firefox and Safari.
Thanks.
I heart cmd-f, cmd-c, cmd-v, cmd-z + vQmod.
My favourite page...
v1.5.4.1
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Firefox 9 on PC also works fine.
It just seems to be with IE.
I heart cmd-f, cmd-c, cmd-v, cmd-z + vQmod.
My favourite page...
v1.5.4.1
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
and downgrading to jquery 1.5.1 does fix the problem, but as they mention in that post: does this introduce any security risks?
I tried upgrading to jquery 1.7.1 but it still had the same problem.
Are there any problems if I downgrade the jquery to 1.5.1?
I heart cmd-f, cmd-c, cmd-v, cmd-z + vQmod.
My favourite page...
v1.5.4.1
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
I heart cmd-f, cmd-c, cmd-v, cmd-z + vQmod.
My favourite page...
v1.5.4.1
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Seems it chokes on
The first one points to this code:SCRIPT1002: Syntax error
checkout, line 27 character 4
SCRIPT257: Could not complete the operation due to error 80020101.
jquery-1.6.1.min.js, line 16 character 11814
Code: Select all
<script language="javascript" type="text/javascript">
//<![CDATA[
var cot_loc0=(window.location.protocol == "https:")? "https://secure.comodo.net/trustlogo/javascript/cot.js" :
"http://www.trustlogo.com/trustlogo/javascript/cot.js";
document.writeln('<scr' + 'ipt language="JavaScript" src="'+cot_loc0+'" type="text\/javascript">' + '<\/scr' + 'ipt>');
//]]>
</script>
More technically... it has long been deprecated and should be removed completely
Try removing that language="javascript" part from your header.tpl file and see if that helps.
For the second one, debugging shows that you have a mod for "Checkout Question" causing the error with loading step 5 on IE. It isn't a jquery issue.. just a jquery function call. Here is the data causing the error:
Code: Select all
/*<!--*/
function setResponse() {
if($('#other:selected').length) {
$('#othertext').show();
} else {
$('#othertext').hide();
}
$.post(
"index.php?route=total/checkout_question/setResponse",
{checkout_question: $('#checkout_question').val()}
);
}
setResponse();
$(document).ready(function(){
$('div.right a.button').click(function(){
if ($.trim($('#checkout_question').val()) == '') {
$('.warning').remove();
$('.cart-info').prepend('<div class="warning" style="display: none;">Please let us know how you heard about us</div>');
$('.checkout-content').prepend('<div class="warning" style="display: none;">Please let us know how you heard about us</div>');
$('.warning').fadeIn('slow');
return false;
}
});
});
-->
You are also not running the checkout.tpl patch which would also probably help with this:
http://forum.opencart.com/viewtopic.php?f=133&t=45863

I'll wait to hear back from Johnathan regarding wether or not it's a typo with thos <!-- --> in checkout_question.tpl, but removing them now lets checkout finish.
Have changed the comodo script, which they still have listed as the official script on their site. Have also updated checkout.tpl
Thanks a million!
I heart cmd-f, cmd-c, cmd-v, cmd-z + vQmod.
My favourite page...
v1.5.4.1
Users browsing this forum: No registered users and 39 guests