Page 75 of 75 FirstFirst ... 2565737475
Results 741 to 750 of 750
  1. #741
    Join Date
    Dec 2006
    Location
    near Atlanta Georgia
    Posts
    214
    Plugin Contributions
    0

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    Quote Originally Posted by lat9 View Post
    There's apparently a file in /includes/auto_loaders that's attempting to load that observer file, most likely with a filename that includes "colorbox".
    I didn't see one unless I am overlooking it:



    /**
    * File contains the autoloader loop
    *
    * The autoloader loop takes the array from the auto_loaders directory
    * and uses it to construct the InitSystem.
    * see {@link https://docs.zen-cart.com/dev/code/init_system/} for more details.
    * @copyright Copyright 2003-2022 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: Scott C Wilson 2022 Jul 05 Modified in v1.5.8-alpha $
    */
    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    $debugAutoload = false;
    if (defined('DEBUG_AUTOLOAD') && DEBUG_AUTOLOAD == true) $debugAutoload = true;
    if ($debugAutoload) {
    echo '<pre>$initSystemList=<br>';
    print_r($initSystemList);
    echo '</pre>';
    }
    foreach ($initSystemList as $entry) {
    switch ($entry['type']) {
    case 'include':
    if ($entry['forceLoad']) {
    if ($debugAutoload) echo 'case "include": ' . $entry['filePath'] . "<br>\n";
    include $entry['filePath'];
    } else {
    if ($debugAutoload) echo 'case "include_once": ' . $entry['filePath'] . "<br>\n";
    include_once $entry['filePath'];
    }
    break;
    case 'require':
    if ($entry['forceLoad']) {
    if ($debugAutoload) echo 'case "require": ' . $entry['filePath'] . "<br>\n";
    require $entry['filePath'];
    } else {
    if ($debugAutoload) echo 'case "require_once": ' . $entry['filePath'] . "<br>\n";
    require_once $entry['filePath'];
    }
    break;
    case 'class':
    if ($debugAutoload) echo 'case "class": ' . $entry['class'] . "<br>\n";
    $objectName = $entry['object'];
    $className = $entry['class'];
    $$objectName = new $className();
    break;
    case 'sessionClass':
    if ($debugAutoload) echo 'case "sessionClass": ' . $entry['class'] . "<br>\n";
    $objectName = $entry['object'];
    $className = $entry['class'];
    if (!$entry['checkInstantiated'] || !isset($_SESSION[$objectName])) {
    $_SESSION[$objectName] = new $className();
    }
    break;
    case 'objectMethod':
    if ($debugAutoload) echo 'case "objectMethod": ' . '$entry[\'method\']=' . $entry['method'] . ', $entry[\'object\']=' . $entry['object'] . "<br>\n";
    $objectName = $entry['object'];
    $methodName = $entry['method'];
    if (isset($_SESSION[$objectName]) && is_object($_SESSION[$objectName])) {
    $_SESSION[$objectName]->$methodName();
    } else {
    ${$objectName}->$methodName();
    }
    break;
    Best,
    Goldbuckle

  2. #742
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,873
    Plugin Contributions
    96

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    Quote Originally Posted by GoldBuckle View Post
    I didn't see one unless I am overlooking it:



    /**
    * File contains the autoloader loop
    *
    * The autoloader loop takes the array from the auto_loaders directory
    * and uses it to construct the InitSystem.
    * see {@link https://docs.zen-cart.com/dev/code/init_system/} for more details.
    * @copyright Copyright 2003-2022 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: Scott C Wilson 2022 Jul 05 Modified in v1.5.8-alpha $
    */
    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    $debugAutoload = false;
    if (defined('DEBUG_AUTOLOAD') && DEBUG_AUTOLOAD == true) $debugAutoload = true;
    if ($debugAutoload) {
    echo '<pre>$initSystemList=<br>';
    print_r($initSystemList);
    echo '</pre>';
    }
    foreach ($initSystemList as $entry) {
    switch ($entry['type']) {
    case 'include':
    if ($entry['forceLoad']) {
    if ($debugAutoload) echo 'case "include": ' . $entry['filePath'] . "<br>\n";
    include $entry['filePath'];
    } else {
    if ($debugAutoload) echo 'case "include_once": ' . $entry['filePath'] . "<br>\n";
    include_once $entry['filePath'];
    }
    break;
    case 'require':
    if ($entry['forceLoad']) {
    if ($debugAutoload) echo 'case "require": ' . $entry['filePath'] . "<br>\n";
    require $entry['filePath'];
    } else {
    if ($debugAutoload) echo 'case "require_once": ' . $entry['filePath'] . "<br>\n";
    require_once $entry['filePath'];
    }
    break;
    case 'class':
    if ($debugAutoload) echo 'case "class": ' . $entry['class'] . "<br>\n";
    $objectName = $entry['object'];
    $className = $entry['class'];
    $$objectName = new $className();
    break;
    case 'sessionClass':
    if ($debugAutoload) echo 'case "sessionClass": ' . $entry['class'] . "<br>\n";
    $objectName = $entry['object'];
    $className = $entry['class'];
    if (!$entry['checkInstantiated'] || !isset($_SESSION[$objectName])) {
    $_SESSION[$objectName] = new $className();
    }
    break;
    case 'objectMethod':
    if ($debugAutoload) echo 'case "objectMethod": ' . '$entry[\'method\']=' . $entry['method'] . ', $entry[\'object\']=' . $entry['object'] . "<br>\n";
    $objectName = $entry['object'];
    $methodName = $entry['method'];
    if (isset($_SESSION[$objectName]) && is_object($_SESSION[$objectName])) {
    $_SESSION[$objectName]->$methodName();
    } else {
    ${$objectName}->$methodName();
    }
    break;
    That's the autoloader processer, not one of the /includes/auto_loaders/config.*.php files. I'll suggest that you find the support thread for ColorBox and post your issue there.

  3. #743
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,826
    Plugin Contributions
    31

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    Whenever you install a thing, you make notes about it, and keep a backup copy of the thing files you installed.
    Then when you want to remove the thing, you can compare your thing backup with your site to be able to remove all the thing files.

    So, get a copy of the Colorbox mod and compare it with your development site and remove all those files.
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  4. #744
    Join Date
    Aug 2004
    Posts
    817
    Plugin Contributions
    0

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    I'm trying to troubleshoot an issue and figured I'd ask here for ideas.

    Fresh 2.2.2 install with an upgraded database of products from my 1.5.8a site. All images load fine with the IH5 plugin disabled.

    When I enable it (IH version 5.3.5), none of the images load. I go to a product page, and the images don't load up. I open the bmz_cache and it's not creating anything for that product.

    Folder permissions are 775 on the bmz_cache directory.

    No debug logs being created to show errors.

    Any ideas what else I can check?

    This was working with version 5.3.0 on my 1.5.8a site. All I did was install a new 2.2.2 ZenCart in my testing directory, upgraded a copy of my database to that newest version, copied over my images, and installed the latest IH version.
    - Jeff

  5. #745
    Join Date
    Aug 2004
    Posts
    817
    Plugin Contributions
    0

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    This might be related to my issue above, so maybe answering this will help solve that.

    I'm having a tough time trying to understand how additional images were changed in ZC 2.X.

    I enabled "Database" for "Additional Images Handling" and ran the scan tool. The scan tool put a bunch of entries into the additional images table.

    For example:
    id products_id additional_image sort_order created_at
    2 39110 64160-full_01.png 0 2026-05-05 14:03:02
    3 39110 64160-full_02.png 1 2026-05-05 14:03:02

    But when I go to that product ID on the storefront, I don't see any additional image button or link to display.

    I am using Bootstrap 4 template. What am I missing?!
    - Jeff

  6. #746
    Join Date
    Aug 2004
    Posts
    817
    Plugin Contributions
    0

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    Quote Originally Posted by Jeff_Mash View Post
    This might be related to my issue above, so maybe answering this will help solve that.

    I'm having a tough time trying to understand how additional images were changed in ZC 2.X.

    I enabled "Database" for "Additional Images Handling" and ran the scan tool. The scan tool put a bunch of entries into the additional images table.

    For example:
    id products_id additional_image sort_order created_at
    2 39110 64160-full_01.png 0 2026-05-05 14:03:02
    3 39110 64160-full_02.png 1 2026-05-05 14:03:02

    But when I go to that product ID on the storefront, I don't see any additional image button or link to display.

    I am using Bootstrap 4 template. What am I missing?!
    Okay, I got the additional images to show but only in Bootstrap Mode 0 ("Use Bootstrap Additional Image Carousel"). If I change that value to 1, there are no thumbnails or buttons for additional images to show. Not sure why.
    - Jeff

  7. #747
    Join Date
    Aug 2004
    Posts
    817
    Plugin Contributions
    0

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    Nevermind my posts above. I figured it out. It was a misconfiguration in the ZC config file in our testing.
    - Jeff

  8. #748
    Join Date
    May 2008
    Location
    UK
    Posts
    398
    Plugin Contributions
    0

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    I need some urgent help, please, with Image Handler V4.

    I am using ZC V1.5.8a and had been using Image handler 4 with no issues. I noticed that when i tried adding extra images, i would not be able to do this.

    So, i reinstalled the files image handler4 files to correct the issue.

    The problem that i have now is that I am unable to see my product descriptions and not able to see more than one product image.

    I also realised that some products had several images. If i removed the immages and left one image behind, then i can see the full product listing plus one main image.

    So, i think the issue is the Image Handler. What can i do to fix this issue where i can see my product description and multiple images too for each product?

    Thank you

  9. #749
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,873
    Plugin Contributions
    96

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    Quote Originally Posted by amebb View Post
    I need some urgent help, please, with Image Handler V4.

    I am using ZC V1.5.8a and had been using Image handler 4 with no issues. I noticed that when i tried adding extra images, i would not be able to do this.

    So, i reinstalled the files image handler4 files to correct the issue.

    The problem that i have now is that I am unable to see my product descriptions and not able to see more than one product image.

    I also realised that some products had several images. If i removed the immages and left one image behind, then i can see the full product listing plus one main image.

    So, i think the issue is the Image Handler. What can i do to fix this issue where i can see my product description and multiple images too for each product?

    Thank you
    Don't double-post; if you're really, really using IH-4 then that's your problem. You should use a supported version of Image Handler 5.

  10. #750
    Join Date
    May 2008
    Location
    UK
    Posts
    398
    Plugin Contributions
    0

    Default Re: Image Handler 5 (for v1.5.5) Support Thread

    Quote Originally Posted by lat9 View Post
    Don't double-post; if you're really, really using IH-4 then that's your problem. You should use a supported version of Image Handler 5.
    sorry...

 

 
Page 75 of 75 FirstFirst ... 2565737475

Similar Threads

  1. Attribute image replaces main product image on select [Support Thread]
    By exoticcorpse in forum All Other Contributions/Addons
    Replies: 176
    Last Post: 14 Dec 2025, 12:55 AM
  2. v150 Image Handler 4 (for v1.5.x) Support Thread
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1687
    Last Post: 17 Nov 2024, 07:26 PM
  3. v139h Image Handler 3 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1095
    Last Post: 2 Oct 2017, 12:42 PM
  4. v138a Image Handler 2 (for ZC v1.3.8 ONLY) Support
    By timkroeger in forum All Other Contributions/Addons
    Replies: 7098
    Last Post: 12 Oct 2014, 03:48 AM
  5. Image Handler Support Please
    By nadinesky in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 30 Sep 2013, 03:47 PM

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