Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bluewaterbm

Pioneers
  • Posts

    31
  • Joined

  • Last visited

Posts posted by bluewaterbm

  1. I have 2.10c installed and my sales Tax Summary Reports are incorrect in QuickBooks. My invoices are coming over correctly from QBI with sales tax not charged on my shipping for out of state customers. However at the bottom of the invoice it does not say sales tax exempt for out of state customers. So when I run sales tax summary report it is coming out wrong (tax being charged on shipping). Due I have something set wrong in QBI? Is there a fix for this? This does not appear to be a QuickBooks problem but a QBI one. At least that is what the people over at Intuit are telling me. It is like I need two sales tax codes. One for instate and one for out of state.

     

    Thanks,

    Capt Tony

  2. Since I have installed OPC my order ID's are not in sync. My last couple are 229,233,237,242 does anyone know why this is happening and how to fix.

     

    Thanks,

    Capt Tony

     

    In phpmyadmin I have it set to auto increment. It does increase just not one at a time. Anyone else having this problem.

     

    Thanks,

    Capt Tony

  3. Hi you have an error of some sort in the content of that page recheck install or look in your error log if you have one

     

    Steve

     

     

    Steve, thanks for the reply. I went through install and double checked everything but no luck. I don't know if this will help but I noticed the web page dispays but it said with errors on page Well here they are:

     

    Webpage error details

     

    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 4.0; .NET4.0C)

    Timestamp: Sat, 6 Nov 2010 00:58:48 UTC

     

     

    Message: 'jQuery' is undefined

    Line: 14

    Char: 1

    Code: 0

    URI: http://localhost/xam...jQuery.ajaxq.js

     

     

    Message: 'jQuery' is undefined

    Line: 1

    Char: 1

    Code: 0

    URI: http://localhost/xam...ry.pstrength.js

     

     

    Message: 'jQuery' is undefined

    Line: 10

    Char: 1

    Code: 0

    URI: http://localhost/xam...ry/jQuery.ui.js

     

     

    Message: '$' is undefined

    Line: 1

    Char: 1

    Code: 0

    URI: http://localhost/xam...out/checkout.js

     

     

    Message: 'onePage' is null or not an object

    Line: 29

    Char: 3

    Code: 0

    URI: http://localhost/xam...4ckls4ebk40ruf3

     

    Does this tell me why?

    Thanks,

    Capt Tony

  4. I have installed contribution and everything in admin displays. I have no errors. One page checkout is enabled. When I go to website to check out I get a blank main checkout page. You can see header, footer, and both side columns. You just do not see anything in the center. Any thoughts anyone?

     

    Thanks

  5. try:

     

    $confirmation = array('fields' => array(array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_OWNER,
    'field' => tep_draw_input_field('cc_owner', $order->billing['firstname'] . ' ' . $order->billing['lastname'])),
    array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_TYPE,
    'field' => tep_draw_pull_down_menu('cc_type', $types_array)),
    array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_NUMBER,
    'field' => tep_draw_input_field('cc_number_nh-dns')),
    // array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_VALID_FROM,
    // 'field' => tep_draw_pull_down_menu('cc_starts_month', $months_array) . ' ' . tep_draw_pull_down_menu('cc_starts_year', $year_valid_from_array) . ' ' . MODULE_PAYMENT_PAYPAL_DIRECT_CARD_VALID_FROM_INFO),
    array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_EXPIRES,
    'field' => tep_draw_pull_down_menu('cc_expires_month', $months_array) . ' ' . tep_draw_pull_down_menu('cc_expires_year', $year_expires_array)),
    array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_CVC,
    'field' => tep_draw_input_field('cc_cvc_nh-dns', '', 'size="5" maxlength="4"'));
    
    return $confirmation;
    }
    
    

     

     

    I tried that and I get:

    Parse error: syntax error, unexpected ';', expecting ')' in /home/content/******/includes/modules/payment/paypal_direct.php on line 116

  6. I was removing Card Valid Date and Card Issue Number: (for Maestro and Solo cards only) from my order confirmation page for PayPal pro I have mostly succeeded except for I have two little “( (“ left behind on last line. I commented out the areas that control this in PayPal direct.php This is how it looks:

    Payment Information

    Card Owner:

    Card Type:

    Card Number:

    Card Expiry Date: Card Security Code (CVV2):

    ( (

     

     

    Can someone please look at my code and tell me where I went wrong.

     

     

     

          $confirmation = array('fields' => array(array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_OWNER,
                                                       'field' => tep_draw_input_field('cc_owner', $order->billing['firstname'] . ' ' . $order->billing['lastname'])),
                                                 array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_TYPE,
                                                       'field' => tep_draw_pull_down_menu('cc_type', $types_array)),
                                                 array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_NUMBER,
                                                       'field' => tep_draw_input_field('cc_number_nh-dns')),
                                             //  array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_VALID_FROM,
                                             //        'field' => tep_draw_pull_down_menu('cc_starts_month', $months_array) . ' ' . tep_draw_pull_down_menu('cc_starts_year', $year_valid_from_array) . ' ' . MODULE_PAYMENT_PAYPAL_DIRECT_CARD_VALID_FROM_INFO),
                                                 array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_EXPIRES,
                                                       'field' => tep_draw_pull_down_menu('cc_expires_month', $months_array) . ' ' . tep_draw_pull_down_menu('cc_expires_year', $year_expires_array)),
                                                 array('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_CVC,
                                                       'field' => tep_draw_input_field('cc_cvc_nh-dns', '', 'size="5" maxlength="4"')),
                                             //  array ('title' => MODULE_PAYMENT_PAYPAL_DIRECT_CARD_ISSUE_NUMBER,
                                             //        'field' => tep_draw_input_field('cc_issue_nh-dns', '', 'size="3" maxlength="2"') . ' ' .
                                                        MODULE_PAYMENT_PAYPAL_DIRECT_CARD_ISSUE_NUMBER_INFO));
    
         return $confirmation;
       }

     

    Thanks

  7. I have installed the Minimum Advertised Price Module V1.02. It works and displays the MAP price only when you have clicked on the product. I have noticed that the price is not hidden on the category listing page i.e. price before "buy now" button. This makes the contribution largely useless. Does any one have a fix for this? I have seen on the forum other peolple noticed same problem but no fix.

     

    Thanks

  8. After over 2 months, I am having no luck getting help with this contribution. Please see post above. Now, I have noticed that the price is not hidden on the category listing page i.e. price before "buy now" button. This makes the contribution largely useless. Is someone else having this problem? Please, is there anyone out there that can help me??

     

     

    I am where you were at years ago. I have installed the contribution and have the same problem. After all these years I still dont see the solution posted. What did you do.

  9. I am new to all this so please help. I am installing easy populate on my local apache sever and my linux through Go daddy I am on step six. How do I add a PHP.ini? How do I create this? If I am reading this correctly I add this to my admin/folder of my Linux/Apache and not my OSC admin/folder?

     

    STEP #6 - Check with your web host about your hosting environment

    There are several variables that may affect some with large data files when using Easy Populate. These can usually be adjusted to fit your needs in a Linux/Apache environment by adding a php.ini file in your /admin/ folder. Do check with your host on this to ensure that a) it can be done, and B) you're staying within your Terms of Service. This forum post may help:

    http://www.oscommerce.com/forums/index.php?showtopic=162244&st=5900&p=1101458entry1101458

     

    When these factors come into play, often the script will simply halt with no error message.

     

    The following php.ini settings are considered to be "default" by most hosts. Adjust higher as needed.

     

    max_execution_time = 30 ;(in seconds)

    Change this to allow for more time that PHP can process your import file.

    max_input_time = 60 ;(in seconds)

    post_max_size = 2M ;

    upload_max_filesize = 2M ;

    These will limit the size of a file you can import using Easy Populate. This can be circumvented by uploading the file via FTP to your /temp/ folder and importing it from there.

    memory_limit = 8M ;

    Change this to allow PHP to use more memory to process your file. (32M recommended)

    session.gc_maxlifetime = 1440 ; (in seconds)

    Your session lifetime, should always be longer then the max_execution_time.

     

    Thanks, In over My head!

×
×
  • Create New...