Page 155 of 710 FirstFirst ... 55105145153154155156157165205255655 ... LastLast
Results 1,541 to 1,550 of 7099
  1. #1541
    Join Date
    Mar 2007
    Posts
    15
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by Catalyst View Post
    To take out any filename issue I renamed an image to "test.jpg" and tried it, same error.
    hmmm......tested with linux and windows apache and thats the fix i found....you get it working?
    Things Have to be believed to be seen
    UncleMOe.co.uk
    Uncle-moe.co.uk
    Sterling-workwear.co.uk

  2. #1542
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by mdotse View Post
    hmmm......tested with linux and windows apache and thats the fix i found....you get it working?
    Can you explain the error again?

  3. #1543
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I just started getting this error lately:
    PHP Warning: imagejpeg() [<a href='function.imagejpeg'>function.imagejpeg</a>]: Unable to open '/bmz_cache/b/b59bc33e97b46b45824ae99ae7665add.image.92x100.jpg' for writing: Permission denied /includes/classes/bmz_image_handler.class.php on line 652
    . I am not sure why what's causing this so if anyone knows please help.

    Line 636 - 659 reads:

    PHP Code:
        function save_imageGD($file_ext$image$dest_name$quality 75) {
            global 
    $ihConf;
            
            switch (
    strtolower($file_ext)) {
                case 
    '.gif':
                    if(!
    function_exists("imagegif")) return false;
                    
    $ok imagegif($image$dest_name);
                    break;
                case 
    '.png':
                    if(!
    function_exists("imagepng")) return false;
                    
    $quality = (int)$quality/100;
                    
    $ok imagepng($image$dest_name$quality);
                    break;
                case 
    '.jpg':
                case 
    '.jpeg':
                    if(!
    function_exists("imagejpeg")) return false;
                    
    $ok imagejpeg($image$dest_name$quality);
                    break;
                default: 
    $ok false;
            }
            
    imagedestroy($image);
        
            return 
    $ok;
        } 
    and line 652 reads:
    PHP Code:
    $ok imagejpeg($image$dest_name$quality); 

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

    Default Re: Image Handler 2 Support

    Quote Originally Posted by BlessIsaacola View Post
    I just started getting this error lately: . I am not sure why what's causing this so if anyone knows please help.

    Line 636 - 659 reads:

    PHP Code:
        function save_imageGD($file_ext$image$dest_name$quality 75) {
            global 
    $ihConf;
            
            switch (
    strtolower($file_ext)) {
                case 
    '.gif':
                    if(!
    function_exists("imagegif")) return false;
                    
    $ok imagegif($image$dest_name);
                    break;
                case 
    '.png':
                    if(!
    function_exists("imagepng")) return false;
                    
    $quality = (int)$quality/100;
                    
    $ok imagepng($image$dest_name$quality);
                    break;
                case 
    '.jpg':
                case 
    '.jpeg':
                    if(!
    function_exists("imagejpeg")) return false;
                    
    $ok imagejpeg($image$dest_name$quality);
                    break;
                default: 
    $ok false;
            }
            
    imagedestroy($image);
        
            return 
    $ok;
        } 
    and line 652 reads:
    PHP Code:
    $ok imagejpeg($image$dest_name$quality); 
    Delete all the folders under bmz_cache, then reset image cache from Tools :: Image Handler 2. Check permissions of bmz folder as well just to make sure.

  5. #1545
    Join Date
    Aug 2006
    Location
    HCMC
    Posts
    268
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by testuser View Post
    Delete all the folders under bmz_cache, then reset image cache from Tools :: Image Handler 2. Check permissions of bmz folder as well just to make sure.
    Do you know how to fix the java scrip bug in my website?

  6. #1546
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default No pop out image?

    Hello, I just installed the image-handler_2.0-zc13 and I cant figure out why it isnt working on my test site on a localhost. I installed all files then went to the admin/tools/inage handler2 and then went into the admin for the Image Handler and clicked on install. It then added a + sign to the images on my website but, when I mouse over them nothing happens? I have this installed on a working site and it works just fine and I made a copy of my working site on my localhost and it works fine. I did nothing different that I know of for this one... Any ideas

    Thanks,

  7. #1547
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: No pop out image?

    Quote Originally Posted by oxicottin View Post
    Hello, I just installed the image-handler_2.0-zc13 and I cant figure out why it isnt working on my test site on a localhost. I installed all files then went to the admin/tools/inage handler2 and then went into the admin for the Image Handler and clicked on install. It then added a + sign to the images on my website but, when I mouse over them nothing happens? I have this installed on a working site and it works just fine and I made a copy of my working site on my localhost and it works fine. I did nothing different that I know of for this one... Any ideas

    Thanks,
    I've noticed the same as well ... it's something that has just surfaced.

    Give me some time to track it down... In the meantime, can you give some server details like php, mysql and the like? (Tools :: Server Version/Info)

    If anyone else has experienced this lately, please say so.
    Last edited by testuser; 6 Sep 2007 at 03:23 AM.

  8. #1548
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Image Handler 2 Support

    testuser, Im using Wamp5 v1.7.3...

    PHP 5.2.4
    MySQL 5.0.45
    phpmyadmin 2.11.0

    I cant even get your HoverBox 2 to work as well So thats three Image Handlers I tried and they didnt work but I have Image Handler 2 installed on another test site that I downloaded all the working files from my "Up and Running" site and its running fine on wamp5. Weird! Thanks!
    Last edited by oxicottin; 6 Sep 2007 at 10:32 AM.

  9. #1549
    Join Date
    Jun 2007
    Location
    Milton Keynes UK
    Posts
    153
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I would like to know if some one can tell me; the small images in the welcome page for new product and featured products are they supposed not to show the image over with IH2 installed or am I doing something wrong?

  10. #1550
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Image Handler 2 Support

    I found the problem! The folder I downloaded didnt have two of the files needed. I cross ref with a working one and found that I was missing...

    includes/modules/pages/popup_image_additional/jscript_main.php
    includes/modules/pages/popup_image/jscript_main.php

    I dont know why they wernt there?

 

 

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