-
Content count
68 -
Joined
-
Last visited
Profile Information
-
Real Name
Sam Ruiz
-
Location
San Diego, California
- Website
-
Hello and thanks for the great work that went into this contrib. My problemo is that I have add-weight-to-product-attributes v0.2 and so the prices on my reports are all $0.00. Is there a way to tie my weights with price table to the cart report so I can see the actual totals? www.theteabazaar.com Thanks! Sam
-
Found it. Seems like there's a bug in the USPS xml api. Here's the fix for anyone esle. http://www.oscommerce.com/community/bugs,963
-
Don't know how this is happening but my rates seem to be mixed up. My priority seems to have a parcel rate, and vice-a-versa. Please select a few items and check out the "estimate shipping cost" link in your cart to see example. Please Help with any sugestions. =) Thanks, Sam Tea Bazaar
-
I believe it's the "amp;" that is somehow concatenated to the "&" after "?" It seems that it doesn't get parsed when you post to Oscommerce but if you check your browser address bar you will see it. I fixed it by a simple str_replace in the tep_redirect() function in general.php. Let me know if it helps. http://forums.oscommerce.com/index.php?showtopic=193181 Sam
-
I've been searching for a contrib that allows you to initiate a chat with users via the who's online tool in the admin CP. I'd like to use this feature since I see a lot of carts that are left behind. Anybody know of something like this? Thank you, Sam
-
Make sure the proper files are listed in the language/english/... directories this is where you find files with the define(MODULE_PAYMENT_SECPAY_TEXT_TITLE, "whatever this is supposed to say");
-
Credit Class/Gift Vouchers/Discount Coupons 5.10
smurk75 replied to Strider's topic in General Add-Ons Support
I need this fix as well. They enter code and get the message in checkout_payment.php(albeit in the error box) that the dedcution has successfully been processed. Problem is that they have to input their credit card information again. What gives? Shouldn't the redeem box be a stand alone module with no submit button? -
Got it to work!!! I narrowed the problem down to the tep_redirect function. All I could think of is to use the php str_replace() function in the url variable to replace "&" with just "&" so that the Get_Error function could read it in checkout_payment.php. Below is the code. I know this will help a lot of people out there. I've checked over my site and it doesn't seem to interfere with anything else, so if you see this as a possible problem please let me know. Enjoy. Sam // Redirect to another page or site function tep_redirect($url) { if ( (strstr($url, "\n") != false) || (strstr($url, "\r") != false) ) { tep_redirect(tep_href_link(FILENAME_DEFAULT, '', 'NONSSL', false)); } if ( (ENABLE_SSL == true) && (getenv('HTTPS') == 'on') ) { // We are loading an SSL page if (substr($url, 0, strlen(HTTP_SERVER)) == HTTP_SERVER) { // NONSSL url $url = HTTPS_SERVER . substr($url, strlen(HTTP_SERVER)); // Change it to SSL } } header('Location: ' .str_replace("&","&",$url)); tep_exit(); }
-
There's got to be a str_replace() function that can be used to capture the url before it is sent to the get_error payment function. Any help on this would greatly be appreciated. Thanks, Sam
-
Ok, found out why errors not displaying. If you look at the url response below you will se that instead of only being an"&" after payment_error=authorizenet there is "&" which is throwing off the which is not allowing for the variable to be parsed since the code is looking for a literal "&". I removed the "amp;" in the url manualy and the error displayed like it should!! =) Now, were and how do I get the url to not have "amp;" as the separator? "https://www.theteabazaar.com/store/checkout_payment.php?payment_error=authorizenet&error=The+first+four+digits+of+the+number+entered+are%3A+2312.+If+that+number+is+correct%2C+we+do+not+accept+that+type+of+credit+card.+If+it+is+wrong%2C+please+try+again......" Ok, now how do we fix this? Soooo many posts on how to get this fixed, just need this last part and it'll work! =)
-
Hmm. In either case the module in authorizenet.php should be able to parse the error...right? What settings do you have on your authorize.net direct response? I wonder if maybe that area should be set to something else. Thanks for your response. Sam
-
Ok, old questions, still no answers. PLEASE HELP!! I have Authorize.net Consolidated v1.7b installed and evertang works fine when card is real and 'good'. However, if I put bogus numbers in cc field I get Empty red box with "Credit Card Error!" on top. The error message is in url ".../checkout_payment.php?payment_error=authorizenet&error=The+first+four+digits+of+the+number+entered+are%3A+5464%3Cbr%3EIf+that+number+is+correct%2C+we+do+not+accept+that+type+of+credit+card.%3Cbr%3EIf+it+is+wrong%2C+please+try+again..." How in the heck can I get that url deciphered and in the red box? Does 1.8 fix this? and judging by all th curl issues with it, is it worth it? Thanks in advance, Sam
-
PLEASE!! Does anybody have any experience with this issue?? I'm concerned when I see people on checkout page and never finish conversion. Thank you, Sam
-
Anybody have an idea as to how to fix this? I've tried the hacks I found while searching this forum and nothing works. :huh: :angry: