close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

confirm page not adding new order, updating existing order

Thread began 5/13/2010 6:25 am by paul307749 | Last modified 5/13/2010 4:40 pm by Eric Mittman | 827 views | 1 replies |

paul307749

confirm page not adding new order, updating existing order

Hi,

I'm using eCart 5.0.1 on CS4, Win 7 64bit.

PHP based web site.

I've come across an issue when making additional orders on a site I'm working on.

If I place an order, everything works correctly and a new order is added to the database. However, if I then make another order, instead of adding a new entry in the database, it simply updates the existing entry with any alterations I may have made to the order.

I've narrowed this down to the confirm.php page. It appears that a new entry isn't being added, even though the fields used for OrderID in both the Store Summary and Store Details SB's having no value associated with their entries in the database to be calling incorrect OrderID's.

At the moment, I'm completely baffled as to why new entries are not being added, and I can only put it down to a session value being used somewhere within the process to store a value for the OrderID.

Any help on this would be MUCH appreciated.

Regards

Paul C

Sign in to reply to this post

Eric Mittman

Your suspicions are correct, I believe you are experiencing an issue with the session id being reused on your subsequent orders.

The fix for this would be to either clear the session completely, or you can regenerate a new session id. Both of these should force a new session id to be created and this is usually the unique identifier for the order. There is also the Order ID session variable that is set the first time through the order. You might want to unset this value as well. You can do all this with some code like this on your checkout success or failure page:

php:
<?php

if(!session_id())session_start();
session_regenerate_id();
unset(
$_SESSION['OrderID']);
?>



You should add this to the bottom of the page so it is the last code that runs. Let us know if you continue to have any problems with this.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...