Results 1 to 10 of 1688

Hybrid View

  1. #1
    Join Date
    Sep 2005
    Posts
    460
    Plugin Contributions
    0

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

    Quote Originally Posted by DivaVocals View Post
    Do they have access to products?? Do you have any other modules installed which would affect access to products??
    Permission to access the products yes, and can see categories and subcategories but ONLY WHEN clicking the product on the category page in order to open the product form, it goes to this denied.php page instead. There should be nothing else affecting on this. CKEditor has been there already before and the administrator was successfully updating the product descriptions using it. The administrator person was updating the products just few hours before IH4 was installed, using her own profile, and no problem arise then. Superuser continues to be able to update the products.
    The only thing affecting on this very page should be the changes for the category listing that IH4 needs to add the icon there. Should I replace that with the original and check if that helps?
    I may be blond but at least I found Zen.

  2. #2
    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.

  3. #3
    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.

  4. #4
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    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.

  5. #5
    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?

  6. #6
    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.

  7. #7
    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.

  8. #8
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    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.

  9. #9
    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

 

 

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: 749
    Last Post: 20 May 2026, 03:47 PM
  2. Attribute image replaces main product image on select [Support Thread]
    By exoticcorpse in forum All Other Contributions/Addons
    Replies: 176
    Last Post: 14 Dec 2025, 12:55 AM
  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

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