Page 219 of 710 FirstFirst ... 119169209217218219220221229269319 ... LastLast
Results 2,181 to 2,190 of 7099
  1. #2181
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by solarflare View Post
    Thanks. IH is installed. And uninstalled and repeated about 10 times. Like I said, I'm using it on another site without issue.

    I've tried adding 1 photo through the Categories-Products when i add the product, and also directly into IH. The images ARE there and are generated, but the paths are output incorrectly.
    Are you using an old version of HoverBox? Or maybe have an outdated file?

    Reason is, in the past HoverBox would still output urls as such "images/products/large... " even when IH was installed.

    And you've installed Acadame, so you quite possibly could have installed HoverBox.
    Last edited by testuser; 20 Jan 2008 at 10:41 PM. Reason: ?

  2. #2182
    Join Date
    Sep 2006
    Posts
    101
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I have not really installed other mods yet. Like I said, pretty much virgin install. IH2 is one of the first things I install. I installed EasyPopulate. That's all.

    Quote Originally Posted by testuser View Post
    Are you using an old version of HoverBox? Or maybe have an outdated file?

    Reason is, in the past HoverBox would still output urls as such "images/products/large... " even when IH was installed.

    And you've installed Acadame, so you quite possibly could have installed HoverBox.
    Personalized candy favors and gifts: http://www.westcoastfavors.com

    The Sea Crew: http://www.theseacrew.com/shop/

  3. #2183
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by solarflare View Post
    I have not really installed other mods yet. Like I said, pretty much virgin install. IH2 is one of the first things I install. I installed EasyPopulate. That's all.
    Are all the links appearing like you said or is just in one specific area?

  4. #2184
    Join Date
    Sep 2006
    Posts
    101
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    All of the links. The thumbnails work because they link to the actual image file, but the rest look for product_large.jpg etc.

    Quote Originally Posted by testuser View Post
    Are all the links appearing like you said or is just in one specific area?
    Personalized candy favors and gifts: http://www.westcoastfavors.com

    The Sea Crew: http://www.theseacrew.com/shop/

  5. #2185
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by solarflare View Post
    All of the links. The thumbnails work because they link to the actual image file, but the rest look for product_large.jpg etc.
    Perhaps Image Handler doesn't think it needs to resize the images ... what are your configuration options for the size of your large image.

    Configuration :: Images

    Should be down around the bottom...

  6. #2186
    Join Date
    Nov 2007
    Posts
    260
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    INSTALLATION FILES CONTAINS CORRUPTED FILE.
    version: image_handler__for_vx_2.0_for_137.zip

    image_handler_tools_dhtml.php IS MISSING LINES.

    FOLLOWING CODE IS MISSING FROM END OF FILE:

    foreach ($options as $key => $value)
    if (page_allowed($value['page'])=='true') $za_contents[] = array('text' => $value['box'], 'link' => zen_href_link($value['page'], '', 'NONSSL'));
    ?>

    Well at least ?> characters.
    The for each for loop is at least needed for Admin profile according to its instructions.

    marksu
    Last edited by marksu; 21 Jan 2008 at 10:44 PM.

  7. #2187
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: Image Handler 2 Support

    What version are you using?

    Presuming you are referring to this file:
    admin/includes/boxes/extra_boxes/image_handler_tools_dhtml.php

    I see no such code as you describe as needed yet IH2 works just fine in every way.

  8. #2188
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by marksu View Post
    INSTALLATION FILES CONTAINS CORRUPTED FILE.
    version: image_handler__for_vx_2.0_for_137.zip

    image_handler_tools_dhtml.php IS MISSING LINES.

    FOLLOWING CODE IS MISSING FROM END OF FILE:

    foreach ($options as $key => $value)
    if (page_allowed($value['page'])=='true') $za_contents[] = array('text' => $value['box'], 'link' => zen_href_link($value['page'], '', 'NONSSL'));
    ?>

    Well at least ?> characters.
    The for each for loop is at least needed for Admin profile according to its instructions.

    marksu

    Appears as though your file was corrupted on an upload.

  9. #2189
    Join Date
    Nov 2007
    Posts
    260
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Download the image_handler__for_vx_2.0_for_137.zip from
    http://www.zen-cart.com/index.php?ma...roducts_id=117

    Open \admin\includes\boxes\extra_boxes\image_handler_tools_dhtml.php

    There you see the code I am talking about.
    - for loop missing (not sure it it is required but "admin profile module" manual had it in their example)
    Propaply it still works without the forloop code but not next statement is a fact.

    - One for certain is that it is missing ?> characters at the end of document.
    Anyone that understand php coding knows that PHP code allways need to end with ?> characters.

    I downloaded the package 3 time to make sure the download is OK and not corrupted.

    Website Rob
    Sure Image Handler worked ok for me too untill I installed the Admin Profile. Then my problems started.
    Even those problems are solved now by this fix.



    marksu

  10. #2190
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Image Handler 2 Support

    Quote Originally Posted by marksu View Post
    Open \admin\includes\boxes\extra_boxes\image_handler_tools_dhtml.php

    There you see the code I am talking about.
    - for loop missing (not sure it it is required but "admin profile module" manual had it in their example)
    The example to which you refer shows how to convert a normal box file, such as that supplied with Image Handler, into a box file that works with Admin Profiles. The for loop is therefore specific to Admin Profiles with the purpose of ensuring that all menu items are checked by the page_allowed() function before being added to the $za_contents[] array (or not!).

    Quote Originally Posted by marksu View Post
    Propaply it still works without the forloop code but not next statement is a fact.
    - One for certain is that it is missing ?> characters at the end of document.
    Anyone that understand php coding knows that PHP code allways need to end with ?> characters.
    Not actually a fact, I'm afraid. If the PHP interpreter reaches the end of a file with its tag state as open, it will close it automatically. So ?> at the end of a file are actually optional. I would argue that best practise would be to include a closing tag anyway, but the author of Image Handler always preferred to leave them off. So there's no surprise that there's not one here.

    I'm glad, if a little surprised, that your installation of Admin Profiles has dealt with whatever problem you were having with Image Handler, and appreciate your attempts to alert other community members to a potential problem. However, I have to agree with the others here that the Image Handler mod available for download works fine.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

 

 

Similar Threads

  1. 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
  2. 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
  3. Image Handler Support Please
    By nadinesky in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 30 Sep 2013, 03:47 PM
  4. Image handler only covers part of screen
    By shaneburton in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 14 May 2009, 07:15 PM
  5. Is Image Handler the only way to go?
    By wwwursa in forum Installing on a Windows Server
    Replies: 2
    Last Post: 23 Dec 2007, 09:22 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