close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Records being deleted in Order Details table

Thread began 6/01/2012 3:17 pm by rgolab68503 | Last modified 6/06/2012 7:57 am by rgolab68503 | 1552 views | 6 replies |

rgolab68503

Records being deleted in Order Details table

hi there, i thought my syste, was woking properly until i started looking at a order history page. What it is doing now is that the "orders" table in mysql is populating normally however the Orderdetails table is only recording the most recent order. It is actually deleting the previous order. Another big thing is that the OrderID column in the Orders table is supposed to match the DetailOrderID in the orderdetails table but they do not match. It is now actually writing them as "0" (number zero). I know this worked for a while.

Any ideas as to why it would stop recording to the orderdetails table?

I guess the orderdetails table is supposd to copy this number over or should i be creating a proper invoice number somehow?

I have attached my cart files to have a look but I have no idea why it would stop working.

Sign in to reply to this post

Christopher WestCommunity Expert

Hi there, you dont seem to have attached any files to your thread?

I may know why its only populating the most recent orders. (providing you are using the ecart "store cart details in database) this is actually in essence an update behaviour - so if the sessions on that particular order are still live then if you place another order they will be overwriting the previous order...to test this, do an order, then close ALL occurances of your browser (this will kill the sessions) then go back to website, place a second order...if you now see a second order being saved then you know its to do with the sessions...now to solve that issue all you would need to do is on your "order success page" just after the HTML tag just kill all sessions.

for your other issue would need to see your files.

Chris

Sign in to reply to this post

rgolab68503

Database not populating

Hi Chris,

Funny I did go through the upload process. I have attached all the base caart files now.

To address what you have said, the order system has been shut down several times and started up and is still overwriting. I went as far this time as to shut down my computer, reboot and place a new order. It simply over wrote what was there.

A little while back however using the forum i was having an issue that the cart was killing not only the store's session but also the login session as well. So somewhere with teh help of one of your programmers I was able to build some kill session and restore session code in the checkout success page.

<?php
// Initialize the session.
// If you are using session_name("something"), don't forget it now!
@session_start();

//store the user session
$MM_Username = $_SESSION['MM_Username'];
$pass_word = $_SESSION['pass_word'];
$user_name = $_SESSION['user_name'];

// Unset all of the session variables.
$_SESSION = array();

// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (ini_get("session.use_cookies")) {
$params = session_get_cookie_params();
@setcookie(session_name(), '', time() - 42000,
$params["path"], $params["domain"],
$params["secure"], $params["httponly"]
);
}

// Finally, destroy the session.
session_destroy();
unset($_SESSION);
session_start();
session_regenerate_id();


//reset user session
$_SESSION['MM_Username'] = $MM_Username;
$_SESSION['pass_word'] = $pass_word;
$_SESSION['user_name'] = $user_name;
?>

But I am sure this wouldn't the issue. I have also uploaded the structure of the mysql database if that helps look at that end.

Attached Files
cart.zip
Sign in to reply to this post

Jason ByrnesWebAssist

I dont see a problem in the code.

I have created a support ticket so we can look into this issue further.

To view and edit your support ticket, please log into your support history:
supporthistory.php

If anyone else is experiencing this same issue, please append to this thread.

Sign in to reply to this post

rgolab68503

Items being deleted in table

Hi Jason,

As I await your call I have been doing some reviewing and here is where I am at now. I cleared the tables and and reviewed the cart. What is happening now is that the orders are being populated (See Orders_tanle.JPG) and assigned an order ID number. however it looks like the OrderID is simply not being posted to the orderDetails table in the DetailOrderID column (see orderdetails_Table.JPG. Hope this helps get closer to an answer.

Sign in to reply to this post

Jason ByrnesWebAssist

on the confirm page, look for the following line:

php:
$_SESSION[$WA_sessionName] = mysql_insert_id();




and change it to:

php:
$_SESSION[$WA_sessionName] = mysql_insert_id($WA_connection);




it may be in a couple of places.

Sign in to reply to this post

rgolab68503

Items being deleted in table

It seeems to be working now. I will test it a few more times but I think that is it.

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...