Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

zschutz

Archived
  • Posts

    44
  • Joined

  • Last visited

Profile Information

  • Real Name
    Zach

zschutz's Achievements

  1. This looks like a great contribution, and could be exactly what I need for my website. However, I went to install it and I noticed that in a lot of the places where you changed files I have code from the Separate Pricing Per Customer (SPPC) contribution. Before I start messing with the files I was wondering if you knew whether these two contributions will work together. Thanks for all your help, and great work. ~Zach
  2. I apologize in advance if this is a stupid question, but are you supposed to manually create the frooglefile.txt file, and if so where should you create it to? I have created an FTP account, and I updated the username and password settings in the admin section, and I left the server and filename the way they were. When I click on the RUN FEED button though I get the following message: Right now I'm under the impression that this probably has something to do with the fact that I created the /feeds/ folder and set the permissions to 777 but there isn't anything in there at the moment. I didn't see anything in the installation guide about this, so I didn't really know what else to do with it. Is my thinking at all correct, or am I completely off track? Thanks a ton for any help you can provide! ~Zach
  3. Thanks kgt, great explanation. I'll give it a try and see if it works. One thing I was just wondering about this contribution though, on what page does the customer enter their code? (ex. checkout_shipping, checkout_payment, etc) Thanks. ~Zach
  4. This looks like exactly what I will need for my site! However, before I try to install it, I was wondering if this will work together with Vger's Authorize.net AIM contribution. I just installed that and got it working, but in the support forum for that contribution people had said they had problems with the CCGV coupon contriubtion working with it, and that's why I am looking for alternate coupon contributions. Has anybody else installed the authorize.net AIM contribution with this and got it to work, or is it a waste of time? Thanks so much. ~Zach
  5. I talked to my hosting company, and after telling them that the url for connecting to authorize.net is https://certification.authorize.net/gateway/transact.dll, they told me that they expected a different ip address from them, and that was the reason for not being able to connect. They then explained the more technical reasons for this which went way over my head, but the thing I did understand was that they opened up the connection and now I can connect! :D Thanks so much for your help Vger, I really appreciate it, and also thanks for making such a great contribution for the oscommerce community. ~Zach
  6. I contacted my hosting company, and found out from them that there was a firewall up blocking connections to authorize.net, so I had them open up a port to connect to. Though I'm sure this was very necessary, it did not immediately solve my problem. I am now asking my hosting company about my cURL settings to make sure that they are set up correctly, because I can't think of anything else that would be causing me to not send my information correctly. Thanks. ~Zach
  7. I just had another conversation with authorize.net's live chat support, and this is what they told me: I don't know why it would be having a problem passing my password since so many people have successfully gotten this contribution to work using the same code. Does this help shed any light on my situation? Thanks. ~Zach
  8. Vger, I looked through this forum finding the suggestions on cURL, but adding the suggested lines of code didnt seem to have any effect. I did have to install cURL originally, but it now shows up in my phpinfo page, so I assume that means it is installed correctly. I went into a live chat with authorize.net to see if they had any ideas, and they directed me to this osCommerce forum: http://www.oscommerce.com/forums/index.php?sho...c=51316&hl= It appears to be an old post, referring to the authorize.net module that came preinstalled with osCommerce, for the SIM rather than AIM. I still tried to apply the changes to your module in the following way: On line 331 of includes/modules/payment/authorizenet_AIM.php I have tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . $_POST['x_response_reason_code'] . ' - ' . $_POST['x_reason_response_text'] . ' - ' . $x_response_text . ' - ' . urlencode(MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_DECLINED_MESSAGE), 'SSL', true, false)); ...which provides the following error result on the checkout_payment page: Is there some kind of basic code that I can put into one of my files that will output something if I am able to connect to authorize.net at all, just so I can make sure that that isnt the problem. Thanks so much for your help. ~Zach
  9. Any other ideas as to how I can get this working? I really appreciate it. Thanks. ~Zach
  10. Thanks for the quick reply Vger. I change my authorize.net account to Test Mode Off, but I still get the same error in checkout. ~Zach
  11. I downloaded this contribution a couple days ago, and after reading through this forum a couple times trying to get the setup working correctly, I am still having some issues. The error that I am getting is that after going through the checkout, when I click the Confirm Order button on the checkout confirmation page I get redirected back to the checkout payment page, with the following error message: After looking in the language file I found that this is just the default error response. This message also appears in the url, but in neither location does it display the error response reason code from authorize.net, or any other indication as to what might be causing the error. My current setup is as follows: The following is code from my includes/modules/payment/authorizenet_AIM.php file starting at line 300 if (MODULE_PAYMENT_AUTHORIZENET_AIM_TESTMODE == 'Test') { $url = 'https://certification.authorize.net/gateway/transact.dll'; // If this does not work then change 'secure' to 'certification' on this line } else { $url = 'https://secure.authorize.net/gateway/transact.dll'; } $ch = curl_init($url); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_VERBOSE, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1); curl_setopt($ch, CURLOPT_PROXYTYPE, $CURLPROXY_HTTP); curl_setopt($ch, CURLOPT_PROXY, "64.202.165.130:3128"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); $authorize = curl_exec($ch); curl_close ($ch); $response = split('\,', $authorize); and in line 30 I have: $this->form_action_url = tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL', true); // checkout_process.php - page to go to on completion ...though I have tried setting it to both true and false, without seeing any difference. The settings in my admin-->modules-->payment-->Authorize.net AIM are as follows: My authorize.net account settings for direct response are: Delimited Response: No Default Field Separator: Comma(,) Field Encapsulation Character: blank I also have it set to version 3.1, and I am running in Test Mode. From my includes/configure.php file, here are my server and cookie settings: define('HTTP_SERVER', 'http://www.daynau.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://www.daynau.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.daynau.com'); define('HTTPS_COOKIE_DOMAIN', 'www.daynau.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); I think that covers all of the suggestions that have been given for how to get this module working, as I have found through this forum. I would greatly appreciate it if somebody could help me identify which settings are incorrect, or help me figure out something else I am missing. Thank you so much. ~Zach
  12. Still haven't been able to get this to work. Would really appreciate some help. Thanks ~Zach
  13. I had a small problem with getting my Easy Populate to work. I just finished downloading and installing it, and now when i go to my admin -> Easy Populate page, i click on any of the download EP or create EP links at the bottom and nothing appears to happen. It seems to just refresh the page without downloading anything. If i right click and do a save as, then open up the file it is an htm file that looks exactly like the web page that you are supposed to download from. Sorry if this has already been addressed but i could not find it among the many pages that came before this. Thanks in advance for your help! ~Zach
  14. Looking through the other forums i found the hint about having no blank lines before or after the code, which fixed my problem. However, now it will only install the "default" and "index" modules, and when i click to install the "product_info" module it basically does nothing except reopen the same page with no changes made. Any ideas on what i did wrong? Much thanks. ~Zach
  15. I just installed the STS v4.1, and when i get to the configuration part in the admin page, i can see the STS option under modules, but when i click to install any of them i get this message: Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\xampp\htdocs\catalog\admin\includes\languages\english.php:307) in C:\xampp\xampp\htdocs\catalog\admin\includes\functions\general.php on line 22 I'm new to this stuff so i've been having a hard time figure out what exactly this means. I looked in the files it mentioned but couldnt tell what needed to be changed. Any help will be greatly appreciated. Thanks! :D ~Zach
×
×
  • Create New...