Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

usisu

Pioneers
  • Posts

    3
  • Joined

  • Last visited

Profile Information

usisu's Achievements

  1. Hello, trying to get some help with Ajax Search Suggest. If you are still around, please check your PM, im trying to get in touch with you. Thank you.

  2. Just and update on this, I got it to work!!! Here is all I did: In the module changed: 'x_delim_char' => '|', to 'x_delim_char' => '\,', and: $this->response = explode('|', $response); to $this->response = explode('\,', $response); Also added (around line 226): 'x_encap_char' => ' ', For Authorize.Net Account Setup changed Direct Response from these: i. Delimited Response = No -- also tries Yes w/ the same results ii. Default Field Seperator = comma iii. Field Encapsulation Character = blank --- also tries double quotes (") w/ the same results to i. Delimited Response = YES <-- THIS HAS TO BE YES OR IT WONT WORK! AIM USES DIRECT NOT RELAY!! ii. Default Field Seperator = comma iii. Field Encapsulation Character = blank Cheers!
  3. The Authorize.net AIM contrib. uses a text field not an int (correct me if I am wrong) so the Transaction ID or x_trans_id going to a 10-digit integer should not be an issue. Here is my problem: Installed per install.html the 14 Aug 2008 full package contrib w/ $Id: authorizenet_aim.php 23rd August, 2006 18:50:00 Brent O'Keeffe $ in header on a customized version of osCommerce 2.2-MS2 at http://www.horticulturesource.com/ -- For now (9/2/08) we are using authorizenet.php,v 1.48 for cards as it is working. When I submit a card transaction Live or Test (w/ or w/o CVV) all I get is forwarded back to the payment page w/ the error: "- Your credit card could not be authorized for this reason. Please correct any information and try again or contact us for further assistance." Nothing before it indicating what the error was. Authorize.Net Captures and tries to Authorize the transaction however (when Live of course and I just void the transaction). So it seems the card is being sent in okay but rather than getting the success page we get an error which doesn't help me debug. In the Authorize.Net account I have set Transaction Version to 3.1. There is no default Response/Receipt URLs but have both .../checkout_confirmation.php and .../checkout_process.php in the list. So the Relay Response URL is blank and Receipt Page URL is blank also. For Direct Response have these: i. Delimited Response = No -- also tries Yes w/ the same results ii. Default Field Seperator = comma iii. Field Encapsulation Character = blank --- also tries double quotes (") w/ the same results Do I need to have WebLink turned off -- AIM should still work w/ it on as you are supposed to get AIM working before you turn it off as you cannot turn it back on once disabled? I updated the test url to https://certification in authorizenet_aim.php.... I have fixed the invoice # issue so it is being sent okay w/ the rest of the card info. Also did updated checkout_process.php w/: $order_totals = $order_total_modules->process(); // load the before_process function from the payment modules $payment_modules->before_process(); CVV help works. And I updated the admin/orders.php file as per the install.html. I think I followed everything in the install and read this forum and still no luck. CURL is on: cURL support enabled cURL Information libcurl/7.18.2 OpenSSL/0.9.8g zlib/1.2.3 libidn/0.5.6 './configure' '--enable-bcmath' '--enable-calendar' '--enable-exif' '--enable-fastcgi' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-magic-quotes' '--enable-maintainer-zts' '--enable-mbstring' '--enable-pdo=shared' '--enable-soap' '--enable-sockets' '--enable-zip' '--prefix=/usr' '--with-bz2' '--with-curl=/opt/curlssl/' '--with-freetype-dir=/usr' '--with-gd' '--with-gettext' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/opt/openssl' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libexpat-dir=/usr' '--with-libxml-dir=/opt/xml2' '--with-libxml-dir=/opt/xml2/' '--with-mcrypt=/opt/libmcrypt/' '--with-mhash=/opt/mhash/' '--with-mime-magic' '--with-mysql=/usr' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-mysqli=/usr/bin/mysql_config' '--with-openssl=/opt/openssl' '--with-openssl-dir=/opt/openssl' '--with-pdo-mysql=shared' '--with-pdo-sqlite=shared' '--with-pgsql=/usr' '--with-pic' '--with-png-dir=/usr' '--with-pspell' '--with-sqlite=shared' '--with-tidy=/opt/tidy/' '--with-ttf' '--with-xmlrpc' '--with-xpm-dir=/usr/X11R6' '--with-xsl=/opt/xslt/' '--with-zlib' '--with-zlib-dir=/usr' Could a cURL proxy issue cause this? I don't think I need a cURL proxy URL... At least that is what the host said "No, you won't have to have a proxy URL" I have no idea what else I could me missing. Probably something really obvious. Any help would be appreciated. :D Thanks in advance! Cheers, k
  4. You can send HTML emails from admin. catalog/admin/mail.php at or near line 40: Change //Let's build a message object using the email class $mimemessage = new email(array('X-Mailer: osCommerce')); To //Let's build a message object using the email class $mimemessage = new email(array('Content-Type: text/html; charset=ISO-8859-15')); See it in action HorticultureSource.com - Specialty Gardening Supplies -usisu
×
×
  • Create New...