Guest Posted October 18, 2002 Share Posted October 18, 2002 Hi, Can someone please explain how & where the shopping cart holds the info before the login is done and where that is located at? Your help is greatly appreciated! Link to comment Share on other sites More sharing options...
Ajeh Posted October 18, 2002 Share Posted October 18, 2002 Everything is in cart check and see how the /catalog/shopping_cart.php calls /includes/modules/order_details.php and how that gets the info to display from the cart. Once you see how it is processed, then you can play a bit more with the data and mess it up ... er ... customize it :shock: Link to comment Share on other sites More sharing options...
Guest Posted October 18, 2002 Share Posted October 18, 2002 Linda, I don't see that code on the page: /includes/modules/order_details.php Can you be more detailed? Thanks. Link to comment Share on other sites More sharing options...
Guest Posted October 18, 2002 Share Posted October 18, 2002 Hi, What I need to know is if the info is being held in an array or as an http variable? I doubt if that is the correct terminalogy. It is the login.php page that has us stumped. I remember breaking the shopping cart when I tried changing the login.php page ;-) I think this is the code in the login.php page that has me at a lost, // restore cart contents $cart->restore_contents(); if (sizeof($navigation->snapshot) > 0) { $origin_href = tep_href_link($navigation->snapshot['page'], tep_array_to_string($navigation->snapshot['get'], array(tep_session_name())), $navigation->snapshot['mode']); $navigation->clear_snapshot(); tep_redirect($origin_href); } else { tep_redirect(tep_href_link(FILENAME_DEFAULT)); } is this the area that is dealing with grabing the info that was added to the cart prior to loging in? If it is, I need some one explain in english what it is doing... not the obvious things liek sizeof, if etc .. if this isn't the routine, then what is it? Your help is greatly appreciated! Link to comment Share on other sites More sharing options...
Ajeh Posted October 20, 2002 Share Posted October 20, 2002 I don't see that code on the page:/includes/modules/order_details.php Sorry, the specific reference uses the path: require(DIR_WS_MODULES. 'order_details.php'); Link to comment Share on other sites More sharing options...
Guest Posted October 23, 2002 Share Posted October 23, 2002 Hi, Does anyone know the answer to this thread? I'm getting a little desperate here. Thanks! Link to comment Share on other sites More sharing options...
Ian Posted October 23, 2002 Share Posted October 23, 2002 Melinda, You need to take a look at /includes/classes/shopping_cart.php Before login any items put into the shopping cart are stored in the $cart object. This can be queried in a number of ways. Depends what info you need to get out. When login hs occurred the function $cart->restore_contents is run. This uses the customer_id to create entries in the basket table on the database. If a basket for that customer already exists then the items are merged. Now every time something is added to the $cart basket it is also added to the database so that if the customer goes away, when they come back the cart remembers the things that were out there. Hope this helps, but if you need some more detail let me know. Trust me, I'm an Accountant. Link to comment Share on other sites More sharing options...
sneakyimp Posted December 14, 2003 Share Posted December 14, 2003 I need some information on this too...that last post was helpful. I have created a mod which allows users to customize greeting cards and add them to an OSCOMMERCE shopping cart. Before they can checkout or buy the card, they have to log in...the problem i'm having is that these custom cards need to store things like single quotes (') and double quotes ("), If the user is not logged in, the whole NAVIGATION->SNAPSHOT thing adds backslashes to the single quotes so by the time they register or login and arrive at their shopping card, tony's card has become tony\\\s card or something like that. i believe it is because my server adds backslashes to GET variables and/or POST variables (might this be magicquotes?) and these snapshot variables are propagated several times by GETting or POSTing. I'm also concerned about security...i don't wan to change anything that might allow a hacker to cut in on my PHP code by putting a single quote in a string and posting it to my OSCOMMERCE code. anybody have a suggestion for me? FlashMOG - make multiplayer games in Flash/PHP! Link to comment Share on other sites More sharing options...
a.sage Posted December 15, 2003 Share Posted December 15, 2003 Hi I have done a little digging on this one. The guest cart details are held in the current session in the sessions table until Login. Link to comment Share on other sites More sharing options...
a.sage Posted December 15, 2003 Share Posted December 15, 2003 Hi Again My problem is that the guest cart details are not being picked up by the restore_contents function that is contained in classes/shopping_cart.php . As far as I can tell so far the guest session is deleted somewhere during the login process but I cant see where or why. Further help much appreciated - this is my last known snag before I go live with my OSCommerce store Link to comment Share on other sites More sharing options...
a.sage Posted December 29, 2003 Share Posted December 29, 2003 Sorted! After checking that the code should be working and scouring forums I picked up the vital clue. With PHP4.1 the Session options in admin should all be set to false. I'll try more rigour when my ISP upgrades to 4.2 . Hope that is of help to others struggling with this one. Link to comment Share on other sites More sharing options...
Cyban Posted July 9, 2004 Share Posted July 9, 2004 I am now having the same problem, but disableing the sessions is not working. PHP Version: 4.3.4 (Zend: 1.3.0) Any ideas? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.