Page 5 of 6 FirstFirst ... 3456 LastLast
Results 41 to 50 of 56
  1. #41
    Join Date
    Nov 2017
    Location
    Athens, Georgia, USA
    Posts
    99
    Plugin Contributions
    0

    Default Re: Missing Image Scanner [Support Thread]

    If I wanted this to open in a new page/tab when I run it, instead of using the already open page, is there anything I could edit to do so?

  2. #42
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Missing Image Scanner [Support Thread]

    Quote Originally Posted by Lordzoabar View Post
    If I wanted this to open in a new page/tab when I run it, instead of using the already open page, is there anything I could edit to do so?
    You're talking about the menu item link, right? Right-click on it and choose "open in new tab" (or use the equivalent keyboard shortcut, like on a Mac hold CMD before clicking on the link, and it'll open in a new tab; I'm sure Windows has an equivalent.)
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #43
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,145
    Plugin Contributions
    11

    Default Re: Missing Image Scanner [Support Thread]

    Yeahbuh. Ctrl click will do the trick.

  4. #44
    Join Date
    Apr 2008
    Location
    Qld, Australia
    Posts
    257
    Plugin Contributions
    6

    Default Re: Missing Image Scanner [Support Thread]

    V156a - got this wonderful tool to edit the product in zc156a by making the following changes to replace the second occurrence of the constant FILENAME_CATEGORIES with the constant FILENAME_PRODUCT in admin\image_checker.php

    from
    Code:
                                                            echo '<a href="' . zen_href_link(FILENAME_CATEGORIES, 
                                        'cPath=' . $parent_cPath . '&amp;cID=' . (int)$value['id']) . '&amp;action=edit_category" title="' . TEXT_EDIT_CATEGORY . '" target="_blank">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif',
                                        ICON_EDIT) . '</a>';
                            } else {
                                echo '<a href="' . zen_href_link(FILENAME_PRODUCT, /* BMH change */
                                        'cPath=' . zen_get_product_path((int)$value['id']) . '&amp;product_type=1&amp;pID=' . (int)$value['id']) . '&amp;action=new_product" title="' . TEXT_EDIT_PRODUCT . '" target="_blank">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif',
                                        ICON_EDIT) . '</a>';
    to
    Code:
                                echo '<a href="' . zen_href_link(FILENAME_PRODUCT, 
                                        'cPath=' . $parent_cPath . '&amp;cID=' . (int)$value['id']) . '&amp;action=edit_category" title="' . TEXT_EDIT_CATEGORY . '" target="_blank">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif',
                                        ICON_EDIT) . '</a>';
                            } else {
                                echo '<a href="' . zen_href_link(FILENAME_PRODUCT, 
                                        'cPath=' . zen_get_product_path((int)$value['id']) . '&amp;product_type=1&amp;pID=' . (int)$value['id']) . '&amp;action=new_product" title="' . TEXT_EDIT_PRODUCT . '" target="_blank">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif',
                                        ICON_EDIT) . '</a>';
    environment Dev: Zen Cart 156a; Apache 2.4.33; PHP 7.3.1; MySQL 5.7.21; Windows 10
    environment Test: Zen Cart 156a; Apache 2.4.29; PHP 7.2.4; MySQL 5.7.24; Linux 4.15.0

    packages / add-ons:
    ckeditor ; clone template 1.2.0; payment module fee;
    Direct bank Deposit V1.5.revised; zencart155 securepayxml (modified); ozpost v4.2.7;
    ceon_back_in_stock_notifications.9 (modified); export_shipping_information_V1.3.5;
    edit_orders-4.3.5 (modified); master password 4; admin log in as customer;
    image checker 2.0;

  5. #45
    Join Date
    Jun 2007
    Location
    Texas, USA
    Posts
    1,400
    Plugin Contributions
    1

    Default Re: Missing Image Scanner [Support Thread]

    I tried this with v1.5.6a and when it was finished running it loaded a /image_checker.php page and it said Page Not Found

    This page no longer exists.



    Does that mean that all images are there or that the module is not working correctly?


  6. #46
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,586
    Plugin Contributions
    30

    Default Re: Missing Image Scanner [Support Thread]

    I tried this (downloaded from Github) with a vanilla 1.56a and had no issues, but that is hardly a real test.
    This may be related to the quantity of images you have.
    Any debugs associated with your error?
    Steve
    github.com/torvista: Spanish Language Pack, Google reCaptcha, Structured Data, Multiple Copy-Move-Delete, Image Checker, BackupMySQL Admin/Auto...

  7. #47
    Join Date
    Jun 2007
    Location
    Texas, USA
    Posts
    1,400
    Plugin Contributions
    1

    Default Re: Missing Image Scanner [Support Thread]

    Quote Originally Posted by torvista View Post
    I tried this (downloaded from Github) with a vanilla 1.56a and had no issues, but that is hardly a real test.
    This may be related to the quantity of images you have.
    Any debugs associated with your error?
    Hello Steve,

    I revisted this and I don't know if anything has changed with the download but it worked fine and very quickly for the number of images i have. I had fixed a lot of problem images and don't know if this was a problem but it works great now. One thing that would be great is if it started with a page that allowed you to choose Categories or Products.... and the filters....

    Thank you!

    Shrimp-Gumbo

  8. #48
    Join Date
    Jun 2007
    Location
    Texas, USA
    Posts
    1,400
    Plugin Contributions
    1

    Default Re: Missing Image Scanner [Support Thread]

    Another great addition might be to have a search for all "no_image_available" products.... and allow the problem images to be moved to the "no_image_available" image since they are not working. Thank you!

  9. #49
    Join Date
    Jun 2007
    Location
    Texas, USA
    Posts
    1,400
    Plugin Contributions
    1

    Default Re: Missing Image Scanner [Support Thread]

    I ran on my production and it worked great! I do see now you have the one option on there too. Thank you!

  10. #50
    Join Date
    Jun 2007
    Location
    Texas, USA
    Posts
    1,400
    Plugin Contributions
    1

    Default Re: Missing Image Scanner [Support Thread]

    I ended up finding an issue....

    The "Edit" button is not working. When it is pushed it goes to a screen with just the upper menu and the zen cart logo

    This is what is linked to:
    /categories.php?cPath=12&product_type=1&pID=34739&action=new_product
    but when i click the regular edit button in admin I go to:
    /product.php?cPath=12&product_type=1&pID=34739&action=new_product

    Thank you!

 

 
Page 5 of 6 FirstFirst ... 3456 LastLast

Similar Threads

  1. v158 Image Handler 5 (for v1.5.5 - v1.5.8) Support Thread
    By lat9 in forum All Other Contributions/Addons
    Replies: 592
    Last Post: 12 Apr 2024, 09:06 PM
  2. v150 Image Handler 4 (for v1.5.x) Support Thread
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1684
    Last Post: 2 Oct 2022, 06:55 AM
  3. Attribute image replaces main product image on select [Support Thread]
    By exoticcorpse in forum All Other Contributions/Addons
    Replies: 158
    Last Post: 24 Aug 2020, 05:07 PM
  4. Rotating Image Slider [Support Thread]
    By picaflor-azul in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 8 Jun 2018, 02:16 AM
  5. Image Titles Support Thread
    By gjh42 in forum All Other Contributions/Addons
    Replies: 155
    Last Post: 9 Sep 2014, 04:51 AM

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