Page 344 of 710 FirstFirst ... 244294334342343344345346354394444 ... LastLast
Results 3,431 to 3,440 of 7099
  1. #3431
    Join Date
    Jan 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    The problem was resolved

  2. #3432
    Join Date
    Apr 2008
    Posts
    154
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    crazy how we can't creat new threads for this module - they all get wrapped up in one and it's impossible to search for your issue..

    anyway, i just tried uploading some png files and they show fine the admin section but when i go to my site, they show up with an 'x' in them.. so i went to image handler in teh admin section and did a 'preview' and got error messages.. so then i converted the png files to jpg and the site look fine BUT in the admin/image handler section when i do a preview it shows the png files with an 'x' in them (even though i now have no png files on my site).. is there something about png files that image handler does not like?
    Website Developer and Search Engine Optimazation Boise Idaho. Details at BoiseWired.com

  3. #3433
    Join Date
    Apr 2007
    Posts
    7
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I'm sure I am just over looking something but i just installed the Image Handler on my site. The problem im having is all my categories and my layout boxes on the right side are gone now just on the index page. When i go to admin and remove IH from database all returns to normal.

    I have searched the forums and havent found something relating to this.

    Suggestions?
    Brad Merchel
    Custom vinyl lettering, signs, decals,magnetic signs
    www.cnegfx.com

  4. #3434
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Image Handler 2 Support

    There is an error in includes/classes/bmz_image_handler.class.php which may stripe out all your parameters setting when you use zen_image

    Open that file, look for

    PHP Code:
    function get_additional_parameters($alt$width$height$parameters) { 
    replace that whole function by
    PHP Code:
    function get_additional_parameters($alt$width$height$parameters) {
            global 
    $ihConf;
        if (
    $this->sizetype == 'small') {
          if (
    $ihConf[$this->sizetype]['zoom']) {
            if (
    $this->zoom['file'] == '' || !$ihConf[$this->sizetype]['hotzone']) {
              
    // if no zoom image, the whole image triggers the popup
              
    $this->zoom['startx'] = 0;
              
    $this->zoom['starty'] = 0;
              
    $this->zoom['width'] = $width;
              
    $this->zoom['height'] = $height;
            }
            
    //escape possible quotes if they're not already escapped
            
    $alt preg_replace("/([^\\\\])'/"'$1\\\''$alt);
            
    $alt str_replace('"''"'$alt);
            
    // strip potential suffixes just to be sure
            
    $src $this->strip_sizetype_suffix($this->src);
            
    // define zoom sizetype
            
    $zoom_sizetype = ($this->sizetype=='small')?'medium':'large';
            
    // additional zoom functionality
            
    $products_image_directory substr($srcstrlen($ihConf['dir']['images']), strrpos($src'/') - strlen($ihConf['dir']['images']) + 1);
            
    $products_image_filename substr($srcstrrpos($src'/'), strlen ($src) - strrpos ($src'/') - strlen ($this->extension));
            
    $products_image_zoom $ihConf['dir']['images'] . $zoom_sizetype '/' $products_image_directory $products_image_filename $ihConf[$zoom_sizetype]['suffix'] . $this->extension;
            
    $ih_zoom_image = new ih_image($products_image_zoom$ihConf[$zoom_sizetype]['width'], $ihConf[$zoom_sizetype]['height']);
            
    $products_image_zoom $ih_zoom_image->get_local();
            list(
    $zoomwidth$zoomheight) = @getimagesize($ihConf['dir']['docroot'] . $products_image_zoom);
            
    // we should parse old parameters here and possibly merge some inc case they're duplicate
            
    $parameters .= ($parameters != '') ? ' ' '';
            return 
    $parameters 'style="position:relative" onmouseover="showtrail(' "'$products_image_zoom','$alt',$width,$height,$zoomwidth,$zoomheight,this," $this->zoom['startx'].','.$this->zoom['starty'].','.$this->zoom['width'].','.$this->zoom['height'].');" onmouseout="hidetrail();" ';
          }
           return 
    $parameters;
        }
        return 
    $parameters;
        } 
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  5. #3435
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    What is the best way to uninstall IH? I have it installed in a ZC 1.3.8a cart and there are some mod conflicts I want to check, but to do so I have to uninstall IH...

    I am looking for the best/safest way.

    thanks.

  6. #3436
    Join Date
    Aug 2006
    Posts
    6
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    HI
    I have zen cart 1.3.8a working OK till now. I installed IH2 and i was able to resolve some issues (mouse hover and zoom on images specifically) .
    Just go to your ADMIN menu- tools-imagehandler- (choose admin on its menu) remove IH. there is no other way to uninstall it. Don`t erase files on server.
    I am thinking about your problem may be other Add ons because my website works without conflicts
    check it out
    www.caliventas.com

  7. #3437
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by yellow1912 View Post
    There is an error in includes/classes/bmz_image_handler.class.php which may stripe out all your parameters setting when you use zen_image...
    I replaced function with this one and it blacked out my site.
    Came back when going back to original.
    yellow?

  8. #3438
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Image Handler 2 Support

    Quote Originally Posted by ckosloff View Post
    I replaced function with this one and it blacked out my site.
    Came back when going back to original.
    yellow?
    When you replace it, note that there is a close bracket at the end (for the class) you must not take out. I suspect you took it out accidentally.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  9. #3439
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by yellow1912 View Post
    When you replace it, note that there is a close bracket at the end (for the class) you must not take out. I suspect you took it out accidentally.
    No, did not, but now I have another big problem.
    I also loaded jscript_imagehover from tophand.
    Replaced both files from originals but no images load.
    Cleared bmz_cache to no avail.
    Cannot figure out what is going on.
    Restored from previous backup and same thing.
    Updated wamp server to latest version, no joy.
    Please help.

  10. #3440
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Disregard, I do have site when restoring from backup.
    It's only that I am doing a major overhaul in test site: adding products, manufacturers, categories, etc.
    This reorganization includes reorganizing image location and redong all old products, so some images don't show.
    Sorry about pushing the panic button.

 

 

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