Page 673 of 710 FirstFirst ... 173573623663671672673674675683 ... LastLast
Results 6,721 to 6,730 of 7099
  1. #6721
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by Wickedprops View Post
    I am having a problem with loading pics and them showing in image handler but not in my store. I found this thread:

    http://www.zen-cart.com/forum/showthread.php?t=84164

    Most of the products Ive added are working fine, but the ones I checked to have a difference in the .jpg and .JPG extensions. In the thread it said you just needed to add a line in the .php but being a little new at this can anyone tell me how to access the area I need to edit?

    Thank you.
    a link to your store for the page that is not loading right would be helpful. as for that link to the post---that is afairly old thread and for the previous version of IH2 so not sure if it will wokr right.

    make sure the images you are loading match...if the main image is a .jpg then its additiona images must also be .jpg Same fot .JPG, maybe it needs all those to be lower case?

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

    Default Re: Image Handler 2 Support

    Quote Originally Posted by Wickedprops View Post
    I am having a problem with loading pics and them showing in image handler but not in my store. I found this thread:

    http://www.zen-cart.com/forum/showthread.php?t=84164

    Most of the products Ive added are working fine, but the ones I checked to have a difference in the .jpg and .JPG extensions.
    The issue here is that Unix interprets uppercase and lower case as being different. Therefore .jpg is not the same as .JPG. Change your file names so that the suffixes are the same..

    Quote Originally Posted by Wickedprops View Post
    In the thread it said you just needed to add a line in the .php but being a little new at this can anyone tell me how to access the area I need to edit?

    Thank you.
    The change suggested in this thread will automatically convert your file extensions from uppercase to lowercase.. I've not tested this particular edit, but others have reported that the suggested change works. The post very clearly which file you need to edit and where the edit needs to be made.. So I'm not sure I understand what it is you are asking here..
    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.

  3. #6723
    Join Date
    Oct 2008
    Posts
    187
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    The issue here is that Unix interprets uppercase and lower case as being different. Therefore .jpg is not the same as .JPG. Change your file names so that the suffixes are the same..
    Seriously, we have to conclude that this add-on is not a robust solution.

    If you have many hundreds of images to deal with, perhaps it is worth persevering with, but otherwise...

    I have tried to interest the developers in making this a better add-on but to no avail. And have been vilified many times for trying.

    My advice is not to waste your time if you have less than, say, 200 images.

    It is far better to resize them all yourself.

    Or waste dozens of hours - as I have - trying to assist when requested (with no thanks but rudeness).

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

    Default Re: Image Handler 2 Support

    Wanted to update folks.. I just tried and tested the change suggested in this referenced thread, and it appears to work..

    So I'll update the upcoming release with these changes (pending confirmation of identical results from the folks testing the new release..)

    Quote Originally Posted by Wickedprops View Post
    I am having a problem with loading pics and them showing in image handler but not in my store. I found this thread:

    http://www.zen-cart.com/forum/showthread.php?t=84164

    Most of the products Ive added are working fine, but the ones I checked to have a difference in the .jpg and .JPG extensions. In the thread it said you just needed to add a line in the .php but being a little new at this can anyone tell me how to access the area I need to edit?

    Thank you.
    Quote Originally Posted by DivaVocals View Post
    The issue here is that Unix interprets uppercase and lower case as being different. Therefore .jpg is not the same as .JPG. Change your file names so that the suffixes are the same..

    The change suggested in this thread will automatically convert your file extensions from uppercase to lowercase.. I've not tested this particular edit, but others have reported that the suggested change works. The post very clearly which file you need to edit and where the edit needs to be made.. So I'm not sure I understand what it is you are asking here..
    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.

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

    Default Re: Image Handler 2 Support

    Quote Originally Posted by DivaVocals View Post
    Wanted to update folks.. I just tried and tested the change suggested in this referenced thread, and it appears to work..

    So I'll update the upcoming release with these changes (pending confirmation of identical results from the folks testing the new release..)
    You know I had been looking at that problem after the discussion the other day, I was going to do the same thing via filetype but the way in that link is a much quicker less server intensive way.

    However the one advantage filetypes had is they deal with jpeg & jpg, so what about adding the option to deal with the jpeg vs jpg issue, below that code

    $data['imgExtension'] = strtolower($data['imgExtension']);
    if ($data['imgExtension'] == "jpeg") {$data['imgExtension'] = "jpg"; }
    Webzings Design
    Semi retired from Web Design

  6. #6726

    Default Re: Image Handler 2 Support

    Which file are we talking about editing? Because the one discussed here http://www.zen-cart.com/forum/showthread.php?t=84164
    has a file path that doesn't exist in the most recent version (admin/includes/module/ih_manger.php)

    I tried making these edits in admin/includes/ih_manager.php but it didn't work. Perhaps I'm editing the wrong file?
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

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

    Default Re: Image Handler 2 Support

    Quote Originally Posted by nigelt74 View Post
    You know I had been looking at that problem after the discussion the other day, I was going to do the same thing via filetype but the way in that link is a much quicker less server intensive way.

    However the one advantage filetypes had is they deal with jpeg & jpg, so what about adding the option to deal with the jpeg vs jpg issue, below that code

    $data['imgExtension'] = strtolower($data['imgExtension']);
    if ($data['imgExtension'] == "jpeg") {$data['imgExtension'] = "jpg"; }
    Just want to make sure I understand what it is that this code resolves:

    1. Convert lowercase file extensions to lowercase (JPG to jpg OR PNG to png)
    2. If the file extension = jpeg, covert it to jpg

    Am I understanding this correctly??? If so I'll add to the code, and we can all test to be sure we get the same results..



    Quote Originally Posted by ScriptJunkie View Post
    Which file are we talking about editing? Because the one discussed here http://www.zen-cart.com/forum/showthread.php?t=84164
    has a file path that doesn't exist in the most recent version (admin/includes/module/ih_manger.php)

    I tried making these edits in admin/includes/ih_manager.php but it didn't work. Perhaps I'm editing the wrong file?
    I'll FTP over the updated file in a few.. (Making omelets right now!)
    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. #6728
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Image Handler 2 Support

    Quote Originally Posted by DivaVocals View Post
    I'll FTP over the updated file in a few.. (Making omelets right now!)
    You've got mail!! (check the FTP folder)
    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.

  9. #6729

    Default Re: Image Handler 2 Support

    Quote Originally Posted by DivaVocals View Post
    You've got mail!! (check the FTP folder)
    Ok...because all my file extensions are uniform, here's what I did to prepare my site to test this bit of code change:

    For the images on this page, I used FTP to make the following changes:

    • main image file extension kept as .jpg
    • first additional image file extension changed to .JPG
    • second additional image file extension changed to .jpeg
    • cleared the bmz_cache folder
    • uploaded the new file you FTP'd over (which, except for the comments you added, is identical to the changes I made based on this thread discussion)

    Then I cleared the browser cache and relaunched the browser. Went to the above page and no additional images show.

    Did you make a change to more than one file? (I didn't upload the entire package...just the ih_manager.php file)
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  10. #6730

    Default Re: Image Handler 2 Support

    Further....Firebug doesn't even see the section of the page where additional images are stored....As I type this...I just thought of something...let me go back to IH Manager and make the changes there.

    BRB
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

 

 

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