Page 488 of 710 FirstFirst ... 388438478486487488489490498538588 ... LastLast
Results 4,871 to 4,880 of 7099
  1. #4871
    Join Date
    May 2008
    Posts
    452
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by DarkAngel View Post
    then there is the empty cache feature for this too that will refresh each image again.
    "Empty cache feature?" Where does this little gem live?

  2. #4872
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by mzimmers View Post
    "Empty cache feature?" Where does this little gem live?

    admin/tools/IH2/ listed in the main menu

    manager---admin---preview and about

    it will be in the admin part there where you can remove IH2, clear cache and scan for old IH files if you had a previous version

    not really sure what that preview section is for since I thought it would have something other than the graphs...lol

  3. #4873
    Join Date
    May 2008
    Posts
    452
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Ah...very good. Quite fast regenerating the images it needs, too. Impressive...

    Thanks.

  4. #4874
    Join Date
    Apr 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Hi all, I'm having a problem with IH2. Picture uploading has been fine until i started having problem uploading subsequent pictures.

    I keep having this error:

    Error!
    Unable to determine the page link!

    Function used:

    zen_href_link('', '', 'NONSSL')


    Any kind soul can help with this?

    Thank you so much

  5. #4875
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by miaoling_wong View Post
    Hi all, I'm having a problem with IH2. Picture uploading has been fine until i started having problem uploading subsequent pictures.

    I keep having this error:

    Error!
    Unable to determine the page link!

    Function used:

    zen_href_link('', '', 'NONSSL')


    Any kind soul can help with this?

    Thank you so much
    try resaving your image...make sure it is the same as the thumb (smallest) image...png=png, jpg=jpg, gif=gif

    I got those a few times and did the same thing to make them behave...maybe they were a bit corrupted.

  6. #4876
    Join Date
    Feb 2007
    Location
    Burleson. Texas
    Posts
    194
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by mcshane78 View Post
    Shop around... you would be supprised what you can get if you are a non-profit organisation.

    While i cannot name names (as its against forum rules under advertising) a fair few hosts do offer either free or heavily reduced hosting fees for non-profits. on the condition that on your website there is acknoloedgement of the hosts and / or a banner add to them.

    worth a try.. you dont get if you dont ask!!

    while i alway recomend you avoid shared hosting.. the cost of hosting these days means you can get a Virtual Private Server for about £100-£150 per year in the UK

    changing hosts, really is the only fix for this
    Thanks, I do appreciate all of the input but shared is the only thing within the budget.

    To respond to an earlier reponse, I had already contacted the host and their apology was followed by a 6 month refund of hosting fees.

    As for this response, I did figure out a way to keep the bmz_cache folders cleaned out. The images created on the fly are nearly as quick to load as the cached images, so this keeps over 150,000 files from bottlenecking the site. The code is pasted below, if anyone else has a need to keep their cache (or any other folders) clean. You pick the file type(s) and the folder (please test before implementing). My host uses Linux and PHP5 so it may not be universal (like for windows servers).

    <?php
    $some_dir0 = "../bmz_cache/0";
    foreach (glob("$some_dir0/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file0)
    unlink($file0);
    $some_dir1 = "../bmz_cache/1";
    foreach (glob("$some_dir1/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file1)
    unlink($file1);
    $some_dir2 = "../bmz_cache/2";
    foreach (glob("$some_dir2/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file2)
    unlink($file2);
    $some_dir3 = "../bmz_cache/3";
    foreach (glob("$some_dir3/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file3)
    unlink($file3);
    $some_dir4 = "../bmz_cache/4";
    foreach (glob("$some_dir4/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file4)
    unlink($file4);
    $some_dir5 = "../bmz_cache/5";
    foreach (glob("$some_dir5/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file5)
    unlink($file5);
    $some_dir6 = "../bmz_cache/6";
    foreach (glob("$some_dir6/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file6)
    unlink($file6);
    $some_dir7 = "../bmz_cache/7";
    foreach (glob("$some_dir7/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file7)
    unlink($file7);
    $some_dir8 = "../bmz_cache/8";
    foreach (glob("$some_dir8/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file8)
    unlink($file8);
    $some_dir9 = "../bmz_cache/9";
    foreach (glob("$some_dir9/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file9)
    unlink($file9);
    $some_dirc = "../bmz_cache/a";
    foreach (glob("$some_dira/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filea)
    unlink($filea);
    $some_dirb = "../bmz_cache/b";
    foreach (glob("$some_dirb/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $fileb)
    unlink($fileb);
    $some_dirc = "../bmz_cache/c";
    foreach (glob("$some_dirc/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filec)
    unlink($filec);
    $some_dird = "../bmz_cache/d";
    foreach (glob("$some_dird/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filed)
    unlink($filed);
    $some_dire = "../bmz_cache/e";
    foreach (glob("$some_dire/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filee)
    unlink($filee);
    $some_dirf = "../bmz_cache/f";
    foreach (glob("$some_dirf/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filef)
    unlink($filef);
    ?>

    If using for a single folder, you would delete the script after the initial unlink call.

    I use the curl command in cron keep kick start it. Just use the absolute path to wherever you drop it.

    There is probably a shorter solution, but this one works for me.
    Dennis
    www.stampdays.com
    Over 80,000 stamps and still growing!

  7. #4877
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Image Handler 2 Support

    Sounds like you have worked it all out, but IMO this is a bandaid solution, and the real issue is an inadequate host.

    I can appreciate needing to work within a budget.. One of my "clients" is a non-profit org. I volunteer my services for them so that they can have someone who can maintain their site. This is a SMALL non-profit, so while I get needing to work within a budget, I also know that lots of companies will donate or greatly reduce the cost of hosting for not-for-profit orgs. So the ladies of this non-profit and I will be hitting the phones and e-mails later this year to find them a new webhost for similar reasons.. We have a target budget based on the current host, and I've no doubt we will find them a new (improved) host within their budget..

    Good luck either way..

    Quote Originally Posted by awhfy99 View Post
    Thanks, I do appreciate all of the input but shared is the only thing within the budget.

    To respond to an earlier reponse, I had already contacted the host and their apology was followed by a 6 month refund of hosting fees.

    As for this response, I did figure out a way to keep the bmz_cache folders cleaned out. The images created on the fly are nearly as quick to load as the cached images, so this keeps over 150,000 files from bottlenecking the site. The code is pasted below, if anyone else has a need to keep their cache (or any other folders) clean. You pick the file type(s) and the folder (please test before implementing). My host uses Linux and PHP5 so it may not be universal (like for windows servers).

    <?php
    $some_dir0 = "../bmz_cache/0";
    foreach (glob("$some_dir0/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file0)
    unlink($file0);
    $some_dir1 = "../bmz_cache/1";
    foreach (glob("$some_dir1/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file1)
    unlink($file1);
    $some_dir2 = "../bmz_cache/2";
    foreach (glob("$some_dir2/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file2)
    unlink($file2);
    $some_dir3 = "../bmz_cache/3";
    foreach (glob("$some_dir3/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file3)
    unlink($file3);
    $some_dir4 = "../bmz_cache/4";
    foreach (glob("$some_dir4/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file4)
    unlink($file4);
    $some_dir5 = "../bmz_cache/5";
    foreach (glob("$some_dir5/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file5)
    unlink($file5);
    $some_dir6 = "../bmz_cache/6";
    foreach (glob("$some_dir6/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file6)
    unlink($file6);
    $some_dir7 = "../bmz_cache/7";
    foreach (glob("$some_dir7/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file7)
    unlink($file7);
    $some_dir8 = "../bmz_cache/8";
    foreach (glob("$some_dir8/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file8)
    unlink($file8);
    $some_dir9 = "../bmz_cache/9";
    foreach (glob("$some_dir9/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $file9)
    unlink($file9);
    $some_dirc = "../bmz_cache/a";
    foreach (glob("$some_dira/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filea)
    unlink($filea);
    $some_dirb = "../bmz_cache/b";
    foreach (glob("$some_dirb/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $fileb)
    unlink($fileb);
    $some_dirc = "../bmz_cache/c";
    foreach (glob("$some_dirc/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filec)
    unlink($filec);
    $some_dird = "../bmz_cache/d";
    foreach (glob("$some_dird/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filed)
    unlink($filed);
    $some_dire = "../bmz_cache/e";
    foreach (glob("$some_dire/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filee)
    unlink($filee);
    $some_dirf = "../bmz_cache/f";
    foreach (glob("$some_dirf/{*.gif,*.jpg,*.png,*.GIF,*.JPG,*.PNG,*.JPEG,*.jpeg}", GLOB_BRACE) as $filef)
    unlink($filef);
    ?>

    If using for a single folder, you would delete the script after the initial unlink call.

    I use the curl command in cron keep kick start it. Just use the absolute path to wherever you drop it.

    There is probably a shorter solution, but this one works for me.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  8. #4878
    Join Date
    Aug 2008
    Posts
    340
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    hi


    I don't get these in image:

    IH resize images yes
    IH small image filetype no_change
    IH small image background 255:255:255
    IH watermark small images no
    IH zoom small images yes
    IH small image hotzone no
    IH small image compression quality 85
    IH medium image filetype no_change
    IH medium image background 255:255:255
    IH watermark medium images no
    IH zoom medium images yes
    IH medium image hotzone no
    IH medium image compression quality 85
    IH large image filetype no_change
    IH large image background 255:255:255
    IH watermark large images no
    IH large image compression quality 85
    IH large image maximum width 600
    IH large image maximum height
    IH watermark gravity Center
    IH zoom gravity SouthEast

  9. #4879
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Image Handler 2 Support

    It's not clear what you are asking here.. It helps the community if they don't have to GUESS what might be your question/issue.. Can you elaborate??

    Quote Originally Posted by lieven23 View Post
    hi


    I don't get these in image:

    IH resize images yes
    IH small image filetype no_change
    IH small image background 255:255:255
    IH watermark small images no
    IH zoom small images yes
    IH small image hotzone no
    IH small image compression quality 85
    IH medium image filetype no_change
    IH medium image background 255:255:255
    IH watermark medium images no
    IH zoom medium images yes
    IH medium image hotzone no
    IH medium image compression quality 85
    IH large image filetype no_change
    IH large image background 255:255:255
    IH watermark large images no
    IH large image compression quality 85
    IH large image maximum width 600
    IH large image maximum height
    IH watermark gravity Center
    IH zoom gravity SouthEast
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #4880
    Join Date
    Nov 2006
    Posts
    29
    Plugin Contributions
    0

    Default Image Handler 2 - Admin images broken

    Hi all,

    I am using Zen Cart version 1.3.8 a. I installed Image Handler 2 which is working fine on the product pages but the images are broken in admin. Any advice would be appreciated.

 

 

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