Page 59 of 169 FirstFirst ... 949575859606169109159 ... LastLast
Results 581 to 590 of 1685
  1. #581
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    If I was you I would back up your version of category_product_listing.php.

    Then I would hover over a 'problem' link on the page and note down what address the link is pointing at.

    Then I would install the default version fo category_product_listing.php. Check to see if the problem still exists. If it does then you can compare the URL that the first page was pointing at to the URL the default version points at.

    I suspect that you are going to find that this is not to do with IH but lets wait and see.

  2. #582
    Join Date
    Sep 2005
    Posts
    460
    Plugin Contributions
    0

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    Quote Originally Posted by niccol View Post
    If I was you I would back up your version of category_product_listing.php.

    Then I would hover over a 'problem' link on the page and note down what address the link is pointing at.

    Then I would install the default version fo category_product_listing.php. Check to see if the problem still exists. If it does then you can compare the URL that the first page was pointing at to the URL the default version points at.

    I suspect that you are going to find that this is not to do with IH but lets wait and see.
    Changing back the original category_product_listing.php didn't help with the issue.
    The address is normal in both of them, it changes to the denied address only after clicking the product row.
    I may be blond but at least I found Zen.

  3. #583
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    Quote Originally Posted by ellivir View Post
    Changing back the original category_product_listing.php didn't help with the issue.
    The address is normal in both of them, it changes to the denied address only after clicking the product row.
    Well as niccol stated that would indicate an issue having nothing to do with IH4 (which I also suspected..)
    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.

  4. #584
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    So, you are saying that the problem exists either with the default category_product_listing.php file or the IH version of that file.

    Is that correct? If it is it suggests that it is not a IH issue.

    The only thing that it could be is a javascript conflict of some sort. When you click the row that is triggered by javascript. Kind of difficult to explain how to fault find that in a forum post to be honest. Are you running web developer tools or something similar? If that is greek to you then post again. And we will try and talk you through it. What browser are you using?

  5. #585
    Join Date
    Sep 2005
    Posts
    460
    Plugin Contributions
    0

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    I found this in the error logs (maybe I have misplaced something else when installing the IH4):

    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_MY_STORE in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799

    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_IMAGES in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799

    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_CUSTOMER_DETAILS in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799

    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_SHIPPING_PACKAGING in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799

    There is these constants in the language file though, so can't understand what is actually missing but this could be creating the issue, right?
    I may be blond but at least I found Zen.

  6. #586
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    Quote Originally Posted by ellivir View Post
    I found this in the error logs
    <snip>
    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_MY_STORE in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799
    <snip>
    There is these constants in the language file though, so can't understand what is actually missing but this could be creating the issue, right?
    What a dilemma. You and the error logs are producing conflicting reports. One of you is wrong.

    In cases like this, my money is on the computer as producing the most valid report, therefore I must conclude that if these constants ARE in the language file, then it isn't the same language file that the computer is using.

    Incidently, I've just recently fixed a near identical error on another customers website, which turned out to be the result of an incomplete merge of the english.php files during a V1.3.8a -> V1.5.1 upgrade. Actually, I suspect the merge went fine, but the modified file didn't get uploaded for some reason).

    These errors are trivial to fix, but fixing it will not solve your problem. (missing constants are usually harmless, and just make things look bad).

    The fact that these errors do exist though is usually a very good indication that there are probably some other files that also didn't get a proper upgrade, and it will be one of those that will be causing your current issues.

    The difficult part here is that *we* have no way of knowing which files these may be.. You'll need to do a compare between your installation and the distribution .zip files.

    Cheers
    Rod

    ps. As others have said. Not really an IH4 issue.

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

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    Quote Originally Posted by RodG View Post
    What a dilemma. You and the error logs are producing conflicting reports. One of you is wrong.

    In cases like this, my money is on the computer as producing the most valid report, therefore I must conclude that if these constants ARE in the language file, then it isn't the same language file that the computer is using.

    Incidently, I've just recently fixed a near identical error on another customers website, which turned out to be the result of an incomplete merge of the english.php files during a V1.3.8a -> V1.5.1 upgrade. Actually, I suspect the merge went fine, but the modified file didn't get uploaded for some reason).

    These errors are trivial to fix, but fixing it will not solve your problem. (missing constants are usually harmless, and just make things look bad).

    The fact that these errors do exist though is usually a very good indication that there are probably some other files that also didn't get a proper upgrade, and it will be one of those that will be causing your current issues.

    The difficult part here is that *we* have no way of knowing which files these may be.. You'll need to do a compare between your installation and the distribution .zip files.

    Cheers
    Rod

    ps. As others have said. Not really an IH4 issue.
    Quote Originally Posted by ellivir View Post
    I found this in the error logs (maybe I have misplaced something else when installing the IH4):

    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_MY_STORE in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799

    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_IMAGES in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799

    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_CUSTOMER_DETAILS in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799

    PHP Warning: constant() [<a href='function.constant'>function.constant</a>]: Couldn't find constant BOX_CONFIGURATION_SHIPPING_PACKAGING in /home2/customer/public_html/shop/admn/includes/functions/admin_access.php on line 799

    There is these constants in the language file though, so can't understand what is actually missing but this could be creating the issue, right?
    At this point your issue is off topic for this support thread.. the issues you are having are not related to IH4.. Please follow Rod's suggestions, and if you are still having issues, you will need to start a separate forum thread on the matter if you want community support/assistance on this..
    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. #588
    Join Date
    Apr 2006
    Location
    Dark Side of the Moon
    Posts
    987
    Plugin Contributions
    1

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    Okay, this is probably a simple fix, but I don't see where to take the text off the hover image. If you hover too long, you also get the tool tip, so I don't want to duplicate this.

    Thanks,

    chadd

  9. #589
    Join Date
    Mar 2009
    Posts
    108
    Plugin Contributions
    0

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    I had IH4 working fine but somehow I messed up things in my store this week and decided the best way to fix it would be to delete the includes folder and re install the includes folder. Well that fixed the problem but it caused a lot of new ones, one of which is it broke the IH4, I have added the files from the IH4 download's includes folder to my new stores includes folder but that didnt fix it. Is there something else I need to do or did I probably do it wrong? Thanks

  10. #590
    Join Date
    Mar 2009
    Posts
    108
    Plugin Contributions
    0

    Default Re: Image Handler 4 (for v1.5.x) Support Thread

    I have my problem fixed, Thanks

 

 

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. 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
  3. 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
  4. v138a Image Handler 2 (for ZC v1.3.8 ONLY) Support
    By timkroeger in forum All Other Contributions/Addons
    Replies: 7098
    Last Post: 12 Oct 2014, 03:48 AM
  5. Image Handler Support Please
    By nadinesky in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 30 Sep 2013, 03:47 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