Check-out button pops-up empty tab in Firefox and IE

Questions related to the configuration of Joomla, Templates, and Security related questions/issues
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Mon Jun 03, 2013 2:58 pm
Hello,

I'm facing the issue that when users click on the 'CHECK OUT' button after visiting their shopping carts a new tab pops up with an empty page (no errors).

Template: Yourshop template
Joomla: Version 2.5
Virtuemart: Version VM2.02.0b

Please can somebody advise how to resolve the issue?
thank you in advance
User avatar
Junior Boarder

teitbite
Mon Jun 03, 2013 6:02 pm
Hi

Please set the error level in joomla global configuration to ALL and tell me the exact url to the page with problem.
User avatar
Moderator

GK User
Tue Jun 04, 2013 10:06 am
Hi, do you mean Site/Global Config/Server/Error Reporting/Maximum ??

I set it to Maximum but with the Error Reporting set to Maximum the Checkout Works!


Would you like to send you the Site's link in Private message? then you can try to checkout . The problem occurs before making any payment anyway :)
User avatar
Junior Boarder

GK User
Tue Jun 04, 2013 6:42 pm
Update: it appears that the problem is with Javascript. When I enabled the Error Reporting the Javascript must have gotten disabled.

This problem occurs with IE and Firefox. It works fine with Chrome.

Please anyone who knows how to fix it please advise .

Virtuemart forums say that Gavick templates sometimes have this issue but no solution was given there.
User avatar
Junior Boarder

teitbite
Tue Jun 04, 2013 10:59 pm
Hi

Please send me an access to joomla panel.
User avatar
Moderator

GK User
Wed Jun 05, 2013 6:48 am
Hi,

Sent via PM

thx
User avatar
Junior Boarder

teitbite
Wed Jun 05, 2013 10:29 pm
Hi

Looks like it can be a validation error with unclosed html tag. Please change the name of the folder /html/com_virtuemart to /html/_com_virtuemart and check if problem is still there. What I advice should disable the layout which comes with template and use vm default one so it will give a hint where the problem is.
User avatar
Moderator

GK User
Thu Jun 06, 2013 7:32 am
Hello, thanks for your help.

That didn't resolve the issue however I discovered what went wrong. A module with a 'sliding effect' was conflicting. Disabling that module made the checkout process work again.

thx again for your efforts

G
User avatar
Junior Boarder

GK User
Thu Jun 06, 2013 8:02 am
..I spoke too soon.

The problem is still there, I dont know why it allowed me to go past the checkout page only once using IE but the problem is still there.

Changing the VM template did not resolve the issue.
Renaming the html/com_virtuemart folder did not give any results
I disabled all modules one by one and there is no module conflicting

Any other thoughts?
User avatar
Junior Boarder

teitbite
Thu Jun 06, 2013 6:53 pm
Hi

If it's not module or template style than it has to be VM issue. Please send me an access to ftp I'll take a look.
User avatar
Moderator

GK User
Fri Jun 07, 2013 5:44 am
Hi, sent via PM

Many thanks - appreciated
G
User avatar
Junior Boarder

teitbite
Sat Jun 08, 2013 4:21 pm
Hi

It's for sure a validation error. I've found multiple issues with unclosed <span> and <td>, but still some are hiding and I cannot get to them. So I've used a workaround by adding this script which removes oppening new page with button hit.

Code: Select all
   <script type="text/javascript">
   (function($) {
   $(document).ready(function() {
      $('a.vm-button-correct').hover(function() {
         $(this).attr('target','');
      });
   });
   })(jQuery)
   </script>
User avatar
Moderator

GK User
Sun Jun 09, 2013 3:24 pm
Many thanks for this solution.

Greatly appreciated :)

G
User avatar
Junior Boarder

teitbite
Mon Jun 10, 2013 10:58 pm
Hi

No problem. Unfortunately this is not a solution. It's just a trick to workaround the issue, but I'm glad it helped.
User avatar
Moderator


cron