Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

thecodingmonkey

Archived
  • Posts

    190
  • Joined

  • Last visited

About thecodingmonkey

  • Birthday 11/02/1978

Profile Information

  • Real Name
    Jeremiah
  • Location
    MO
  • Interests
    OSCOMMERCE
  • Website

thecodingmonkey's Achievements

  1. I am having problem my customers when they try to purchase are getting rejected beacuse their credit card expiration is wrong, when I check why i Notice my credit card processing company is only excepting the first two digits 20 instead of 2004 When I go into my credt card script I see that the rop down is defined like this $expires_year[] = array('id' => strftime('%y',mktime(0,0,0,1,1,$i)), 'text' => strftime('%Y',mktime(0,0,0,1,1,$i))); but if I change it to this $expires_year[] = array('id' => strftime('%y',mktime(0,0,0,1,1,$i)), 'text' => strftime('%y',mktime(0,0,0,1,1,$i))); so that year read like this 04 05 06 Instead of like this 2004 2005 2006 it is still sending the 20 to my credit card processor Why is this, and how can I fix it
  2. Is thier anyway that will allow me to sort which attribute types come first ie checkbox text field checkbox 2 text field 2 checkbox 3 text field 3
  3. ANyone know why the price on this does not work correctly
  4. I AM WILLING TO PAY $$$ TO GET THIS FIXED AND WORKING
  5. I am working on installing Chandras OPtion Type Feature 1.6 and it seems really cool. Anywho I have three text fields and they all send the data to the shopping cart So like Product a text1 = = = Happy Birthday +.10 text2 = = = Joe Shmoo +.10 text3 = = = God Bless +.10 Now this send all the information and text forms work great However it .10 cents whether there are none or all three text fields have have text in them I am kind of hoping someone has had experience with this why does it do this and is thier anyway around it. ================================= tcm
  6. okay to just do flat you type something similar to this in 10:12.99, 100:19.99, 10000:119.99 percentage it is just this 10:5%, 100:4%, 10000:3% and you can mix so that 10:12.99, 100:4% etc
  7. I am working on a script for myself that does flat and percentage based shipping based on the zones module does anyone else need if so I will package it up and include it in the contributions
  8. come on someone else has had to have run accross this come on
  9. I am also needing this though I am having no luck writing it would appreciate any help given out there
  10. How would you go about limiting how many product are in a category.
  11. Has anyone tried this and if so has anyone had any luck
  12. THANKS TO NO ONE never mind I just rewrote the module now it works just fine
  13. I am having serious problems with integrating When i use the cotribution provided all i get is a loop that keeps takes me to the insert credit card information and a url that say credit card error %21 basically it can't connect to verisign to even send information this is where it screws up function before_process() { global $HTTP_POST_VARS,$order; include(DIR_WS_FUNCTIONS . 'php_pfpro.php'); pfpro_init(); $transaction = array(USER => trim(MODULE_PAYMENT_PAYFLOWPRO_USER), VENDOR => trim(MODULE_PAYMENT_PAYFLOWPRO_VENDOR), PARTNER => trim(MODULE_PAYMENT_PAYFLOWPRO_PARTNER), PWD => trim(MODULE_PAYMENT_PAYFLOWPRO_PWD), TRXTYPE => trim(MODULE_PAYMENT_PAYFLOWPRO_TRXTYPE), TENDER => trim(MODULE_PAYMENT_PAYFLOWPRO_TENDER), AMT => $HTTP_POST_VARS['AMT'], ACCT => $HTTP_POST_VARS['cc_number'], EXPDATE => $HTTP_POST_VARS['cc_expires'], FREIGHTAMT => $HTTP_POST_VARS['FREIGHTAMT'], TAXAMT => $HTTP_POST_VARS['TAXAMT'], FIRSTNAME => $HTTP_POST_VARS['FIRSTNAME'], LASTNAME => $HTTP_POST_VARS['LASTNAME'], STREET => $HTTP_POST_VARS['STREET'], CITY => $HTTP_POST_VARS['CITY'], STATE => $HTTP_POST_VARS['STATE'], ZIP => $HTTP_POST_VARS['ZIP'], COUNTRY => $HTTP_POST_VARS['COUNTRY'], EMAIL => $HTTP_POST_VARS['EMAIL'], SHIPTOFIRSTNAME => $HTTP_POST_VARS['SHIPTOFIRSTNAME'], SHIPTOLASTNAME => $HTTP_POST_VARS['SHIPTOLASTNAME'], SHIPTOSTREET => $HTTP_POST_VARS['SHIPTOSTREET'], SHIPTOCITY => $HTTP_POST_VARS['SHIPTOCITY'], SHIPTOSTATE => $HTTP_POST_VARS['SHIPTOSTATE'], SHIPTOZIP => $HTTP_POST_VARS['SHIPTOZIP'], CSC => $HTTP_POST_VARS['CSC'] ); $response = pfpro_process($transaction); if (!$response||$response[RESULT]!=0) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(MODULE_PAYMENT_PAYFLOWPRO_TEXT_ERROR.' '.$response[RESPMSG]), 'SSL', true, false)); the $response is where it dies I had to include this include(DIR_WS_FUNCTIONS . 'php_pfpro.php'); because it kept saying that pfpro_init(); was an undeclared class I really need help with this please anyone I will take ideas, thoughts, illusion anything
×
×
  • Create New...