Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

rodrico

Archived
  • Posts

    80
  • Joined

  • Last visited

Posts posted by rodrico

  1. Chris,

     

    Received an email from a customer. Apparently when you try to use the Paypal checkout button (instant payment, w/o making an account on my site) you get the following error:

     

    Fatal error: Cannot redeclare class soap_fault in /hsphere/local/home/rodrico/eratoys.com/catalog/pear/Services/PayPal/SOAP/Fault.php on line 33

     

    Here is the code from where the error message is coming from:

    class SOAP_Fault extends PEAR_Error

     

    Obviously I need the paypal and my credit card function or I get no sales at all. (DOES NOT allow credit card transactions either. Get same message.

     

    I am going to disable the Buysafe module and see if it works. I need to change the name of a file in the buysafe module. I know many people use this same Paypal/Credit Card module for payments.

     

    Rod

  2. Strange...I turned it back on and made a purchase myself and everything works on the catalog side. Seal appears and all the info is correct in the pop-ups.

     

    Still says failure when I test on the admin side...is it working?? bufSAFE appears on the invoice on the cat and admin side.

     

    If you want to test it out, just do an order with the fax in your order option and I can delete the order later.

     

    Thanks,

    Rod

  3. Chris,

     

    I installed the module today at my website www.eratoys.com

     

    Everything went smooth...great instructions by the way. My site is heavily modified, but was still able to code it fine.

     

    After uploading everything to the server, I received no errors. I installed the module on the admin side and everything was fine.

    However, when I entered the token info for store and seal authorization, it failed the test. I made sure I had the right codes in the right boxes, yet it gave me a failure each time.

     

    When I updated and checked the site out, there was a big white space where the seal should be...what am I doing wrong?? I set the button to enable to false until I get this resolved. I doubled checked all my code and DID add the SQL

     

    Rod

  4. Hello,

     

    I previously installed version 1.1 and now upgraded to version 1.3

     

    My problem is that when I receive the message I never receive any of the data. I get the text message...the typed in comments, but never receive any of the other data, email, name etc. (Didn't work for me with version 1.1 either)

     

    Am I doing something wrong in my POP confirguration?? I am using forwards and autoresponders. Even when I check my original email boxes there is no info there.

     

     

    Everything else seems to work....success page etc.

     

     

    Help,

    Rod

  5. Hello,

     

    I previously installed version 1.1 and now upgraded to version 1.3

     

    My problem is that when I receive the message I never receive any of the data. I get the text message...the typed in comments, but never receive any of the other data, email, name etc.

     

    Am I doing something wrong in my POP confirguration?? I am using forwards and autoresponders. Even when I check my original email boxes there is no info there.

     

     

    Everything else seems to work....success page etc.

     

     

    Help,

    Rod

  6. if you are taking about the text that follows "osCsid...." then basically you need to manually update your site to the November 2005 update to kill your session ID's.

     

    You can click here to get it: osCommerce 2.2 Milestone 2 Update 051112 Documentation

     

     

    I am having similar problems and errors. I am sure my site is updated to the latest osCommerce. How do I manually load files to kill my sessions, or how do I set my configuration??

     

    Thanks,

    Rod

  7. depends on how you have the More Pics settings. could be simple, could be difficult. please post the setting from the Admin -> Configuration -> More Pics.

    Show All MorePics on Product Info page true

    Group parent image with sub-images false

    Use SMALL_IMAGE_ Restrictions true

    Restrict parent image size true

    Table Alignment center

    Table Location below

    Number of Columns 3

    Number of Rows 2

     

    Some of these could be changed. I do need to restrict the size of the more pics table (ie the group of 6 pics) I would like to adjust the main product pic to be larger and not dependent on the small image restriction

     

    Thanks,

    Rod

  8. Is there anyway to change the size of the parent image w/o affecting the size of the subimages??

     

    I want my parent image to be larger, but I don't want it to be it's actual size (IE I want to force some restriction on it, but not within the realm of what the base osC offers) I would like to make the parent image it's own sub-category somehow....

     

    Any ideas??

     

    Rod

  9. I get the following error after processing the RMA:

     

    1136 - Column count doesn't match value count at row 1

     

    INSERT into refund_payments values ('', '', '', '', '', '', '')

     

    [TEP STOP]

     

    The following is in my browser:

     

    .../catalog/return_product.php?action=sent&rma_value=91467459805&return_id=4

     

    Thanks. RMA number is generated and visible on the admin side and emailsa re sent to the customer with correct info.

     

    Thanks

    R

  10. Sorry some times I'm blind. Neither your nor my select statement look anything like the one in the error statement. It is (probably) the one in admin/includes/classes/order.php. Around line 27

     

    BINGO!! Thanks for your lengthy help. Very much appreciated!! Here is the line of code from the installation read me file. "and ups_track_num" should be changed to usps_track_num.

     

    Thanks.

     

    From Read Me Install:

    ***Step 8***

     

    catalog/admin/includes/classes/order.php

     

    Find this:

     

    $order_query = tep_db_query("select customers_name, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, comments, currency, currency_value, date_purchased, orders_status, last_modified from " . TABLE_ORDERS . " where orders_id = '" . tep_db_input($order_id) . "'");

     

    And replace it with this:

     

    //Tracking contribution begin
      $order_query = tep_db_query("select customers_name, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, comments, fedex_track_num, ups_track_num, and ups_track_num, fedex_freight_track_num, dhl_track_num, currency, currency_value, date_purchased, orders_status, last_modified from " . TABLE_ORDERS . " where orders_id = '" . tep_db_input($order_id) . "'");
    //Tracking contribution end
    
    ***Note: the only change was the addition of fedex_track_num, ups_track_num, and ups_track_num, fedex_freight_track_num, dhl_track_num, to the query.

  11. Here is what I have there...cannot see an error:

     

    //Tracking contribution begin
    	$check_status_query = tep_db_query("select customers_name, customers_email_address, orders_status, ups_track_num, usps_track_num, fedex_track_num, fedex_freight_track_num, dhl_track_num, date_purchased from " . TABLE_ORDERS . " where orders_id = '" . tep_db_input($oID) . "'");
       //Tracking contribution end

     

    ?

     

    Rod - Still looking

  12. If I understand you correctly your looking for an error when you create the fields in the database?

     

    This is an error in the query in your php-file. Look around line 38 in your admin/orders.php file

     

    As for the comments field you don't have one in the orders table.

    Either add it (though there is no point to do so unless you somwhere add code to put something in that field)

    or remove comment from the query. This is in catalog/includes/classes/orders.php

    Look around line 35.

     

     

    Here is my code from admin/orders.php:

     

    if (tep_not_null($action)) {
    switch ($action) {
      case 'update_order':
    	$oID = tep_db_prepare_input($HTTP_GET_VARS['oID']);
    	$status = tep_db_prepare_input($HTTP_POST_VARS['status']);
    	$comments = tep_db_prepare_input($HTTP_POST_VARS['comments']);
    	//Tracking contribution begin
      $ups_track_num = tep_db_prepare_input($HTTP_POST_VARS['ups_track_num']);
      $usps_track_num = tep_db_prepare_input($HTTP_POST_VARS['usps_track_num']);
      $fedex_track_num = tep_db_prepare_input($HTTP_POST_VARS['fedex_track_num']);
      $fedex_freight_track_num = tep_db_prepare_input($HTTP_POST_VARS['fedex_freight_track_num']);
      $dhl_track_num = tep_db_prepare_input($HTTP_POST_VARS['dhl_track_num']);
       //Tracking contribution end

     

     

    I do not see the dreaded"and ups_track_num" What am I missing?

    Rod

  13. Hello,

     

    I am getting the following SQL errors in my site.

    This is on the admin side when I go to Customers=>Orders=> Edit:

     

    1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'and ups_track_num, fedex_freight_track_num, dhl_track_num, curr

     

    select customers_name, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, comments, fedex_track_num, ups_track_num, and ups_track_num, fedex_freight_track_num, dhl_track_num, currency, currency_value, date_purchased, orders_status, last_modified from orders where orders_id = '67'

     

    [TEP STOP]

     

    And I get this on the catalog side when going to Account Information=>View Order:

    1054 - Unknown column 'comments' in 'field list'

     

    select customers_name, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, comments, fedex_track_num, ups_track_num, usps_track_num, fedex_freight_track_num, dhl_track_num, currency, currency_value, date_purchased, orders_status, last_modified from orders where orders_id = '65'

     

    [TEP STOP]

     

    I checked my database after uploading the SQL file and everything seems to be correct, but not according to the error in the admin side. I double checked all the installation steps.

     

    Please help.

     

    Rod

  14. Agh, just realised what you've done - so you should have triple-checked the install.

     

    It's all down in the User Guide - that you must use GIFT as the first part of the Model Number when you add a Gift Voucher as a product to your catalogue. If you don't then it's not treated as a Gift Voucher and so is not queued.

     

    Vger

     

     

    THANKS...you were right.,..I misread the easy part of the install....I was using GIFT in the title, but not the model number..thanks for your help.

     

    Rod

  15. Hello,

     

    I am about to go live with my site and am running into a shipping problem.

    Free Shipping is the only (or default) method available for shipping. No other options appear on my shipping methods box on my checkout page and they are enabled in Admin. If I disable all methods the big arrow for selecting disappears, but nothing else shows up.

     

    I had previously installed MVS1.1 but decided it was not what I needed. I uninstalled it by using my backup, so there should not be any residual errors from that.

     

    Here is what shows up on my Shipping Methods Box:

     

    Please select the preferred shipping method to use on this order. Please Select

     

    Free Shipping

    Free shipping for orders over $0.00

     

    I HAVE NOT installed any Free shipping contributions, so I am not sure where this is coming from.

    I do not get any radio buttons. The big select arrow shows up when other methods are enabled in admin. PLEASE any help or suggestions would be greatly appreciated.

     

    Rod

  16. If items are not appearing in the queue then are you sure you are using CCGV(trad) and not the original CCGV? CCGV(trad) queues all Gift Vouchers - the customer doesn't get them until they are released from the queue.

     

     

    Vger

     

     

    Yes, I installed the latest version of CCGV (trad) I have double checked my installation.

    Thanks,

    Rod

×
×
  • Create New...