Page 5 of 102 FirstFirst ... 345671555 ... LastLast
Results 41 to 50 of 1019
  1. #41
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    Default Re: Super Orders v3.0 Support Thread

    Rizla is not the only one.

    I too have lost the Store_Name but have yet to discern why.

    SO3 was the last mod I installed and Store_Name was definitely there beforehand as it appears in various test emails.

    One thing to note is that after running the SO3 uninstall.sql for previous versions, I also had to run the uninstall.sql from SO48a due to an error message (substance since forgotten) received from SO3 install.sql.

    I wonder if others have experienced problems with the uninstall.sqls.

  2. #42
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by dw08gm View Post
    Rizla is not the only one.

    I too have lost the Store_Name but have yet to discern why.

    SO3 was the last mod I installed and Store_Name was definitely there beforehand as it appears in various test emails.

    One thing to note is that after running the SO3 uninstall.sql for previous versions, I also had to run the uninstall.sql from SO48a due to an error message (substance since forgotten) received from SO3 install.sql.

    I wonder if others have experienced problems with the uninstall.sqls.
    Not sure why you ran either of the uninstall scripts to upgrade.. Based on your post here it sounds as if you did not follow the instructions in the readme for upgrading your Super Orders install:

    From the readme:
    Upgrade from Rev47 & Later Versions (up to and including v1.3.9)

    1. Unzip the package contents to a temp directory
    2. Rename all of the YOUR_ADMIN_FOLDER and YOUR_TEMPLATE folders to match the name of your admin and template folders respectively.. Let me repeat this as this is the one step in module installs that most OFTEN gets overlooked/missed
      Rename all of the YOUR_ADMIN_FOLDER and YOUR_TEMPLATE folders to match the name of YOUR admin and template folders respectively
    3. FTP the contents of [temp directory]/1_Install_Files into the ROOT of your Zen Cart installation (i.e. your "/catalog" folder). The files are already arranged following the Zen Cart folder structure.
    4. FTP the contents of [temp directory]/2_Required_Core_Edits into the root of your Zen Cart. installation (i.e. your "/catalog" folder). The files are already arranged following the Zen Cart folder structure.

      As with ANY module, any files which override existing cart files should be merged using a tool like Winmerge or Beyond Compare before you install the module.

      Because these are core files, they have been separated. If you have installed any mods which make changes to the files in this folder, you will need to use a tool like Winmerge or Beyond Compare to incorporate those changes into these files.
    5. Run the super_orders_upgrade.sql using the "SQL Query Executor" tool in the Admin (Tools > Install SQL Patches)
    IF you are upgrading from a prior version of Super Orders and you run the uninstall script to perform an UPGRADE, you will DELETE ALL of the values in the following tables:

    • so_payments;
    • so_payment_types;
    • so_purchase_orders;
    • so_refunds;
    • payment_purchase_order;
    • payment_check;
    • payment_check_balance;

    This is why we created an upgrade script so that users of prior versions of Super Orders would not lose their previous Super Orders data in the upgrade.. So I'm a little puzzled why you chose to run the two uninstall scripts instead.

    (BTW upgrading in the manner in which you've done it STILL wouldn't cause the issue you are reporting as NONE of the Super Orders scripts affects the STORE_NAME configuration_key value..)

    With regards to your STORE_NAME value being missing from the configuration tables, something else is going on here.. There were FOUR of us testing Super Orders prior to it's release, and NOT ONCE did we ever have this issue.. I did MANY test upgrades, test installs, and NOT ONCE did I ever wipe out my store name or any other values in the configuration table..

    I cannot replicate this AT ALL..
    Last edited by DivaVocals; 29 Dec 2010 at 05:14 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #43
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v3.0 Support Thread

    I want this to to be clear for others reading this thread that SOMETHING ELSE has to be going on here..

    There is NOTHING in the install, uninstall, or upgrade scripts that will remove ANY values from the configuration tables other than the values which ONLY affect Super Orders.. One of those affected values IS NOT "STORE_NAME".

    Script to uninstall Super Orders v3.0 - Note there is NO reference to the configuration_key STORE_NAME
    Code:
    -- EDIT EXISTING TABLES
    ALTER TABLE `orders` 
        DROP date_completed,
        DROP date_cancelled,
        DROP balance_due;
    
    ALTER TABLE `orders`
        DROP `split_from_order`,
        DROP `is_parent`;
    
    -- DROP TABLES
    DROP TABLE IF EXISTS so_payments;
    DROP TABLE IF EXISTS so_payment_types;
    DROP TABLE IF EXISTS so_purchase_orders;
    DROP TABLE IF EXISTS so_refunds;
    DROP TABLE IF EXISTS payment_purchase_order;
    DROP TABLE IF EXISTS payment_check;
    DROP TABLE IF EXISTS payment_check_balance;
    
    -- Store Phone and Fax numbers
    --comment out if you want to keep these values
    DELETE FROM configuration WHERE configuration_key = 'STORE_FAX';
    DELETE FROM configuration WHERE configuration_key = 'STORE_PHONE';
    
    -- Purchase Order payment module configs
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_STATUS';
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_PAYTO';
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_SORT_ORDER';
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_ZONE';
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_ORDER_STATUS_ID';
    
    -- Super Orders configuration group
    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4 
    FROM configuration_group
    WHERE configuration_group_title= 'Super Orders';
    DELETE FROM configuration WHERE configuration_group_id = @t4;
    DELETE FROM configuration_group WHERE configuration_group_id =  @t4;
    Prior Version Uninstall Script - Note there is NO reference to the configuration_key STORE_NAME
    Code:
    -- EDIT EXISTING TABLES
    ALTER TABLE orders DROP date_completed;
    ALTER TABLE orders DROP date_cancelled;
    ALTER TABLE orders DROP balance_due;
    
    -- DROP TABLES
    DROP TABLE IF EXISTS customers_admin_notes;
    DROP TABLE IF EXISTS so_payments;
    DROP TABLE IF EXISTS so_payment_types;
    DROP TABLE IF EXISTS so_purchase_orders;
    DROP TABLE IF EXISTS so_refunds;
    DROP TABLE IF EXISTS payment_purchase_order;
    DROP TABLE IF EXISTS payment_check;
    DROP TABLE IF EXISTS payment_check_balance;
    
    -- Store Phone and Fax numbers
    --comment out if you want to keep these valuse
    DELETE FROM configuration WHERE configuration_key = 'STORE_FAX';
    DELETE FROM configuration WHERE configuration_key = 'STORE_PHONE';
    
    -- Purchase Order payment module configs
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_STATUS';
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_PAYTO';
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_SORT_ORDER';
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_ZONE';
    DELETE FROM configuration WHERE configuration_key = 'MODULE_PAYMENT_PURCHASE_ORDER_ORDER_STATUS_ID';
    
    -- Super Orders configuration group
    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4 
    FROM configuration_group
    WHERE configuration_group_title= 'Super Orders';
    DELETE FROM configuration WHERE configuration_group_id = @t4;
    DELETE FROM configuration_group WHERE configuration_group_id =  @t4;
    Super Orders v3.0 upgrade Script - Note there is NO reference to the configuration_key STORE_NAME
    Code:
    -- DROP OBSOLETE TABLES --
    DROP TABLE IF EXISTS customers_admin_notes;
    
    -- --------------------------------------------------------
    
    -- ADDITIONAL DEFAULT PAYMENT TYPES --
        INSERT INTO so_payment_types VALUES (NULL, 1, 'WU', 'Western Union');
        INSERT INTO so_payment_types VALUES (NULL, 1, 'REF', 'Refund');
        INSERT INTO so_payment_types VALUES (NULL, 1, 'SOLO', 'Solo');
        INSERT INTO so_payment_types VALUES (NULL, 1, 'MAES', 'Maestro');
        INSERT INTO so_payment_types VALUES (NULL, 1, 'JCB', 'JCB');
    
    -- --------------------------------------------------------
    
    -- UPDATED SPLIT ORDERS SUPPORT --
    ALTER TABLE `orders` 
        ADD `split_from_order` INT DEFAULT '0' NOT NULL,
        ADD `is_parent` TINYINT (1) DEFAULT '1' NOT NULL;
    
    -- --------------------------------------------------------
    
    -- UPDATE SUPER ORDERS CONFIGURATION GROUP --
    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4 
    FROM configuration_group
    WHERE configuration_group_title= 'Super Orders';
    
    INSERT INTO configuration VALUES (NULL, 'Standard Packing Slips - Show  Images', 'PACKINGSLIP_IMAGES', 'Yes', 'Do you want to show product  images on the packing slip??', @t4, 61, now(), now(), NULL,  "zen_cfg_select_option(array('Yes', 'No'),");
    INSERT INTO configuration VALUES (NULL, 'Batch Form Printing - Printing  Menu', 'LCSD_PRINTING_MENU', '2', 'Select which printing menu to show on  the Super Orders Batch Form Printing page.<br />0=Traditional  Super Orders options<br />1=PDF packing slip printing  options<br />2=Both menus',  @t4, 65, now(), now(), NULL,  'zen_cfg_select_option(array(''0'', ''1'', ''2''),');
    INSERT INTO configuration VALUES (NULL, 'PDF Packing Slip - Header  Logo', 'LCSD_PACKING_LOGO_LARGE', 'packingslip_HeaderLogo.png','File  name of the image to show in the PDF packing slip header. Upload to  admin/images folder. For best output quality, the file dimensions should  be 252px X 82px.<br /><br />You should replace placeholder  image with your own logo. If you do not want to use a logo, you should  upload a transparent image to replace the placeholder logo. If you  delete the image name in this setting you will get errors when  generating PDF packing slips. Supports PNG & JPG files ONLY.',@t4,  70, now(), now(), NULL , NULL);
    INSERT INTO configuration VALUES (NULL, 'PDF Packing Slip - Small Logo',  'LCSD_PACKING_LOGO_SMALL', 'packingslip_SmallLogo.png', 'File name of  the image to show in the upper right corner of the PDF packing slip  shipping label. Upload to admin/images folder. For best output quality,  the file dimensions should be 192px X 64px.<br /><br />You  should replace placeholder image with your own logo.  If you do not want  to use a logo, you should upload a transparent image to replace the  placeholder logo. If you delete the image name in this setting you will  get errors when generating PDF packing slips. Supports PNG & JPG  files ONLY.',@t4, 75, now(), now(), NULL , NULL);
    INSERT INTO configuration VALUES (NULL, 'PDF Packing Slip - Show Store  Name on Packing Slip', 'LCSD_SHOW_STORE_NAME', 'True', 'Determines  whether or not the store name is included in the address block on the  PDF packing slip. If the store name is part of the header logo set this  to false.',  @t4, 80, now(), now(), NULL,  'zen_cfg_select_option(array(''True'', ''False''),');
    INSERT INTO configuration VALUES (NULL, 'PDF Packing Slip - Enable  Shipping Label', 'LCSD_SHOW_SHIPPING_LABEL', 'False', 'Determines  whether or not a pre-printed shipping label is included in a customer  address block on the packing slip so you don\’t have to process a  separate label report. If you are using a preprinted packing slips with a  peel off label – set this to true.',  @t4, 85, now(), now(), NULL,  'zen_cfg_select_option(array(''True'', ''False''),');
    -- SUPER ORDERS ADMIN FLAGS TO ADD SUPPORT FOR OTHER ADD-ONS
    INSERT INTO configuration VALUES (NULL, 'Edit Orders Module Switch',  'SO_EDIT_ORDERS_SWITCH', 'False', 'If you have Edit Orders v3.0 for Zen  Cart 1.3.9 module installed, set this option to TRUE to activate the  Edit Orders navigation buttons to work with Super  Orders.<br><br><strong><font color=red>YOU MUST  HAVE EDIT ORDERS INSTALLED TO USE THIS  FEATURE!!</font></strong><br><br>\(Activating  this flag without the required mod installed <strong>WILL CAUSE  ERRORS IN YOUR STORE!!!!</strong>\)<br><br>While we  have not specifically tested this switch with other Edit Orders modules  \(most notably the 1.5.x versions\), this switch should also work with  other versions of Edit Orders as well.', @t4, 180, now(), now(), NULL,  "zen_cfg_select_option(array('True', 'False'),");
    INSERT INTO configuration VALUES (NULL, 'FedEx Label Module Switch',  'SO_FEDEX_LABELS_SWITCH', 'False', 'If your have the Fedex Automated  Shipping Labels module installed, set this option to TRUE to activate it  to work with Super Orders<br><br><strong><font  color=red>YOU MUST HAVE FEDEX AUTOMATED SHIPPING LABELS INSTALLED TO  USE THIS  FEATURE!!</font></strong><br><br>\(Activating  this flag without the required mod installed <strong>WILL CAUSE  ERRORS IN YOUR STORE!!!!</strong>\)', @t4, 185, now(), now(),  NULL, "zen_cfg_select_option(array('True', 'False'),");
    INSERT INTO configuration VALUES (NULL, 'USPS Click-N-Ship Module  Switch', 'SO_USPS_CLICK_SWITCH', 'False', 'If your have the USPS  Click-N-Ship module installed, set this option to TRUE to activate it to  work with Super Orders<br><br><strong><font  color=red>YOU MUST HAVE USPS CLICK-N-SHIP INSTALLED TO USE THIS  FEATURE!!</font></strong><br><br>\(Activating  this flag without the required mod installed <strong>WILL CAUSE  ERRORS IN YOUR STORE!!!!</strong>\)', @t4, 190, now(), now(),  NULL, "zen_cfg_select_option(array('True', 'False'),");
    
    -- --------------------------------------------------------
    
    -- UPDATE TAX EXEMPTION CONFIGURATION VALUES
    SET @t4=0;
    SELECT (@t4:=configuration_key) as t4 
    FROM configuration
    WHERE configuration_key= 'FED_TAX_ID_NUMBER';
    UPDATE configuration SET configuration_title = 'Tax Exemption ID  Number', configuration_key = 'TAX_ID_NUMBER', configuration_value = '',  configuration_description = 'If your business or organization is tax  exempt, then you may have been issued a tax exmption ID number. Enter  the number here and the tax columns will not appear on the invoice and  the tax exemption ID number will also be displayed at the top of the  invoice.' 
    WHERE configuration_key = @t4;
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #44
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v3.0 Support Thread

    Super Orders v3.0 install Script - Note there is NO reference to the configuration_key STORE_NAME
    Code:
    -- EDIT EXISTING TABLES
    ALTER TABLE orders 
        ADD date_completed datetime default NULL,
        ADD date_cancelled datetime default NULL,
        ADD balance_due decimal(14,2) default NULL;
    
    -- --------------------------------------------------------
    
    -- SPLIT ORDERS SUPPORT
    ALTER TABLE `orders` 
        ADD `split_from_order` INT DEFAULT '0' NOT NULL,
        ADD `is_parent` TINYINT (1) DEFAULT '1' NOT NULL;
    
    -- --------------------------------------------------------
    
    -- SUPER ORDERS PAYMENTS SUPPORT
    CREATE TABLE so_payments (
      payment_id int(11) NOT NULL auto_increment,
      orders_id int(11) NOT NULL default '0',
      payment_number varchar(32) NOT NULL default '',
      payment_name varchar(40) NOT NULL default '',
      payment_amount decimal(14,2) NOT NULL default '0.00',
      payment_type varchar(20) NOT NULL default '',
      date_posted datetime NOT NULL default '0000-00-00 00:00:00',
      last_modified datetime NOT NULL default '0000-00-00 00:00:00',
      purchase_order_id int(11) NOT NULL default '0',
      PRIMARY KEY  (payment_id)
    ) TYPE=MyISAM ;
    
    -- --------------------------------------------------------
    
    CREATE TABLE so_purchase_orders (
      purchase_order_id int(11) NOT NULL auto_increment,
      orders_id int(11) NOT NULL default '0',
      po_number varchar(32) default NULL,
      date_posted datetime NOT NULL default '0000-00-00 00:00:00',
      last_modified datetime NOT NULL default '0000-00-00 00:00:00',
      PRIMARY KEY  (purchase_order_id)
    ) TYPE=MyISAM ;
    
    -- --------------------------------------------------------
    
    CREATE TABLE so_refunds (
      refund_id int(11) NOT NULL auto_increment,
      payment_id int(11) NOT NULL default '0',
      orders_id int(11) NOT NULL default '0',
      refund_number varchar(32) NOT NULL default '',
      refund_name varchar(40) NOT NULL default '',
      refund_amount decimal(14,2) NOT NULL default '0.00',
      refund_type varchar(4) NOT NULL default 'REF',
      date_posted datetime NOT NULL default '0000-00-00 00:00:00',
      last_modified datetime NOT NULL default '0000-00-00 00:00:00',
      PRIMARY KEY  (refund_id),
      KEY refund_id (refund_id)
    ) TYPE=MyISAM ;
    
    -- --------------------------------------------------------
    
    CREATE TABLE so_payment_types (
      payment_type_id int(11) NOT NULL auto_increment,
      language_id int(11) NOT NULL default '1',
      payment_type_code varchar(4) NOT NULL default '',
      payment_type_full varchar(20) NOT NULL default '',
      PRIMARY KEY  (payment_type_id),
      UNIQUE KEY type_code (payment_type_code),
      KEY type_code_2 (payment_type_code)
    ) TYPE=MyISAM;
    
    -- --------------------------------------------------------
    
    -- CREATE DEFAULT SUPER ORDERS PAYMENT TYPES
    INSERT INTO so_payment_types VALUES (NULL, 1, 'CA', 'Cash');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'CK', 'Check');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'MO', 'Money Order');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'WU', 'Western Union');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'ADJ', 'Adjustment');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'REF', 'Refund');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'CC', 'Credit Card');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'MC', 'MasterCard');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'VISA', 'Visa');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'AMEX', 'American Express');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'DISC', 'Discover');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'DINE', 'Diners Club');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'SOLO', 'Solo');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'MAES', 'Maestro');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'JCB', 'JCB');
    
    -- --------------------------------------------------------
    
    -- ADD STORE PHONE AND FAX NUMBERS --
    INSERT INTO configuration VALUES (NULL, 'Store Fax', 'STORE_FAX',   '555-555-1212', 'Enter the fax number for your store.<br>You can   call upon this by using the define   <strong>STORE_FAX</strong>.', 1, 4, now(), now(), NULL,   NULL);
    INSERT INTO configuration VALUES (NULL, 'Store Phone', 'STORE_PHONE',   '555-555-1212', 'Enter the phone number for your store.<br>You  can  call upon this by using the define   <strong>STORE_PHONE</strong>.', 1, 4, now(), now(), NULL,   NULL);
    
    -- --------------------------------------------------------
    
    -- ADD PURCHASE ORDER PAYMENT MODULE CONFIGURATION VALUES --
    INSERT INTO configuration VALUES (NULL, 'Enable Purchase Order Module',   'MODULE_PAYMENT_PURCHASE_ORDER_STATUS', 'FALSE', 'Do you want to accept   Purchase Order payments?', 6, 1, now(), now(), NULL,   'zen_cfg_select_option(array(\'True\', \'False\'), ');
    INSERT INTO configuration VALUES (NULL, 'Make payable to:',   'MODULE_PAYMENT_PURCHASE_ORDER_PAYTO', 'YOUR COMPANY NAME', 'Who should   payments be made payable to?', 6, 2, now(), now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Sort order of display.',   'MODULE_PAYMENT_PURCHASE_ORDER_SORT_ORDER', '0', 'Sort order of  display.  Lowest is displayed first.', 6, 4, now(), now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Payment Zone',   'MODULE_PAYMENT_PURCHASE_ORDER_ZONE', '0', 'If a zone is selected, only   enable this payment method for that zone.', 6, 5, now(), now(),   'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes(');
    INSERT INTO configuration VALUES (NULL, 'Set Order Status',   'MODULE_PAYMENT_PURCHASE_ORDER_ORDER_STATUS_ID', '2', 'Set the status  of  orders made with this payment module to this value', 6, 6, now(),   now(), 'zen_get_order_status_name',   'zen_cfg_pull_down_order_statuses(');
    
    -- --------------------------------------------------------
    
    -- CREATE SUPER ORDERS CONFIGURATION GROUP --
    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4 
    FROM configuration_group
    WHERE configuration_group_title= 'Super Orders';
    DELETE FROM configuration WHERE configuration_group_id = @t4;
    DELETE FROM configuration_group WHERE configuration_group_id = @t4;
    
    INSERT INTO configuration_group VALUES (NULL, 'Super Orders', 'Settings for Super Order Features', '100', '1');
    UPDATE configuration_group SET sort_order = last_insert_id() WHERE configuration_group_id = last_insert_id();
    
    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4 
    FROM configuration_group
    WHERE configuration_group_title= 'Super Orders';
    
    -- ADD VALUES TO SUPER ORDERS CONFIGURATION GROUP (Admin > Configuration > Super Orders) --
    INSERT INTO configuration VALUES (NULL, 'Auto Status - Payment',   'AUTO_STATUS_PAYMENT', '2', 'Number of the order status assigned when a   payment (<strong>not</strong> attached to a purchase  order)  is added to the payment data.', @t4, 5, now(), now(),   'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses(');
    INSERT INTO configuration VALUES (NULL, 'Auto Status - P.O. Payment',   'AUTO_STATUS_PO_PAYMENT', '2', 'Number of the order status assigned  when  a payment <strong>attached to a purchase  order</strong> is  added to the payment data.', @t4, 10, now(),  now(),  'zen_get_order_status_name',  'zen_cfg_pull_down_order_statuses(');
    INSERT INTO configuration VALUES (NULL, 'Auto Status - Purchase Order',   'AUTO_STATUS_PO', '2', 'Number of the status assigned to an order when a   purchase order is added to the payment data.', @t4, 15, now(), now(),   'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses(');
    INSERT INTO configuration VALUES (NULL, 'Auto Status - Refund',   'AUTO_STATUS_REFUND', '2', 'Number of the order status assigned when a   refund is added to the payment data.', @t4, 20, now(), now(),   'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses(');
    INSERT INTO configuration VALUES (NULL, 'Auto Comments - Payment',   'AUTO_COMMENTS_PAYMENT', 'Payment received in our office. Payment ID:   %s', 'You''ll have the option of adding these pre-configured comments  to  an order when a payment is entered.  You can attach the payment  number  to the comments by typing <strong>%s</strong>.',  @t4, 25,  now(), now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Auto Comments - P.O. Payment',   'AUTO_COMMENTS_PO_PAYMENT', 'Payment on purchase order received in our   office. Payment ID: %s', 'You will have the option of adding these   pre-configured comments to an order when a purchase order payment is   entered.  You can attach the payment number to the comments by typing   <strong>%s</strong>.', @t4, 30, now(), now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Auto Comments - Purchase   Order', 'AUTO_COMMENTS_PO', 'Purchase Order #%s received in our  office',  'You will have the option of adding these pre-configured  comments to an  order when a purchase order is entered.  You can attach  the payment  number to the comments by typing  <strong>%s</strong>.', @t4,  35, now(), now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Auto Comments - Refund',   'AUTO_COMMENTS_REFUND', 'Refund #%s has been issued from our office.',   'You will have the option of adding these pre-configured comments to an   order when a refund is entered.  You can attach the refund number to  the  comments by typing <strong>%s</strong>.', @t4, 40,  now(),  now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Tax Exemption ID Number',   'TAX_ID_NUMBER', '', 'If your business or organization is tax exempt,   then you may have been issued a tax exmption ID number. Enter the  number  here and the tax columns will not appear on the invoice and the  tax  exemption ID number will also be displayed at the top of the  invoice.',  @t4, 45, now(), now(), NULL , NULL);
    INSERT INTO configuration VALUES (NULL, 'Closed Status - "Cancelled"',   'STATUS_ORDER_CANCELLED', '0', 'Insert the order status ID # you would   like to assign to an order when you press the special "Cancelled!"   button on super_orders.php.<p>If you do not have a "cancel"   status, or do not want assign one automatically, choose   <strong>default</strong> and this option will be   ignored.<p><strong>You cannot attach comments or notify the   customer using this option.</strong>', @t4, 50, now(), now(),   'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses(');
    INSERT INTO configuration VALUES (NULL, 'Closed Status - "Completed"',   'STATUS_ORDER_COMPLETED', '0', 'Insert the order status ID # you would   like to assign to an order when you press the special "Completed!"   button on super_orders.php.<p>If you do not have a "complete"   status, or do not want assign one automatically, choose   <strong>default</strong> and this option will be   ignored.<p><strong>You cannot attach comments or notify the   customer using this option.</strong>', @t4, 55, now(), now(),   'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses(');
    INSERT INTO configuration VALUES (NULL, 'Closed Status - "Reopened"',   'STATUS_ORDER_REOPEN', '0', 'Insert the order status ID # you would  like  to assign to an order when you undo the cancelled/completed status  of  an order.<p>If you do not have a "reopened" status, or do not  want  assign one automatically, choose  <strong>default</strong>  and this option will be  ignored.<p><strong>You cannot attach  comments or notify the  customer using this option.</strong>',  @t4, 60, now(), now(),  'zen_get_order_status_name',  'zen_cfg_pull_down_order_statuses(');
    INSERT INTO configuration VALUES (NULL, 'Standard Packing Slips - Show   Images', 'PACKINGSLIP_IMAGES', 'Yes', 'Do you want to show product   images on the packing slip??', @t4, 61, now(), now(), NULL,   "zen_cfg_select_option(array('Yes', 'No'),");
    INSERT INTO configuration VALUES (NULL, 'Batch Form Printing - Printing   Menu', 'LCSD_PRINTING_MENU', '2', 'Select which printing menu to show  on  the Super Orders Batch Form Printing page.<br />0=Traditional   Super Orders options<br />1=PDF packing slip printing   options<br />2=Both menus',  @t4, 65, now(), now(), NULL,   'zen_cfg_select_option(array(''0'', ''1'', ''2''),');
    INSERT INTO configuration VALUES (NULL, 'PDF Packing Slip - Header   Logo', 'LCSD_PACKING_LOGO_LARGE', 'packingslip_HeaderLogo.png','File   name of the image to show in the PDF packing slip header. Upload to   admin/images folder. For best output quality, the file dimensions  should  be 252px X 82px.<br /><br />You should replace  placeholder  image with your own logo. If you do not want to use a logo,  you should  upload a transparent image to replace the placeholder logo.  If you  delete the image name in this setting you will get errors when   generating PDF packing slips. Supports PNG & JPG files ONLY.',@t4,   70, now(), now(), NULL , NULL);
    INSERT INTO configuration VALUES (NULL, 'PDF Packing Slip - Small Logo',   'LCSD_PACKING_LOGO_SMALL', 'packingslip_SmallLogo.png', 'File name of   the image to show in the upper right corner of the PDF packing slip   shipping label. Upload to admin/images folder. For best output quality,   the file dimensions should be 192px X 64px.<br /><br />You   should replace placeholder image with your own logo.  If you do not  want  to use a logo, you should upload a transparent image to replace  the  placeholder logo. If you delete the image name in this setting you  will  get errors when generating PDF packing slips. Supports PNG &  JPG  files ONLY.',@t4, 75, now(), now(), NULL , NULL);
    INSERT INTO configuration VALUES (NULL, 'PDF Packing Slip - Show Store   Name on Packing Slip', 'LCSD_SHOW_STORE_NAME', 'True', 'Determines   whether or not the store name is included in the address block on the   PDF packing slip. If the store name is part of the header logo set this   to false.',  @t4, 80, now(), now(), NULL,   'zen_cfg_select_option(array(''True'', ''False''),');
    INSERT INTO configuration VALUES (NULL, 'PDF Packing Slip - Enable   Shipping Label', 'LCSD_SHOW_SHIPPING_LABEL', 'False', 'Determines   whether or not a pre-printed shipping label is included in a customer   address block on the packing slip so you don\’t have to process a   separate label report. If you are using a preprinted packing slips with  a  peel off label – set this to true.',  @t4, 85, now(), now(), NULL,   'zen_cfg_select_option(array(''True'', ''False''),');
    -- SUPER ORDERS ADMIN FLAGS TO ADD SUPPORT FOR OTHER ADD-ONS
    INSERT INTO configuration VALUES (NULL, 'Edit Orders Module Switch',   'SO_EDIT_ORDERS_SWITCH', 'False', 'If you have Edit Orders v3.0 for Zen   Cart 1.3.9 module installed, set this option to TRUE to activate the   Edit Orders navigation buttons to work with Super   Orders.<br><br><strong><font color=red>YOU MUST   HAVE EDIT ORDERS INSTALLED TO USE THIS   FEATURE!!</font></strong><br><br>\(Activating   this flag without the required mod installed <strong>WILL CAUSE   ERRORS IN YOUR STORE!!!!</strong>\)<br><br>While we   have not specifically tested this switch with other Edit Orders modules   \(most notably the 1.5.x versions\), this switch should also work with   other versions of Edit Orders as well.', @t4, 180, now(), now(), NULL,   "zen_cfg_select_option(array('True', 'False'),");
    INSERT INTO configuration VALUES (NULL, 'FedEx Label Module Switch',   'SO_FEDEX_LABELS_SWITCH', 'False', 'If your have the Fedex Automated   Shipping Labels module installed, set this option to TRUE to activate  it  to work with Super Orders<br><br><strong><font   color=red>YOU MUST HAVE FEDEX AUTOMATED SHIPPING LABELS INSTALLED TO   USE THIS   FEATURE!!</font></strong><br><br>\(Activating   this flag without the required mod installed <strong>WILL CAUSE   ERRORS IN YOUR STORE!!!!</strong>\)', @t4, 185, now(), now(),   NULL, "zen_cfg_select_option(array('True', 'False'),");
    INSERT INTO configuration VALUES (NULL, 'USPS Click-N-Ship Module   Switch', 'SO_USPS_CLICK_SWITCH', 'False', 'If your have the USPS   Click-N-Ship module installed, set this option to TRUE to activate it  to  work with Super Orders<br><br><strong><font   color=red>YOU MUST HAVE USPS CLICK-N-SHIP INSTALLED TO USE THIS   FEATURE!!</font></strong><br><br>\(Activating   this flag without the required mod installed <strong>WILL CAUSE   ERRORS IN YOUR STORE!!!!</strong>\)', @t4, 190, now(), now(),   NULL, "zen_cfg_select_option(array('True', 'False'),");
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #45
    Join Date
    Dec 2010
    Posts
    1
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    We just downloaded the contribution, but couldn't get it to work.... the file lcsd_merged_packing_slips.php doesn't have a closing tag, and if that file is in place the entire admin area doesn't work.

    I tried to unzip using different tools to see if the file may have been corrupted, but no matter how I unzip the file appears to be truncated.

    Any ideas?

  6. #46
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by propel View Post
    We just downloaded the contribution, but couldn't get it to work.... the file lcsd_merged_packing_slips.php doesn't have a closing tag, and if that file is in place the entire admin area doesn't work.

    I tried to unzip using different tools to see if the file may have been corrupted, but no matter how I unzip the file appears to be truncated.

    Any ideas?
    lcsd_merged_packing_slips.php doesn't need the closing ?> as has been posted repeatedly by the Zen Cart admins..

    Chances are lcsd_merged_packing_slips.php is generating an error because there is some file it needs that was not loaded properly..

    Based on what I THINK you mean by "entire admin doesn't work" I assume you mean that the admin goes blank when the lcsd_merged_packing_slips.php file is in place?? (It helps to post EXACTLY what happens so I don't have to interpret) If my assumption is correct, you need to post what the error log file that would be generated when you get the blank page says.. (log files would be located in your "cache" folder) Once we know what the error is, then I can guide you on resolving it..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #47
    Join Date
    Sep 2010
    Posts
    448
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Diva
    I am NOT in any way dissing your great mod, I love it.
    After the DB restore I went ahead and ran the SQL and all worked this time.

    The DB field that REPLACED STORE_NAME was tax excemption number.

    The only place I see reference to it is here (from the SQL install)

    INSERT INTO configuration VALUES (NULL, 'Tax Exemption ID Number', 'TAX_ID_NUMBER', '', 'If your business or organization is tax exempt, then you may have been issued a tax exmption ID number. Enter the number here and the tax columns will not appear on the invoice and the tax exemption ID number will also be displayed at the top of the invoice.', @t4, 45, now(), now(), NULL , NULL);

    Don't know why it all went well on my 'Local' server (windows and xamp) and not on the remote (Linux)

    So, SO3 now works for me on the remote and I also went ahead and installed 'Edit Orders'

    I too had to uninstall both Edit Orders and SO3 (SQL) and re-install to get them working.

    They do now appear to both work, ecxept the print button opens a blank page, but I can live with that.

    So there is two of us that had the same problem for 'some' reason. And I know my explanation here is of little help to you as a programmer... sorry!

    Rizla

  8. #48
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by Rizla View Post
    Diva
    I am NOT in any way dissing your great mod, I love it.
    After the DB restore I went ahead and ran the SQL and all worked this time.
    Not what I was implying at all.. Simply just wanted to make it clear that the SQL files to install, uninstall, or upgrade Super Orders cannot be the cause of what is happening in your store if they are run unedited as described in the Super Orders readme.. It's impossible to troubleshoot issues that I cannot replicate..


    Quote Originally Posted by Rizla View Post
    The DB field that REPLACED STORE_NAME was tax excemption number.

    The only place I see reference to it is here (from the SQL install)

    INSERT INTO configuration VALUES (NULL, 'Tax Exemption ID Number', 'TAX_ID_NUMBER', '', 'If your business or organization is tax exempt, then you may have been issued a tax exmption ID number. Enter the number here and the tax columns will not appear on the invoice and the tax exemption ID number will also be displayed at the top of the invoice.', @t4, 45, now(), now(), NULL , NULL);
    Again, this bit of SQL would not replace the STORE_NAME in the configuration table.. Unless it was run in a way other than how the readme says to run the upgrade script.. And honestly since your post I have tried to run it in non-standard ways to try and make this happen and I cannot get the same result..


    Quote Originally Posted by Rizla View Post
    Don't know why it all went well on my 'Local' server (windows and xamp) and not on the remote (Linux)

    So, SO3 now works for me on the remote and I also went ahead and installed 'Edit Orders'

    I too had to uninstall both Edit Orders and SO3 (SQL) and re-install to get them working.
    I can't say either since I cannot see your store file.. The issues you reported are not normal if Super Orders is installed following the instructions in the readme.. We stress tested to DEATH not only a fresh install but the upgrade and uninstall scripts as well..


    Quote Originally Posted by Rizla View Post
    They do now appear to both work, ecxept the print button opens a blank page, but I can live with that.

    So there is two of us that had the same problem for 'some' reason. And I know my explanation here is of little help to you as a programmer... sorry!

    Rizla
    The print button opens super_data_sheet.php. If you are getting a blank page then it's likely that something is still installed wrong or this file was corrupted in your upload to your store.. The error logs in the "cache" folder will tell you exactly what error is occurring when you click the print button..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #49
    Join Date
    Dec 2010
    Posts
    3
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Hi,

    This is not going to be a solution! but more an addition. Another problem.

    I have installed super_orders 3.0 and edit_orders 3.02 recently on a fresh insytallation of Zencart 1.3.9h. It looks likes it all works, except for the two buttons "Batch Status Update" and "Batch Form Print". When I click either one of them, the screen goes blank.

    I use Windows7 64-bit, WampServer2.0 (out of the box), ZenCart 1.3.9h. I have installed the Dutch Language pack

    I've gone through this thread to see if I could find a solution for this, but I don't come across this part.

    Any idea where to look for clues? If more info is required, please let me know

    Greetings,
    Marty Jansen

  10. #50
    Join Date
    Dec 2010
    Posts
    3
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Hi,

    just looked up some debug information that seems to be standard in version 1.3.9. There are errors in the cache folder. For "Batch Status Update" and "Batch Form Print" it had to do with the same error.
    [30-Dec-2010 10:21:17] PHP Fatal error: Call to undefined function current_countries_array() in C:\wamp\www\shop\_admin\super_batch_forms.php on line 51

    [30-Dec-2010 10:09:29] PHP Fatal error: Call to undefined function current_countries_array() in C:\wamp\www\shop\_admin\super_batch_status.php on line 51

    Making line 51 a comment solves part of the problem. It will show up the page!!!! Everything seems to be working except for the dropdown list with countries, this in now empty.

    Not a big problem for me, but for others this is not how it should be.

    Greetings,
    Marty

 

 
Page 5 of 102 FirstFirst ... 345671555 ... LastLast

Similar Threads

  1. v150 Edit Orders v4.0 Support Thread
    By DivaVocals in forum Addon Admin Tools
    Replies: 1877
    Last Post: 6 May 2025, 05:10 PM
  2. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 AM
  3. Edit Orders v3.0 for ZC 1.3.9 [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 656
    Last Post: 18 Apr 2016, 06:28 PM
  4. OLD Super Orders 2.0 (See v3.0 thread instead)
    By BlindSide in forum All Other Contributions/Addons
    Replies: 2019
    Last Post: 17 Jan 2012, 05:43 AM
  5. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR