Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

gaurav

Archived
  • Posts

    11
  • Joined

  • Last visited

Profile Information

  • Real Name
    gaurav

gaurav's Achievements

  1. Hi, I successfully installed this contribution and am operating my website with no problems but for one. If a customer buys 3 different items that I intend to ship separately, this contribution adds up the weights for those items and on the checkout_shipping.php page, shows Federal Express (1 x 123lbs) Ground Service (4 days) $79.30 when in fact it should show 1 x 24lbs 1 x 24lbs 3 x 25lbs Due to that, I'm losing some money on shipping. If I login to my fedex account and manually enter my customer's order info along with the customer's address and request a quote, the shipping amount fedex gives me is $84.51 which clearly is way above what my customer is paying me. So the ship separately check-box is clearly not doing what it is supposed to. Is there anything I'm missing anywhere? Please help.
  2. Hi, I successfully installed this contribution and am operating my website with no problems but for one. If a customer buys 3 different items that I intend to ship separately, this contribution adds up the weights for those items and on the checkout_shipping.php page, shows Federal Express (1 x 123lbs) Ground Service (4 days) $79.30 when in fact it should show 1 x 24lbs 1 x 24lbs 3 x 25lbs Due to that, I'm losing some money on shipping. If I login to my fedex account and manually enter my customer's order info along with the customer's address and request a quote, the shipping amount fedex gives me is $84.51 which clearly is way above what my customer is paying me. So the ship separately check-box is clearly not doing what it is supposed to. Is there anything I'm missing anywhere? Please help.
  3. I meant laguages.php. But in admin/includes/languages/*/edit_orders.php the closest thing to define('ENTRY_CREDIT_CARD', 'Credit Card'); that I find is define('ENTRY_CREDIT_CARD_TYPE', 'Card Type:'); The only other file where I seem to find anything that has ENTRY_CREDIT_CARD only is at admin/edit_orders.php. Please help.
  4. What file is the language definition file? I do not see the statement define('ENTRY_CREDIT_CARD', 'Credit Card'); in any of my files [ english.php, language.php etc.]. Maybe I'm missing some file somewhere. Please help.
  5. Hello, I had successfully installed this contribution like a month back. After doing so, I went ahead and installed the following contributions and edited the required files for those contributions to work; not to mention, make any changes in the DB, if so required for any of those contributions to work. Following are the contributions that I installed after installing the FedEx Automated Labels contribution: ------------------------------------------------------------------------------- 1. Related Products (http://www.oscommerce.com/community/contributions,2293/category,all/search,related+products) Files edited: catalog/admin/categories.php catalog/admin/includes/database_tables.php catalog/admin/includes/boxes/catalog.php catalog/admin/includes/languages/"YOUR LANGUAGE.PHP" includes/boxes/catalog.php catalog/admin/includes/filenames.php catalog/includes/database_tables.php catalog/includes/"YOUR LANGUAGE"/product_info.php catalog/product_info.php Aside from changes to these files, this contrib. also required the following SQL script to be run: DROP TABLE IF EXISTS `products_options_products`; CREATE TABLE `products_options_products` ( `pop_id` int(11) NOT NULL auto_increment, `pop_products_id_master` int(11) NOT NULL default '0', `pop_products_id_slave` int(11) NOT NULL default '0', `pop_order_id` smallint(6) NOT NULL default '0', PRIMARY KEY (`pop_id`) ) TYPE=MyISAM AUTO_INCREMENT=18 ; INSERT INTO `configuration_group` ( `configuration_group_id` , `configuration_group_title` , `configuration_group_description` , `sort_order` , `visible` ) VALUES ( '', 'Related Products', 'Optional Related Products module', '999', '1' ); INSERT INTO `configuration` ( `configuration_id` , `configuration_title` , `configuration_key` , `configuration_value` , `configuration_description` , `configuration_group_id` , `sort_order` , `last_modified` , `date_added` , `use_function` , `set_function` ) VALUES ('', 'Show Thumbnails', 'MODULE_RELATED_PRODUCTS_SHOW_THUMBS', 'False', 'Show Related Products Thumbnails', last_insert_id(), '1', NULL, '2005-03-29 23:20:20', NULL , 'tep_cfg_select_option(array(\'True\', \'False\'),'); Finally, it required two "new" files, both called products_options.php , to be added into these directories: \catalog\admin\includes\languages\english \catalog\admin -------------------------------------------------------------------------- 2. Unique Category Descriptions - (Made Simple) 1.3 (http://www.oscommerce.com/community/contributions,4053/category,all/search,Unique+Category+Descriptions+-+%28Made) Files edited: /catalog/index.php and Created a directory in /catalog/includes called /descriptions/. and created a bunch of files with a .php extension bearing the name of all of my categories and sub-categories. --------------------------------------------------------------------------- 3. PWA_0.910_1_2 (http://www.oscommerce.com/community/contributions,355/category,all/search,PWA) Files edited: /catalog/account.php /catalog/checkout_process.php /catalog/checkout_success.php /catalog/login.php /catalog/create_account.php /catalog/includes/header.php /catalog/includes/filenames.php /catalog/includes/languages/english.php /catalog/includes/languages/english/login.php /catalog/includes/languages/english/create_account.php /catalog/admin/orders.php Files added: /catalog/order_info.php /catalog/includes/languages/english/images/buttons/button_create_account.gif SQL Script run: ALTER TABLE customers ADD purchased_without_account TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL AFTER customers_id; ALTER TABLE customers ADD INDEX (purchased_without_account); INSERT INTO configuration_group VALUES (40, 'Accounts', 'Configuration of Account settings', 40, 1); INSERT INTO configuration VALUES ('', 'Purchase Without Account', 'PWA_ON','true','Allow Customers to purchase without an account', 40, 1, '2003-04-08 13:07:44', '2003-04-08 12:10:51', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'),'); ALTER TABLE orders ADD purchased_without_account TINYINT (1) UNSIGNED DEFAULT '0' NOT NULL; -------------------------------------------------------------------------------- All of the aforementioned contributions work perfectly fine with my OSCommerce installation. But after some point in between installing those contributions (I guess), I'm not sure when, the FedEx Automated Label contribution just disappeared. Literally. And I have absolutley no clue as to whether or not any of the files I edited while installing those contributions have anything, if at all, to do with Automated Labels not working anymore. There are no buttons pertaining to this contrib like Track, Ship, FedEx Label, Cancel Shipment etc anymore on the admin page although they still reside as graphic files under the /admin/includes/languages/english/images/buttons folder. There are no more png files at /admin/images/fedex/ as well. I also do not see post.txt anywhere anymore. It's as if I never installed Automated Label contrib. since there are no errors on the admin page. I'm completely lost and do not know where to begin to find out what went wrong. Thankfully, I have a backup of all the files including the DB before I installed those 3 contributions but I really am not looking forward to going through the whole process again that includes reentering products and other form of content. Somebody, please help.
  6. Hello, I had successfully installed this contribution like a month back. After doing so, I went ahead and installed the following contributions and edited the required files for those contributions to work; not to mention, make any changes in the DB, if so required for any of those contributions to work. Following are the contributions that I installed after installing the FedEx Automated Labels contribution: ------------------------------------------------------------------------------- 1. Related Products (http://www.oscommerce.com/community/contributions,2293/category,all/search,related+products) Files edited: catalog/admin/categories.php catalog/admin/includes/database_tables.php catalog/admin/includes/boxes/catalog.php catalog/admin/includes/languages/"YOUR LANGUAGE.PHP" includes/boxes/catalog.php catalog/admin/includes/filenames.php catalog/includes/database_tables.php catalog/includes/"YOUR LANGUAGE"/product_info.php catalog/product_info.php Aside from changes to these files, this contrib. also required the following SQL script to be run: DROP TABLE IF EXISTS `products_options_products`; CREATE TABLE `products_options_products` ( `pop_id` int(11) NOT NULL auto_increment, `pop_products_id_master` int(11) NOT NULL default '0', `pop_products_id_slave` int(11) NOT NULL default '0', `pop_order_id` smallint(6) NOT NULL default '0', PRIMARY KEY (`pop_id`) ) TYPE=MyISAM AUTO_INCREMENT=18 ; INSERT INTO `configuration_group` ( `configuration_group_id` , `configuration_group_title` , `configuration_group_description` , `sort_order` , `visible` ) VALUES ( '', 'Related Products', 'Optional Related Products module', '999', '1' ); INSERT INTO `configuration` ( `configuration_id` , `configuration_title` , `configuration_key` , `configuration_value` , `configuration_description` , `configuration_group_id` , `sort_order` , `last_modified` , `date_added` , `use_function` , `set_function` ) VALUES ('', 'Show Thumbnails', 'MODULE_RELATED_PRODUCTS_SHOW_THUMBS', 'False', 'Show Related Products Thumbnails', last_insert_id(), '1', NULL, '2005-03-29 23:20:20', NULL , 'tep_cfg_select_option(array(\'True\', \'False\'),'); Finally, it required two "new" files, both called products_options.php , to be added into these directories: \catalog\admin\includes\languages\english \catalog\admin -------------------------------------------------------------------------- 2. Unique Category Descriptions - (Made Simple) 1.3 (http://www.oscommerce.com/community/contributions,4053/category,all/search,Unique+Category+Descriptions+-+%28Made) Files edited: /catalog/index.php and Created a directory in /catalog/includes called /descriptions/. and created a bunch of files with a .php extension bearing the name of all of my categories and sub-categories. --------------------------------------------------------------------------- 3. PWA_0.910_1_2 (http://www.oscommerce.com/community/contributions,355/category,all/search,PWA) Files edited: /catalog/account.php /catalog/checkout_process.php /catalog/checkout_success.php /catalog/login.php /catalog/create_account.php /catalog/includes/header.php /catalog/includes/filenames.php /catalog/includes/languages/english.php /catalog/includes/languages/english/login.php /catalog/includes/languages/english/create_account.php /catalog/admin/orders.php Files added: /catalog/order_info.php /catalog/includes/languages/english/images/buttons/button_create_account.gif SQL Script run: ALTER TABLE customers ADD purchased_without_account TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL AFTER customers_id; ALTER TABLE customers ADD INDEX (purchased_without_account); INSERT INTO configuration_group VALUES (40, 'Accounts', 'Configuration of Account settings', 40, 1); INSERT INTO configuration VALUES ('', 'Purchase Without Account', 'PWA_ON','true','Allow Customers to purchase without an account', 40, 1, '2003-04-08 13:07:44', '2003-04-08 12:10:51', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'),'); ALTER TABLE orders ADD purchased_without_account TINYINT (1) UNSIGNED DEFAULT '0' NOT NULL; -------------------------------------------------------------------------------- All of the aforementioned contributions work perfectly fine with my OSCommerce installation. But after some point in between installing those contributions (I guess), I'm not sure when, the FedEx Automated Label contribution just disappeared. Literally. And I have absolutley no clue as to whether or not any of the files I edited while installing those contributions have anything, if at all, to do with Automated Labels not working anymore. There are no buttons pertaining to this contrib like Track, Ship, FedEx Label, Cancel Shipment etc anymore on the admin page although they still reside as graphic files under the /admin/includes/languages/english/images/buttons folder. There are no more png files at /admin/images/fedex/ as well. I also do not see post.txt anywhere anymore. It's as if I never installed Automated Label contrib. since there are no errors on the admin page. I'm completely lost and do not know where to begin to find out what went wrong. Thankfully, I have a backup of all the files including the DB before I installed those 3 contributions but I really am not looking forward to going through the whole process again that includes reentering products and other form of content. Somebody, please help.
  7. Thank you all for clearing out my confusion. This is a great forum with obviously a lot of helpful folks. I'm about to send the test scripts to FedEx for approval and again, I have you all to thank for that.
  8. Actually I did read some on this forum before being able to successfully install this module. It did not install correctly at one go. No complains though. It works fine now after prodding through this great forum which in itself was a lot of fun. Now I can brag to people that I know PHP. But I guess I'm missing some kind of a point here somewhere. Below the Required Fields section, I have the following options to choose from: Number of Packages: Oversized? 123 Packaging Type ("other" for ground shipments): Your PackagingFedEx PakFedEx BoxFedEx TubeFedEx Envelope Type of Service: FedEx Ground ServiceFedEx PriorityFedEx 2dayFedEx Standard OvernightFedEx First OvernightFedEx Express Saver Payment Type: Bill sender (Prepaid)Bill recipientBill third partyBill credit cardBill recipient for FedEx Ground Dropoff Type: Regular pickupRequest courierDrop boxDrop at BSCDrop at station Pickup date (yyyymmdd): Declared Value ($): Package Weight Nowhere above can I find Home Deliveries listed but it shows on the real time quotes on the delivery information page under "Shipping Methods" on the catalog. I apolozige for not giving this info in my previous post. Is that the way this is supposed to work? Since we deliver mostly to businesses, is there a way to change that Home Delivery option below the Shipping Methods to Ground and somehow still find a way to print out labels for all Ground, Home, and Express to send to FedEx? Please help.
  9. Wendy how do you enable/disable ground/home deliveries? Can anyone please tell me how I would enable Home and Express shipping methods on this module. The default I think is Ground because that is what gets printed on the labels and it is working perfectly fine. I just got an email from FedEx that said basically that I was approved on Step 1 but I needed to send them Shipping labels of all Home, Express, and Ground delivery scenarios and not only the scenarios I would need for my site ( which would be Ground by the way). How would I achieve that? Please help. Here is what Fedex told me to do: Web Integrated Solutions Customer Congratulations! The FedEx WIS Certification Team has approved your previously submitted operating scenario. The final step in the process is the highly specific and detailed ??Label Evaluation??. Previously, test-shipping scenarios were provided and by this point you should have created the associated test shipping labels in preparation for evaluation. Reminder: You only had to create test labels for the specific services that are applicable to your situation. The FedEx Ground and Home Delivery label evaluation team requires 5 test labels for each scenario, while the Express team requires only 1 label per test case. These labels will be evaluated for compliancy against FedEx regulatory standards to ensure no delivery service interruptions occur once your packages enter the FedEx operational network. The utmost care and preparation must be made on your part to ensure that these labels are generated according official FedEx label specifications, which can be located at the following url: http://www.fedex.com/us/solutions/wis/pdf/...bels.pdf?link=4 Pay particular attention to print quality and accidental enlargement/shrinkage of labels (i.e. scaling). These are the top two reasons why labels do not pass the label certification process. Once received, the WIS Certification team will provide evaluation results within 5 business days. Attached to this email is a ??Label Certification Cover Sheet?? which contains the specific address information for each of our certification teams. This cover sheet MUST be included with each packet of shipping labels that you send to the FedEx Label Certification Teams for evaluation. This may require you to print and populate the cover sheet multiple times (one for each packet). Failure to include this cover sheet and failure to populate for all fields on the cover sheet, will significantly delay your certification timeline. If you have any additional questions or encounter any technical difficulties/issues, please visit the FedEx Web Integrated Solutions website (http://www.fedex.com/us/solutions/wis ) and review our technical and F.A.Q. (Frequently Asked Questions) section. You may also wish to contact the Web Solutions Support Team via email, [email protected] or phone, 1-877-339-2774 (Voice Keywords: ??Web Integrated Solutions??). Thank you for choosing FedEx as a shipping solution, FedEx Web Integrated Solutions Technical Support Group Included: Web Integrated Solutions Label Certification Cover Sheet (See attached file: WIS Label Cover Sheet.doc
  10. Can anyone please tell me how I would enable Home and Express shipping methods on this module. The default I think is Ground because that is what gets printed on the labels and it is working perfectly fine. I just got an email from FedEx that said basically that I was approved on Step 1 but I needed to send them Shipping labels of all Home, Express, and Ground delivery scenarios and not only the scenarios I would need for my site ( which would be Ground by the way). How would I achieve that? Please help. Here is what Fedex told me to do: Web Integrated Solutions Customer Congratulations! The FedEx WIS Certification Team has approved your previously submitted operating scenario. The final step in the process is the highly specific and detailed ??Label Evaluation??. Previously, test-shipping scenarios were provided and by this point you should have created the associated test shipping labels in preparation for evaluation. Reminder: You only had to create test labels for the specific services that are applicable to your situation. The FedEx Ground and Home Delivery label evaluation team requires 5 test labels for each scenario, while the Express team requires only 1 label per test case. These labels will be evaluated for compliancy against FedEx regulatory standards to ensure no delivery service interruptions occur once your packages enter the FedEx operational network. The utmost care and preparation must be made on your part to ensure that these labels are generated according official FedEx label specifications, which can be located at the following url: http://www.fedex.com/us/solutions/wis/pdf/...bels.pdf?link=4 Pay particular attention to print quality and accidental enlargement/shrinkage of labels (i.e. scaling). These are the top two reasons why labels do not pass the label certification process. Once received, the WIS Certification team will provide evaluation results within 5 business days. Attached to this email is a ??Label Certification Cover Sheet?? which contains the specific address information for each of our certification teams. This cover sheet MUST be included with each packet of shipping labels that you send to the FedEx Label Certification Teams for evaluation. This may require you to print and populate the cover sheet multiple times (one for each packet). Failure to include this cover sheet and failure to populate for all fields on the cover sheet, will significantly delay your certification timeline. If you have any additional questions or encounter any technical difficulties/issues, please visit the FedEx Web Integrated Solutions website (http://www.fedex.com/us/solutions/wis ) and review our technical and F.A.Q. (Frequently Asked Questions) section. You may also wish to contact the Web Solutions Support Team via email, [email protected] or phone, 1-877-339-2774 (Voice Keywords: ??Web Integrated Solutions??). Thank you for choosing FedEx as a shipping solution, FedEx Web Integrated Solutions Technical Support Group Included: Web Integrated Solutions Label Certification Cover Sheet (See attached file: WIS Label Cover Sheet.doc
×
×
  • Create New...