Page 259 of 373 FirstFirst ... 159209249257258259260261269309359 ... LastLast
Results 2,581 to 2,590 of 3721
  1. #2581
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Lightbox...

    Quote Originally Posted by athena View Post
    Thank you...this is an exciting theory but the divs are don't seem to be preventing right clicking on the actual item image in Firefox.
    I didn't say it would prevent you from right clicking on them, I said it
    will prevent the right click menu that does pop up from showing a save image as option.
    From what I can see it has done that properly.
    Attached Images Attached Images  

  2. #2582
    Join Date
    Jan 2011
    Location
    Atlanta, GA The A-Town Down
    Posts
    23
    Plugin Contributions
    0

    help question Re: Zen Lightbox...

    I have found discussions about this error but still am unable to find the solution. I installed lightbox yesterday using the current link. I am on step 5 in the readme file. This is the error I am getting:

    Error

    SQL query:

    /** * Zen Lightbox * * @author Alex Clarke ([email protected]) * @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 2008-12-17 aclarke $ */ INSERT INTO `configuration_group`
    VALUES (
    NULL , 'Zen Lightbox', 'Configure Zen Lightbox settings', '0', '1'
    );

    MySQL said: Documentation
    #1146 - Table 'hipdockc_znc1.configuration_group' doesn't exist

    Please advise. I am new so please reply with an explanation I will understand. Thanks so much.
    HipDock.com -This is my first site. Version 1.3.9h. LightBox Add-On March 2011. Thanks for your patience and help!

  3. #2583
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Lightbox...

    Quote Originally Posted by Page View Post
    I have found discussions about this error but still am unable to find the solution. I installed lightbox yesterday using the current link. I am on step 5 in the readme file. This is the error I am getting:

    Error

    SQL query:
    INSERT INTO `configuration_group`
    VALUES (
    NULL , 'Zen Lightbox', 'Configure Zen Lightbox settings', '0', '1'
    );

    MySQL said: Documentation
    #1146 - Table 'hipdockc_znc1.configuration_group' doesn't exist

    Please advise. I am new so please reply with an explanation I will understand. Thanks so much.
    Hi Page,
    I havent personally dealt with the prefix issue, but I just tested it and was able to reproduce your results. According to this post on the thread: Your database has a prefix before the names of the tables. you need to find out what the table prefix is:

    if you open [includes/configure.php] and look for the line
    Code:
    define('DB_PREFIX', 'yourPrefixHere_');
    you'll want to take that part in red and then update your install.sql file as shown in the link. (all the places in red).

    Danel

  4. #2584
    Join Date
    Jan 2011
    Location
    Atlanta, GA The A-Town Down
    Posts
    23
    Plugin Contributions
    0

    help question Re: Zen Lightbox...

    Forgot to include quote
    Last edited by Page; 29 Mar 2011 at 01:36 PM. Reason: Forgot to include quote
    HipDock.com -This is my first site. Version 1.3.9h. LightBox Add-On March 2011. Thanks for your patience and help!

  5. #2585
    Join Date
    Jan 2011
    Location
    Atlanta, GA The A-Town Down
    Posts
    23
    Plugin Contributions
    0

    help question Re: Zen Lightbox...

    Quote Originally Posted by DarkAngel View Post
    please go to the database in myadminphp and look at the tables. make sure that the prefix is: selectge_znc1

    NOT the databases name but the prefix just before each and every individual table there...send a screenshot of the database tables please.
    Are you saying that I need to change the prefix in every one of these files in the table from zc to selectge_znc1? For example, start with znc_address_book and change it to selectge_znc1_address_book. Is this correct? Thank you.


    Could not get screen shot small enough to attach. Here is a copy/paste of the first few line of the table.
    localhost - hipdockc_znc1

    Table Ascending Action Records 1 Type Collation Size Overhead
    znc_address_book Browse Structure Search Insert Empty Drop 2 MyISAM latin1_general_ci 12.2 KiB -
    znc_address_format Browse Structure Search Insert Empty Drop 6 MyISAM latin1_general_ci 8.6 KiB -
    znc_admin Browse Structure Search Insert Empty Drop 1 MyISAM latin1_general_ci 16.1 KiB -
    znc_admin_activity_log Browse Structure
    HipDock.com -This is my first site. Version 1.3.9h. LightBox Add-On March 2011. Thanks for your patience and help!

  6. #2586
    Join Date
    Jan 2011
    Location
    Atlanta, GA The A-Town Down
    Posts
    23
    Plugin Contributions
    0

    help question Re: Zen Lightbox...

    Also, please explain exactly how to change the prefixes.
    HipDock.com -This is my first site. Version 1.3.9h. LightBox Add-On March 2011. Thanks for your patience and help!

  7. #2587
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Lightbox...

    Quote Originally Posted by Page View Post
    Also, please explain exactly how to change the prefixes.
    No, the only change you make is inside install.sql.
    Did you find out what your prefix is as I described?

  8. #2588
    Join Date
    Jan 2011
    Location
    Atlanta, GA The A-Town Down
    Posts
    23
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by niestudio View Post
    Hi Page,
    I havent personally dealt with the prefix issue, but I just tested it and was able to reproduce your results. According to this post on the thread: Your database has a prefix before the names of the tables. you need to find out what the table prefix is:

    if you open [includes/configure.php] and look for the line
    Code:
    define('DB_PREFIX', 'yourPrefixHere_');
    you'll want to take that part in red and then update your install.sql file as shown in the link. (all the places in red).

    Danel
    In [includes/configure.php], the line is:
    define('DB_PREFIX', 'znc_');
    So, I will go to the install SQL file and change hipdockc_znc1.configuration_group to
    Hipdockc_znc_.configuration_group
    I hope I have this right. Thank you Danel!
    HipDock.com -This is my first site. Version 1.3.9h. LightBox Add-On March 2011. Thanks for your patience and help!

  9. #2589
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Lightbox...

    Quote Originally Posted by Page View Post
    In [includes/configure.php], the line is:
    define('DB_PREFIX', 'znc_');
    So, I will go to the install SQL file and change hipdockc_znc1.configuration_group to
    Hipdockc_znc_.configuration_group
    I hope I have this right. Thank you Danel!
    Had you tried to modify this install.sql file already? Why does it say hipdockc_znc1.configuration_group now?

  10. #2590
    Join Date
    Aug 2008
    Posts
    40
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Can you please explain the EZ Pages functionality?
    I cannot get lightbox to work on http://www.mermagica.eu/index.php?ma...mermaid_racing.

    "EZ-Pages

    By default the lightbox effect will be applied to all links that point to images on your EZ-Pages."

    I am using the Define Pages Editor and linking it through an Easy Page... the define_mermaid_racing page has the following code: <a href="../images/mini_tail.jpg" rel="Mini Tail">Mini Tail</a>

    I created an EZ Page (via define pages editor) with a link to a photo in the images directory, but it's not working. The jscript_zen_lightbox.php file is located in the following directory: /modules/pages/mermaid_racing

    Any guidance is appreciated...

 

 

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