Page 575 of 710 FirstFirst ... 75475525565573574575576577585625675 ... LastLast
Results 5,741 to 5,750 of 7099
  1. #5741
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Image Handler 2 Support

    Oh, yea......I forgot to give ZC & IH versions on this little 'bug'.

    Zen-Cart version: 1.3.9d
    Image Handler version: 2.0 Rev 8b
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  2. #5742
    Join Date
    Aug 2006
    Posts
    254
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    1.38a with Zen lightbox too.

    Finally got around to installing this and wish I had sooner.

    Working just great but in Admin I don't see all the options. In particular the image hotzone & hotzone gravity controls but also the image filetypes.

    Here's what I see with 2.0 Rev 8b :
    IH resize images
    IH small image filetype
    IH small image background
    IH watermark small images
    IH zoom small images
    IH small image compression quality
    IH medium image filetype
    IH medium image background
    IH watermark medium images
    IH medium image compression quality
    IH large image filetype
    IH large image background
    IH watermark large images
    IH large image compression quality
    IH large image maximum width
    IH large image maximum height
    IH watermark gravity

    I've checked the files again and everything seems to uploaded. Have it on two sites with same Admin issue.

    Not a super big deal as things are working including the default zoom on small images but I would like to have the controls and maybe tweak them. I don't see the mentioned overlay which is good but thought I should mention that too.

  3. #5743
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Image Handler 2 Support

    Quote Originally Posted by Jeffey View Post
    1.38a with Zen lightbox too.

    Finally got around to installing this and wish I had sooner.

    Working just great but in Admin I don't see all the options. In particular the image hotzone & hotzone gravity controls but also the image filetypes.

    Here's what I see with 2.0 Rev 8b :
    IH resize images
    IH small image filetype
    IH small image background
    IH watermark small images
    IH zoom small images
    IH small image compression quality
    IH medium image filetype
    IH medium image background
    IH watermark medium images
    IH medium image compression quality
    IH large image filetype
    IH large image background
    IH watermark large images
    IH large image compression quality
    IH large image maximum width
    IH large image maximum height
    IH watermark gravity

    I've checked the files again and everything seems to uploaded. Have it on two sites with same Admin issue.

    Not a super big deal as things are working including the default zoom on small images but I would like to have the controls and maybe tweak them. I don't see the mentioned overlay which is good but thought I should mention that too.
    Hotzone was removed, it should be in your readme, not sure what you mean by "overlay" do you mean the watermarking?

  4. #5744
    Join Date
    Aug 2006
    Posts
    254
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Duh! Sorry, though I read it and lots of stuff here I must have missed the change section and made assumptions based on other postings.

    I thought you could modify/switch the hoover which started the whole question. It's fine as is.


    Teaches me for adding on a whim at 5am!

    Thanks for the quick response, sounds like all is well with my setup.

  5. #5745
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Image Handler 2 Support

    Quote Originally Posted by Get Em Fast View Post
    Oh, yea......I forgot to give ZC & IH versions on this little 'bug'.

    Zen-Cart version: 1.3.9d
    Image Handler version: 2.0 Rev 8b
    Are you sure you are using IH r8b, as just from checking you have the javascript from version IH 7, not that that should make a difference to your problem, have you tested just the base install of image handler without lightbox added, as the code seems to be a shade odd

  6. #5746
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Image Handler 2 Support

    Nope it seems to be happening to me to

    http://nigel.geek.nz/sbo_shop/index....oducts_id=4285


    There is a known bug with additional images, although as i don't use extra images i haven't paid much attention to it

    was mentioned around 40 - 50 posts back

    http://www.zen-cart.com/forum/showpo...postcount=5705
    Last edited by nigelt74; 10 Sep 2010 at 03:14 AM.

  7. #5747
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Image Handler 2 Support

    nigelt, Oops........you were right about one thing......the IH version. I installed this a couple of months ago on this site, and didn't realize it was updated since then.......my bad! I've been soooo busy lately...........I have since updated IH on this site, but yea......it's still doing the same thing.

    It's not really a 'biggie' with this particular client, as he says. But, I still think it's a bug that needs 'squashed' because one of these days a client's going to say...."you say you guarantee 100% satisfaction, yet I can't even put an apostrophe in my product names and have them hover!?".....you know what I mean?

    Thanks for the responses, though, and I'll keep trying to help find it, too.......it's probably one of those little things like a double quote where it should be single, or a bracket where it should be a parentheses or some little thing like that, that's going to take forever to track down.....you know how that goes, too?

    Thanks,
    Robert
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  8. #5748
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Image Handler 2 Support

    There is a hack you can use, for some bizarre reason its the only thing i can get to work

    this is a hack, there is probably a better way to do this, BUT

    in this file

    includes/classes/bmz_image_handler.class.php

    around line 690

    //escape possible quotes if they're not already escapped
    $alt = preg_replace("/([^\\\\])'/", '$1\\\'', $alt);
    $alt = str_replace('"', '"', $alt);
    add the following directly underneath (cut and paste it), basically it replaces any single quote apostrophe with a single fancy quote
    //replace apostrophe with fancy quote
    $alt = str_replace("'", "‘", $alt);
    as always use at your own risk, i have tested it on my site and it seems to work fine

    It isn't the most elegant, however this is a weird bug, all the apostrophes in the javascript code are being escaped, but only on the additional images bit, and i can't find the cause

    and before you say it, i did try changing ' to ' but it didn't work
    Last edited by nigelt74; 11 Sep 2010 at 04:37 AM.

  9. #5749
    Join Date
    Oct 2009
    Location
    Texas
    Posts
    194
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by DivaVocals View Post
    IF you are having issues with additional images AND you are running Rev8b (this is FIXED if you are running Rev8c) make the following MINOR change:
    Find this around line 47
    Code:
              if(preg_match("/" . $products_image_base . "/i", $file) == 1) {
    Change to this:
    Code:
              if(preg_match("/" . $products_image_base . "/i", $file) == '1') {
    Still using IH2 Ver2-0rev7 on ZC 1.3.8a and have been bugged by this for some time.
    Looking at my additional_images.php file, it shows that I have the suggested fix, but I'm still having the additional image issue.

    What is the function difference between the line that's commented out and the line that's being used?
    PHP Code:
    //          if(preg_match("/" . $products_image_match . "/i", $file) == '1') {
              
    if(preg_match("/" $products_image_base "/i"$file) == '1') { 
    Thanks,
    Stephen

  10. #5750
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Image Handler 2 Support

    nigelt..........Thanks for the 'quick-fix hack'. It seems to be working perfectly!

    There may be a better way, but if it works.........................
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

 

 

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