• Welcome to KonaKart Community Forum. Please login or sign up.
 

Stuck in SSL after Checkout

Started by nickgk, April 05, 2011, 10:35:12 pm

Previous topic - Next topic

nickgk

I've modified the onepagecheckout and I achieved all that I set out to do. Except that the customer is locked SSL if they continue to browse the site after the last checkout page. This causes many of the product listing pages to crash (return a white screen in the middle pane).

My last redirect from the onepagecheckout is:

redirect("CatalogCheckoutFinishedPage.do?ordernumber=" + result);

where 'result' is the order number for the customers benefit.

Right before the callback to the onepagecheckout I empty the basket and set the custId to -1 in the hopes this would cause the checkSSL method to do the right thing.
In KKGWTServiceImpl:
                 

                    //Thought this might do the trick
                    appEng.getCustomerMgr().getCurrentCustomer().setId(-1);
                               
                    // If we received no exceptions, delete the basket
                    appEng.getBasketMgr().emptyBasket();


Any Ideas or suggestions?

trevor

If the customer remains logged in, then it is correct that the communication is SSL. You must log the customer out to revert to a non encrypted connection.