Page 139 of 373 FirstFirst ... 3989129137138139140141149189239 ... LastLast
Results 1,381 to 1,390 of 3726
  1. #1381
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    When you tried installing it many times, did you remove every file that was installed by both the previous version and code from the files along with the tables in the database?

    It did not come with an uninstaller so everything had to be removed manually.

    Then if you installed the new one and it still did not work right did you run the uninstaller before attempting it again?

  2. #1382
    Join Date
    Mar 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Hi,

    I just recently installed zen lightbox. Everything seems to work fine with the exception of the prev, next, and close images in FF3. If I hover over the areas i get the alt text and a clickable area but no image. If I open the page in IE 7 all images show fine. I looked around a saw some other people had the same issue but I could not seem to track down an answer.

    TIA
    ~Mike

  3. #1383
    Join Date
    Nov 2007
    Posts
    99
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Hi Alex,

    I just upgraded Zen Lightbox from 1.4 to v1.5

    At first it showed up the following error (as faced by other users too):

    1146 Table 'starruby_zc1.configuration_group' doesn't exist
    in:
    [SELECT @cgi := configuration_group_id FROM configuration_group WHERE configuration_group_title = 'Zen Lightbox';]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
    I then ran the uninstall sql code twice and then inserted the modified installation code that you have posted in this thread:

    /**
    * Zen Lightbox
    *
    * @author Alex Clarke (aclarke AT ansellandclarke DOT co DOT uk)
    * @copyright Copyright 2003-2005 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: install.sql 2009-01-13 aclarke $
    */
    INSERT INTO `configuration_group` VALUES (NULL, 'Zen Lightbox', 'Configure Zen Lightbox settings', '0', '1');
    UPDATE `configuration_group` SET `sort_order` = LAST_INSERT_ID() WHERE `configuration_group_id` = LAST_INSERT_ID();
    SELECT (@cgi := `configuration_group_id`) FROM `configuration_group` WHERE `configuration_group_title` = 'Zen
    Lightbox';
    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
    (NULL, '<b>Zen Lightbox</b>', 'ZEN_LIGHTBOX_STATUS', 'true', '<br />If true, all product images on the following
    pages will be displayed within a lightbox:<br /><br />- document_general_info<br />- document_product_info<br />-
    page (EZ-Pages)<br />- product_free_shipping_info<br />- product_info<br />- product_music_info<br />-
    product_reviews<br />- product_reviews_info<br />- product_reviews_write<br /><br /><b>Default: true</b>', @cgi,
    100, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
    (NULL, 'Overlay Opacity', 'ZEN_LIGHTBOX_OVERLAY_OPACITY', '0.8', '<br />Controls the transparency of the overlay.<br
    /><br /><b>Default: 0.8</b>', @cgi, 101, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''0'', ''0.1'', ''0.2'',
    ''0.3'', ''0.4'', ''0.5'', ''0.6'', ''0.7'', ''0.8'', ''0.9'', ''1''), '),
    (NULL, 'Overlay Fade Duration', 'ZEN_LIGHTBOX_OVERLAY_FADE_DURATION', '400', '<br />Controls the fade duration of
    the overlay.<br /><br />Note: This value is measured in milliseconds.<br /><br /><b>Default: 400</b><br />', @cgi,
    102, NOW(), NOW(), NULL, NULL),
    (NULL, 'Resize Duration', 'ZEN_LIGHTBOX_RESIZE_DURATION', '400', '<br />Controls the speed of the image resizing.<br
    /><br />Note: This value is measured in milliseconds.<br /><br /><b>Default: 400</b><br />', @cgi, 103, NOW(),
    NOW(), NULL, NULL),
    (NULL, 'Resize Transition', 'ZEN_LIGHTBOX_RESIZE_TRANSITION', 'false', '<br />Allows for custom control over the
    transition effect used to animate the lightbox.<br /><br /><b>Default: false</b><br />', @cgi, 104, NOW(), NOW(),
    NULL, NULL),
    (NULL, 'Initial Width', 'ZEN_LIGHTBOX_INITIAL_WIDTH', '250', '<br />If Enable Resize Animations is set to true, the
    lightbox will resize its width from this value to the current image width, when first displayed.<br /><br />Note:
    This value is measured in pixels.<br /><br /><b>Default: 250</b><br />', @cgi, 105, NOW(), NOW(), NULL, NULL),
    (NULL, 'Initial Height', 'ZEN_LIGHTBOX_INITIAL_HEIGHT', '250', '<br />If Enable Resize Animations is set to true,
    the lightbox will resize its height from this value to the current image height, when first displayed.<br /><br
    />Note: This value is measured in pixels.<br /><br /><b>Default: 250</b><br />', @cgi, 106, NOW(), NOW(), NULL,
    NULL),
    (NULL, 'Image Fade Duration', 'ZEN_LIGHTBOX_IMAGE_FADE_DURATION', '400', '<br />Controls the fade duration of
    images.<br /><br />Note: This value is measured in milliseconds.<br /><br /><b>Default: 400</b><br />', @cgi, 107,
    NOW(), NOW(), NULL, NULL),
    (NULL, 'Caption Animation Duration', 'ZEN_LIGHTBOX_CAPTION_ANIMATION_DURATION', '400', '<br />Controls the animation
    duration of the caption.<br /><br />Note: This value is measured in milliseconds.<br /><br /><b>Default: 400</b><br
    />', @cgi, 108, NOW(), NOW(), NULL, NULL),
    (NULL, 'Display Image Counter', 'ZEN_LIGHTBOX_COUNTER', 'true', '<br />If true, the image counter will be displayed
    (below the caption of each image) within the lightbox.<br /><br /><b>Default: true</b>', @cgi, 109, NOW(), NOW(),
    NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
    (NULL, 'Close on Image Click', 'ZEN_LIGHTBOX_CLOSE_IMAGE', 'false', '<br />If true, the lightbox will close when the
    image being displaying is clicked.<br /><br /><b>Default: false</b>', @cgi, 110, NOW(), NOW(), NULL,
    'zen_cfg_select_option(array(''true'', ''false''), '),
    (NULL, 'Close on Overlay Click', 'ZEN_LIGHTBOX_CLOSE_OVERLAY', 'false', '<br />If true, the lightbox will close when
    the overlay is clicked.<br /><br /><b>Default: false</b>', @cgi, 111, NOW(), NOW(), NULL,
    'zen_cfg_select_option(array(''true'', ''false''), '),
    (NULL, '<b>Keyboard Navigation</b>', 'ZEN_LIGHTBOX_KEYBOARD_NAVIGATION', 'true', '<br />If true, keyboard inputs
    will also be used to control the lightbox.<br /><br /><b>Default: true</b>', @cgi, 200, NOW(), NOW(), NULL,
    'zen_cfg_select_option(array(''true'', ''false''), '),
    (NULL, 'Close Lightbox', 'ZEN_LIGHTBOX_ESCAPE_KEYS', '27,88,67', '<br />The lightbox will close when any of these
    keys are pressed.<br /><br />Note: Only <a href="http://en.wikipedia.org/wiki/ASCII" target="_blank">ASCII</a>
    decimal values should be entered and separated with a comma (if listing multiple values).<br /><br /><b>Default:
    27,88,67</b><br />', @cgi, 201, NOW(), NOW(), NULL, NULL),
    (NULL, 'Previous Image', 'ZEN_LIGHTBOX_PREVIOUS_KEYS', '37,80', '<br />The lightbox will display the previous image
    (if available) when any of these keys are pressed.<br /><br />Note: Only <a
    href="http://en.wikipedia.org/wiki/ASCII" target="_blank">ASCII</a> decimal values should be entered and separated
    with a comma (if listing multiple values).<br /><br /><b>Default: 37,80</b><br />', @cgi, 202, NOW(), NOW(), NULL,
    NULL),
    (NULL, 'Next Image', 'ZEN_LIGHTBOX_NEXT_KEYS', '39,78', '<br />The lightbox will display the next image (if
    available) when any of these keys are pressed.<br /><br />Note: Only <a href="http://en.wikipedia.org/wiki/ASCII"
    target="_blank">ASCII</a> decimal values should be entered and separated with a comma (if listing multiple
    values).<br /><br /><b>Default: 39,78</b><br />', @cgi, 203, NOW(), NOW(), NULL, NULL),
    (NULL, '<b>Gallery Mode</b>', 'ZEN_LIGHTBOX_GALLERY_MODE', 'true', '<br />If true, the lightbox will allow
    additional images to quickly be displayed using previous and next buttons.<br /><br /><b>Default: true</b>', @cgi,
    300, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
    (NULL, 'Include Main Image in Gallery', 'ZEN_LIGHTBOX_GALLERY_MAIN_IMAGE', 'true', '<br />If true, the main product
    image will be included in the lightbox gallery.<br /><br /><b>Default: true</b>', @cgi, 301, NOW(), NOW(), NULL,
    'zen_cfg_select_option(array(''true'', ''false''),'),
    (NULL, '<b>EZ-Pages Support</b>', 'ZEN_LIGHTBOX_EZPAGES', 'true', '<br />If true, the lightbox effect will be used
    for linked images on all EZ-Pages.<br /><br /><b>Default: true</b>', @cgi, 400, NOW(), NOW(), NULL,
    'zen_cfg_select_option(array(''true'', ''false''),'),
    (NULL, 'File Types', 'ZEN_LIGHTBOX_FILE_TYPES', 'jpg,png,gif', '<br />On EZ-Pages, the lightbox effect will be
    applied to all images with one of the following file types.<br /><br /><b>Default: jpg,png,gif</b><br />', @cgi,
    401, NOW(), NOW(), NULL, NULL);

    The light box runs well now but the problem I am facing is that the "Next" button and "Image 1 of 3" are not being displayed. Also, the full product name is not displayed on the bottom left hand side of the large image.

    Please see this product:

    http://www.starruby.in/store/sapphir...-with-asterism


    I am running Zen Cart v1.3.7

    Thanks for your help.

    Harshil

  4. #1384
    Join Date
    Nov 2007
    Posts
    99
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Ok... Got it to work. I had the zen lightbox v1.4 code in the includes/templates/apple_zen/tpl_modules_main_product_image.php file. Changed it to the v1.5 code.

    Thanks,
    Harshil

  5. #1385
    Join Date
    Apr 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Hello every one i seem to be having a few problems with this lightbox i have managed to install the sql with the prefixs and that seems fine but i just get the originol popups no lightbox effect.i am using the classic template so do i add the folders to the classic or the default template folder thank you

  6. #1386
    Join Date
    Mar 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by tiny View Post
    Hello every one i seem to be having a few problems with this lightbox i have managed to install the sql with the prefixs and that seems fine but i just get the originol popups no lightbox effect.i am using the classic template so do i add the folders to the classic or the default template folder thank you

    Did you change the name of the folders called YOUR_TEMPLATE to the name of your actual template? i.e. classic

  7. #1387
    Join Date
    Apr 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by mdavis007 View Post
    Did you change the name of the folders called YOUR_TEMPLATE to the name of your actual template? i.e. classic
    its working know thank you i just wasnt sure if it was the classic or the defult_template i had to name it so i tried the classic first and it worked first time thanks for your reply

  8. #1388
    Join Date
    Dec 2008
    Posts
    2
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Hi BlessIsaacola,

    Did you make any progress on your issue? I am having the same problem. When I set Include main image in gallery to false, the gallery will stop working.

    Thanks,

  9. #1389
    Join Date
    Apr 2009
    Posts
    35
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    I am attempting to install the zen lightbox on my server and I am getting this error:


    1146 Table 'kbusa_zc1.configuration_group' doesn't exist
    in:
    [SELECT @cgi := configuration_group_id FROM configuration_group WHERE configuration_group_title = 'Zen Lightbox';]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    I then return to my admin panel and click >config>zen lightbox and nothing shows up...

    I am running the appropriate version of zen cart (1.3.8), and I am also trying to install that same version of lightbox... any feedback would be great. Thank you

  10. #1390
    Join Date
    Mar 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by MULISH View Post
    I am attempting to install the zen lightbox on my server and I am getting this error:


    1146 Table 'kbusa_zc1.configuration_group' doesn't exist
    in:
    [SELECT @cgi := configuration_group_id FROM configuration_group WHERE configuration_group_title = 'Zen Lightbox';]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    I then return to my admin panel and click >config>zen lightbox and nothing shows up...

    I am running the appropriate version of zen cart (1.3.8), and I am also trying to install that same version of lightbox... any feedback would be great. Thank you

    You need to edit the install.sql file that is in the zen_lightbox folder. For some reason the writer of this plugin failed to add the table prefix "zen_" to the table insert commands.

    Change this - INSERT INTO `configuration_group
    to this - INSERT INTO `zen_configuration_group

    Change this - INSERT INTO `configuration
    to this - INSERT INTO `zen_configuration

    Mike

 

 

Similar Threads

  1. Free Shipping Rules addon [Support Thread]
    By numinix in forum Addon Shipping Modules
    Replies: 36
    Last Post: 2 Dec 2016, 01:56 PM
  2. v151 Reviews Reply addon [Support Thread]
    By mikestaps in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 17 Oct 2014, 01:29 AM
  3. Jquery Lightbox [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 257
    Last Post: 2 Aug 2012, 10:57 PM
  4. File Upload Required addon [Support Thread]
    By 1100101 in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 10 Dec 2011, 03:00 AM
  5. [Support Thread] IE only JavaScripts and Stylesheets Addon
    By Meshach in forum All Other Contributions/Addons
    Replies: 16
    Last Post: 31 May 2011, 08:18 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