Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

rayge

Pioneers
  • Posts

    79
  • Joined

  • Last visited

Everything posted by rayge

  1. Im having trouble with the forgot password process. after entering my email in the front end it says Please check your e-mail for instructions on how to change your password. The instructions contain a link that is valid only for 24 hours or until your password has been updated. but the email uses the define below define('EMAIL_PASSWORD_REMINDER_BODY', 'A new password was requested from ' . $REMOTE_ADDR . '.' . "\n\n" . 'Your new password to \'' . STORE_NAME . '\' is:' . "\n\n" . ' %s' . "\n\n"); so there is not only no link to reset it. it isnt sending a new password. $new_password isn't even defined there. thanks for any help!
  2. NM i found and solved the issue :)
  3. I am having an issue where when i try and send email using the system in any way i get a blank page but the email gets sent. it is dying right on the tep_mm_sendmail function but i cant see WHY. i dont see an error long and again i just get a blank page. any ideas? thanks!
  4. Im testing out 1.852 and noticed that you left the query for p_mode in the shipping rate tables on line 764 of separate_rate.php. Just so you know.
  5. Can I use this in conjunction with other shipping methods? For example: certain products would ship using a specific method and would have its OWN separate shipping and shipping cost. but otherwise anything else would ship VIA UPS.
  6. I was thinking the same thing but just to be sure i created a test script to see for sure. In the END it actually created more questions than answers. let me know your thoughts. running the curl test from my local server to UPS. it WORKS. I got returned data. Running the exact same code on the server with the issue. INTERNAL SERVER ERROR OK this absolutely looks like a server configuration issue right? NEXT i tried changing the URL for the curl script to my dev server coding the php script to receive the XML and just spit it back to the sender. Using this new URL on the affected server.. IT WORKS!? No ERROR and it is showing the XML on the screen returned from the remote script. THIS is where I really lost it as i EXPECTED to see the same error. What are your thoughts? thanks!
  7. I'm loosing my mind trying to figure out what is wrong. I hope someone can help? when the UPS module is enabled i get error 500 Internal Server Error hitting checkout_shipping.php After some hours of tracking it down i have come to see that it is related to /includes/modules/shipping/upsxmp.php line 704 $xmlResponse = curl_exec ($ch); this is where i get the internal server error. checking phpinfo.php it shows cURL support is enabled and since it errors RIGHT on this function i cant get a real log of what is wrong. and the server error log shows nothing :( Anyone have some Insight? I would appreciate ANY HELP on this!
  8. Actually its getting redirected because it is defaulting to the detected payment method.. even if i set an item to $0 and have it skip shipping AND payment pages Then comment out the code on the confirm page that redirects them to the payment page related to payment validation, it still shows the authorize.net as the payment method.. therefore it still trys to process through authorize.net Any other ideas?
  9. When i simply tested it without the checkform JS it still comes back to the payment page.. Im assuming its checking the CC in some fashon on the COnfirm page.
  10. then I would need a coupon PAGE all in itself. say before the shipping page.. Then I need to get the total amount before the next page is displayed. For some reason im not getting it passed.. It looks like the way it works right now is that you are Posting from the payment page to the confirm page with the coupon code.
  11. kgt - What is considered a virtual Product? The client i am doing this for is useing the cart for Online based learning products. Thanks
  12. I moved the code from the payment page to the shipping page then used the code from the following contrib on hte payment page. http://www.oscommerce.com/community/contri...h,skip+checkout Looks like it will do the trick. I will keep you all posted.
  13. OK heres a theory on how i might get around it but may still need some help on it. IF i can move the coupon entry piece to the delivery page OR make it its own step in the checkout process. then if the total amount = 0 then i could make it SKIP the paypamt page alltogether which would solve my problem. this could also be a perm. addition to the contrib for later users because, you never know what people need. THanks for any help.
  14. I have a customer that in some instances the coupon code will make the checkout amount $0 This is expected and wanted behavior. The problem is a couple of things. When the user puts in the coupon code the will end up with a $0 amount they still have to enter a CC# (thats not the BIG issue) THen when the user clicks to complete the process it comes back with a CC error. Im not sure what do to to handle this. I really need some help on this one. :(
  15. OK i fixed it. I had to replace the line if (isset($HTTP_GET_VARS['payment_error']) && is_object(${$HTTP_GET_VARS['payment_error']}) && ($error = ${$HTTP_GET_VARS['payment_error']}->get_error())) { with if (isset($_GET['error_message'])) {
  16. When testing the checkout with the intention of the CC being declined, the process DOES take me back to the payment page but there is no related error. WHat can i do to get a related error to be displayed on the payment page when this occurs?
  17. Hi im using OSC affiliate and what i need to do is make it so each product related to a Manufacture would give its OWN percentage. I know it might sound weird but this is what the client wants. Any ideas on how i could modify the contrib to handle this sort of a thing? Thanks
  18. NO you dont understand.. THat HTML you see was the OLD SITE ... we arent gonna re create that for them. I need to make that layout display work in the CART ITSELF. Meaning that in the product listings i need to modify that php file to display the items in the format shown in the html page. I see no reason to redo 100 html items when all the item data is redily available in the cart already but just not displaying in the product listings. BASICALLY im needing to pull items from the product info and show it on the product listings page.
  19. Okay im listening... what code do i need to move/modify to the product listings page
  20. Obviously its html im talking about the layout.. argh Heres the live shop http://www.lgmotorsports.com/shop/
  21. Ok i have an issue where i think im gonna have to modify a few pages quite a bit. I need to display the master HTML description as well as the slave items in the place where the listings are. They want the product listing to look similar to this http://dev3.bydomino.com/clients/lgmold/ht...body_Brakes.htm :blink: Any help would be greatly appreciated.. If the OSC core coding wasnt such a mess I probably wouldnt had so much trouble figuring these things out. :'(
  22. Okay the Query I see is approx on line 520: $products_master_query = tep_db_query("select p.products_id, pd.products_name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_master_status = '1' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' order by pd.products_name"); And im making the assumption that the second half of cpath is the category id? I would think that they already have those 2 items seperate into seperate variables so if so Please lemme know Otherwise i'll just use the following code to get teh cat id $cpathparts = explode("_",$HTTP_GET_VARS['cPath']); if(count($cpathparts) > 1) { $currentcat = $cpathparts[1]; } else { $currentcat = $cpathparts[0]; } and use $currentcat as my var. here is my recoded query: $products_master_query = tep_db_query(" SELECT p.products_id, pd.products_name , ptoc.categories_id FROM " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd , products_to_categories ptoc WHERE p.products_master_status = '1' and p.products_id = pd.products_id AND pd.language_id = '" . (int)$languages_id . "' AND p.products_id = ptoc.products_id AND ptoc.categories_id = '".$currentcat."' ORDER BY pd.products_name"); Hope this helps..
  23. Yanno somthing else that would be nice is in the add product form in the admin, is to make the select master drop down only display the master items from that particular category. Im gonna see if i can get that figured out. Ify ou know how already Id appreciate ya posting it ;-) Thansk again for that Post matt That was a great help!
  24. THANKS MATT!! I have never tried to use such an order by clause before ;-) BUt now that ive seen it I will be trying to use it more often to save me from doing multiple queries to save me server load in my other apps Yay !!
  25. It looks to be a block approx between 1373 and 1432 so i have it narrowed down. I think its just the 2 queries along with this code that is confusing. otherwise i would have already done it ;-) thanks again for any help.
×
×
  • Create New...