Upgraded to Virtuemart 3.0.10

If you are runnig Joomla 3.x and Virtuemart 3.x please post to this forum your questions or support tickets about One Page Checkout

Upgraded to Virtuemart 3.0.10

Postby info@.....nl » Sat Sep 19, 2015 10:46 am

Hi Forum,

I upgraded Virtuemart to 3.0.10. After I upgraded its seem that the order (bestellen) button not starting OPC 2.0.296.090915 anymore. I can see in the shopping basket that the order is placed.

Pls HELP...

Regards

Carel
info@.....nl
 
Posts: 8
Joined: Mon Jun 24, 2013 10:29 am
Location: Netherlands

Re: Upgraded to Virtuemart 3.0.10

Postby admin » Wed Sep 23, 2015 1:45 pm

hello carel, i checked your site and it had a session and cookie problems as it didn't share cookie (and session) for your http://domain.com and http://www.domain.com

i added a php code to your /defines.php at the root of joomla because htaccess rules didn't work:

http://stackoverflow.com/questions/7228 ... o-www-urls

(create /defines.php)
Code: Select all
<?php

$protocol = (@$_SERVER["HTTPS"] == "on") ? "https://" : "http://";

if (substr($_SERVER['HTTP_HOST'], 0, 4) !== 'www.') {
    header('Location: '.$protocol.'www.'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
    exit;
}



best regards, stan
admin
Site Admin
 
Posts: 2708
Joined: Wed Jan 06, 2010 11:43 pm


Return to One Page Checkout for Virtuemart 3 on Joomla 3.x