Page 47 of 67 FirstFirst ... 37454647484957 ... LastLast
Results 461 to 470 of 667
  1. #461
    Join Date
    Apr 2008
    Location
    internet
    Posts
    41
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    BUG FIXES on quick_updates-v2.05

    fixes the column missing error when display descriptions are disabled and edit description is enabled
    find
    admin/quick_updates.php
    Code:
    if(QUICKUPDATES_MODIFY_DESCRIPTION == 'true')
    replace with
    Code:
    if(QUICKUPDATES_MODIFY_DESCRIPTION == 'true'||QUICKUPDATES_MODIFY_DESCRIPTION_POPUP == 'true')
    SQL fix to enable 2 decimal zeros (1.00) and not 4 decimal zeros (1.0000)
    SQL:
    Code:
    ALTER TABLE `zen_products` CHANGE `products_price` `products_price` DECIMAL( 15, 2 ) NOT NULL DEFAULT '0.00';
    
    ALTER TABLE `zen_products` CHANGE `products_price_sorter` `products_price_sorter` DECIMAL( 15, 2 ) NOT NULL DEFAULT '0.00'

  2. #462
    Join Date
    Apr 2008
    Location
    internet
    Posts
    41
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    add weight unit to weight heading
    admin/quick_updates.php
    find
    Code:
    echo zen_quickupdates_table_head('p.products_weight', TABLE_HEADING_WEIGHT );
    replace with
    Code:
    echo zen_quickupdates_table_head('p.products_weight', TABLE_HEADING_WEIGHT .' ('. TEXT_PRODUCT_WEIGHT_UNIT .')');

  3. #463
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    red flag URGENT: Quick Updates becomes a blank page

    Hi,

    Our Quick Updates has recently become a blank page for no reason. Please help.
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

  4. #464
    Join Date
    Apr 2008
    Location
    internet
    Posts
    41
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    Fix description popups breakign the layout as it deplays content from the descriptions on the page.

    admin/quick_updates.php
    find
    Code:
          
    if(QUICKUPDATES_MODIFY_DESCRIPTION_POPUP == 'true') {
          //echo '<td class="smallText productsDescription">'
            echo '<a href="javascript:textEditFieldID=\'description_' . $products->fields['products_id'] . '\';popupWindow(\'' . zen_href_link(FILENAME_POPUP_TEXT_EDIT) . '\');">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif', TEXT_HTML_EDIT_DESC) . '<span class="cssPopup">' . stripslashes($products->fields['products_description']) . '</span></a>';
    replace with
    Code:
    		if(QUICKUPDATES_MODIFY_DESCRIPTION_POPUP == 'true') {
    				echo '<a href="javascript:textEditFieldID=\'description_' . $products->fields['products_id'] . '\';popupWindow(\'' . zen_href_link(FILENAME_POPUP_TEXT_EDIT) . '\');">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif', TEXT_HTML_EDIT_DESC) . '</a>';
    		}

  5. #465
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    red flag Re: Quick Updates 1.3 ?

    Quote Originally Posted by xcooling View Post
    Fix description popups breakign the layout as it deplays content from the descriptions on the page.

    admin/quick_updates.php
    find
    Code:
          
    if(QUICKUPDATES_MODIFY_DESCRIPTION_POPUP == 'true') {
          //echo '<td class="smallText productsDescription">'
            echo '<a href="javascript:textEditFieldID=\'description_' . $products->fields['products_id'] . '\';popupWindow(\'' . zen_href_link(FILENAME_POPUP_TEXT_EDIT) . '\');">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif', TEXT_HTML_EDIT_DESC) . '<span class="cssPopup">' . stripslashes($products->fields['products_description']) . '</span></a>';
    replace with
    Code:
    		if(QUICKUPDATES_MODIFY_DESCRIPTION_POPUP == 'true') {
    				echo '<a href="javascript:textEditFieldID=\'description_' . $products->fields['products_id'] . '\';popupWindow(\'' . zen_href_link(FILENAME_POPUP_TEXT_EDIT) . '\');">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif', TEXT_HTML_EDIT_DESC) . '</a>';
    		}

    This does not solve the problem. Still a blank page.
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

  6. #466
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by xcooling View Post
    [B][SIZE="6"]SQL fix to enable 2 decimal zeros (1.00) and not 4 decimal zeros (1.0000)
    SQL:
    Code:
    ALTER TABLE `zen_products` CHANGE `products_price` `products_price` DECIMAL( 15, 2 ) NOT NULL DEFAULT '0.00';
    
    ALTER TABLE `zen_products` CHANGE `products_price_sorter` `products_price_sorter` DECIMAL( 15, 2 ) NOT NULL DEFAULT '0.00'
    Please note that this is not related to quick updates, and these changes may have undesired effects on other parts of the Zen Cart script!
    Last edited by paulm; 12 Nov 2009 at 05:57 PM.

  7. #467
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: URGENT: Quick Updates becomes a blank page

    Quote Originally Posted by dealbyethan.com View Post
    Hi,

    Our Quick Updates has recently become a blank page for no reason. Please help.
    Do you happen to know which version (or is it "what version" ?) you are using?

    I would edit admin/quick_updates.php and after:
    PHP Code:
    require('includes/application_top.php'); 
    Add:
    PHP Code:
    // Report simple running errors
    error_reporting(E_ERROR E_WARNING E_PARSE);
    ini_set('display_errors'1); 
    Hopefully a meaningful error will show after adding those lines.
    Last edited by paulm; 12 Nov 2009 at 06:00 PM.

  8. #468
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by a_berezin View Post
    Sure. I did it in another script - the same, which saves more time :-) I am not yet ready to put it to the public.
    Do you have an ETA for the public release?

  9. #469
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    red flag Re: URGENT: Quick Updates becomes a blank page

    Quote Originally Posted by paulm View Post
    Do you happen to know which version (or is it "what version" ?) you are using?

    I would edit admin/quick_updates.php and after:
    PHP Code:
    require('includes/application_top.php'); 
    Add:
    PHP Code:
    // Report simple running errors
    error_reporting(E_ERROR E_WARNING E_PARSE);
    ini_set('display_errors'1); 
    Hopefully a meaningful error will show after adding those lines.

    Hi,

    I am not sure what version I am using. Could be 2.03 according to the admin/quick_updates.php file. I know I haven't updated it for a while. I did what you suggested but with no luck. It's still a blank page. I don't understand as I have not done anything and it just suddenly stop working. Please help.
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

  10. #470
    Join Date
    Sep 2005
    Location
    New Zealand
    Posts
    92
    Plugin Contributions
    0

    Default How do I launch Quick Update

    I have installed version Quick Update 2.05 and can see the 'Quick Updates' in configuration but can not see where to actually launch the software. There is no menu option in either 'Tools' or 'Extras'.

    The installation process was error free.

    Please could some one enlighten me as to where the mod is run from?

    Thanks

    Paul



    Running on version:

    Zen Cart 1.3.7
    Database Patch Level: 1.3.7
    v1.3.6 [2006-11-28 13:20:20] (Version Update 1.3.5->1.3.6)
    v1.3.5 [2006-11-28 13:20:19] (Version Update 1.3.0.2->1.3.5)
    v1.3.0.2 [2006-11-28 13:20:18] (Version Update 1.3.0.1->1.3.0.2)
    v1.3.0.1 [2006-11-28 13:18:50] (Version Update 1.3.0->1.3.0.1)
    v1.3.0 [2006-11-28 13:18:50] (Version Update 1.2.7->1.3.0)
    v1.2.7 [2006-11-28 13:10:56] (Version Update 1.2.6->1.2.7)
    v1.2.6 [2005-09-10 08:43:21] (Fresh Installation)
    Paul
    ######################################################################
    http://kiwisouvenirs.com/

 

 
Page 47 of 67 FirstFirst ... 37454647484957 ... LastLast

Similar Threads

  1. Quick Updates
    By jayson.gurney in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 1 Mar 2008, 11:08 AM
  2. Quick Updates 2.0*
    By Doodlebuckets in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 6 Jun 2007, 01:32 PM
  3. Quick Updates
    By tuckerm in forum Customization from the Admin
    Replies: 11
    Last Post: 16 Dec 2006, 11:45 PM

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