Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

  • Posts

    19
  • Joined

  • Last visited

Everything posted by [email protected]

  1. $sql_data_array = array(); //declare the array and add to it anything changed $products_date_available = tep_db_prepare_input($_POST['products_date_available']); if ($products_date_available != $products_old['products_date_available']) $sql_data_array['products_date_available'] = $products_date_available; // $products_quantity = tep_db_prepare_input($_POST['products_quantity']); // if ($products_quantity != $products_old['products_quantity']) $sql_data_array['products_quantity'] = $products_quantity; $sql_data_array = array('products_ship_sep' => (isset($HTTP_POST_VARS['products_ship_sep'])? '1':'0'), 'products_quantity' => tep_db_prepare_input($HTTP_POST_VARS['products_quantity'])); if ($products_quantity != $products_old['products_quantity']) $sql_data_array['products_quantity'] = $products_quantity; $products_model = tep_db_prepare_input($_POST['products_model']); if ($products_model != $products_old['products_model']) { $sql_data_array['products_model'] = $products_model; }else{ if (strlen($products_model) != strlen($products_old['products_model'])) { $sql_data_array['products_model'] = $products_model; } } ??
  2. @@Roaddoctor Great News! I have some questions and information as if regards to my installation. In my installation there are two (2) separate fedexwebservices.php files; on located in the admin .../csadmin/includes/modules/shipping/fedexwebservices.php and the other in the frontend .../includes/modules/shipping/fedexwebservices.php. Should they both be replaced with your new 9.4.1? In step 4.3 - the only line that comes close to $sql_data_array = array('products_quantity' => tep_db_prepare_input($HTTP_POST_VARS['products_quantity']), is $products_quantity = tep_db_prepare_input($_POST['products_quantity']); if ($products_quantity != $products_old['products_quantity']) $sql_data_array['products_quantity'] = $products_quantity; . Also there are 39 instances of "products_quantity" in categories.php file. Any advice would be appreciated. Thanks.
  3. @@Roaddoctor if you need help please let me know. I'm in the midst of fixing several bugs. FedEx Real Time Quotes doesn't play well since it relies on the old FedEx API. Shipping prices jump from GROUND to 2nd DAY depending on what is selected in the Web Services v9 configuration settings. Printing of labels doesn't work and so on... I could help out ASAP.
  4. I added ini_set('display_errors',1); error_reporting(E_ALL); right after the opening <?php on the file in question which indicated missing files. My sloppy installation is to blame.
  5. I added a line of code on that page to print out all errors. Which pointed to missing files and database tables. <?php ini_set('display_errors',1); error_reporting(E_ALL); /* $Id: edit_orders.php v5.0.5 08/27/2007 djmonkey1 Exp $
  6. Kym thanks for your help supporting this module. My problem is that there are no input fields for the admin to select/change shiping methods in the order edit page. Any help would be appreciated. Thanks
  7. Thanks to all of you for supporting this contribution. Is there a way for admin to edit shipping method in the backend? I don't see any input fields in Edit Order screen. Thanks!
  8. I'd like to ftp the images (already batch optimized for enlarged size prior to upload, though NOT for thumbnail) into an images folder. The question (I guess) is there a way to reference image location in product_image field? And, it would be nice that when product_image is called (for the first time) that it would be optimized for thumbnail size and cached on-the-fly. Thanks for your response.
  9. I'm successfully using Easy Populate & Products Attributes v2.90 though I have thousands (+thousands) of products with images. Is there a way to batch upload images and when the referenced image is opened it resizes on the fly? Or something easier than uploading one-by-one through the admin?
  10. Great contribution!! _________________ 06-2007 Version 606 OsWai Ver 606 http://lnx.magnino.net/index.php?pag=oscommerce/dowoscom _________________ though, there may be a bug: PHP Parse error: syntax error, unexpected T_LNUMBER in /usr/home/mhr/www/mysite/admin/includes/boxes/reports.php on line 30 tep_admin_files_boxes(FILENAME_STATS_PRODUCTS_VIEWED, BOX_REPORTS_PRODUCTS_VIEWED) . ->> tep_admin_files_boxes(FILENAME_STATS_PRODUCTS_PURCHASED, BOX_REPORT 24,161,80,157,133,163 tep_admin_files_boxes(FILENAME_STATS_CUSTOMERS, BOX_REPORTS_ORDERS_TOTAL) . I've commented it out for now though a fix may be necessary. Thanks, David
  11. Admin Access doesn't seem to want to hold my session id. Any places to look? Thanks
  12. Thanks! I've been stumped by this one for the past several days.
×
×
  • Create New...