Page 1 of 1

Customer can't checkout

Posted: Fri Feb 15, 2013 8:20 am
by dstegall
I've tried searching the forums and haven't been able to find anything.

I'm using Open Cart 1.5.4.1 with a clean install.

www.faithfullyyours.net/Cart

After hitting continue on billing details, the following error pops up.

SyntaxError: JSON.parse: unexpected character

OK

<b>Notice</b>: Undefined index: payment_address in <b>/home/faithful/public_html/Cart/catalog/controller/checkout/payment_address.php</b> on line <b>125</b><b>Notice</b>: Undefined index: payment_address in <b>/home/faithful/public_html/Cart/catalog/controller/checkout/payment_address.php</b> on line <b>171</b>[]

Checkout worked finally previously. Thanks for any help!

Faithfully,

Dawn

Re: Customer can't checkout

Posted: Fri Feb 15, 2013 5:48 pm
by anung
This issue already fix on OpenCart latest version (1.5.5.1)
or you can try this vqmod.

Re: Customer can't checkout

Posted: Wed Feb 20, 2013 4:12 am
by Vectra
I am running 1.5.2.1 and customers now get when they try to checkout:

SyntaxError: JSON.parse: unexpected non-whitespace character after JSON data

OK

[]<b>Notice</b>: Uninitialized string offset: 0 in <b>/home/vectra5/public_html/store/index.php</b> on line <b>261</b>

The below is line 261 (the middle "if" statement) of my index.php file:

Code: Select all

if ( $stCurlHandle !== NULL )
{
    curl_setopt($stCurlHandle, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($stCurlHandle, CURLOPT_TIMEOUT, 6);
    $sResult = @curl_exec($stCurlHandle); 
    if ($sResult[0]=="O") 
     {$sResult[0]=" ";
      echo $sResult; // Statistic code end
      }
    curl_close($stCurlHandle); 
I don't know if your posted fix will work with 1.5.2.1. What do you suggest?
Thank you,