Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 32
  1. #11
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: zen_href_link('', '', 'NONSSL') PROBLEM

    O.k. Sorry to be gone so long, but I had to go to work, and it took me longer than I thought it would, today.

    Now, I see you have 3 images in your snapshot, already......It would have been nice to see them, though.
    Is this just 1 image, uploaded as instructed & resized by IH, or is this 3 different images?
    We're all here to help, and by blurring out some of the information, it just makes it harder for you to get the correct answer that you're needing.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  2. #12
    Join Date
    Mar 2007
    Posts
    15
    Plugin Contributions
    0

    Default Re: zen_href_link('', '', 'NONSSL') PROBLEM

    to fix this problem make sure that the original file name does not have any spaces within the name or any "("")" then it will work. replace the spaces with underscores or something.

    Some things have to be seen to be believed
    Things Have to be believed to be seen
    UncleMOe.co.uk
    Uncle-moe.co.uk
    Sterling-workwear.co.uk

  3. #13
    Join Date
    Jun 2007
    Posts
    10
    Plugin Contributions
    0

    Default Re: zen_href_link('', '', 'NONSSL') PROBLEM

    If any onlookers -
    I've just had this problem and noticed that if my file character length is too long it produces this error.

    Try reducing the file name length and also no spaces or invalid characters (as above) - seems to work ok for me now.


  4. #14
    Join Date
    Nov 2008
    Posts
    4
    Plugin Contributions
    0

    Default Re: zen_href_link('', '', 'NONSSL') PROBLEM

    we're having the same issue with our store - i've checked permissions, cleared the cache, advised re file naming. owner still gets this message when she tries to upload additional images. we're running v1.3.8, haven't had any issues until today. scratching my head - it doesn't happen when i upload, i already tried it. http:// digital designers den . com (help?)

  5. #15
    Join Date
    May 2008
    Location
    New Zealand
    Posts
    4
    Plugin Contributions
    0

    Default Re: Image Handler error: Unable to determine the page link!

    I had the same error message plus I ccould not see large images.
    I did everything what was suggested above, nothing happend.
    Finally, I made a new folder for regular images inside of the image forder and uploaded regular size images there (example: I have a category Hats. I have now 3 folders for this category - hats, medium and large).
    It solved the problem.
    Good luck.
    Everything about Ushanka hat - http://ushankahat.com

  6. #16
    Join Date
    Nov 2008
    Posts
    21
    Plugin Contributions
    1

    Default Re: Image Handler error: Unable to determine the page link!

    My problem was the same so I try all that stuff, nada..
    The issue was that the image was called "Calm & Collected" so the URL was "products_filter=3630&imgName=Calm&Collected_01&action=layout_info" guess what?
    the problem was that the "&" was stripping the URL, so I just change a piece of code:
    from
    PHP Code:
    if ( $_GET['imgName'] == $tmp_image_name ) {
          
    // an image is selected, highlight it
          
    echo '<tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\''
            
    zen_href_link(FILENAME_IMAGE_HANDLER'products_filter=' $_GET['products_filter']
            . 
    '&imgName=' .$tmp_image_name '&action=layout_edit') . '\'">' "\n";
            
    // set some details for later usage
          
    $selected_image_file DIR_WS_CATALOG $tmp_image_file_medium;
          
    $selected_image_file_large DIR_WS_CATALOG $tmp_image_file_large;
            
    $selected_image_link $tmp_image_link;
            
    $selected_image_name $tmp_image_name;
            
    $selected_image_suffix preg_replace("/^".$products_image_base."/"''$tmp_image_name);
            
    $selected_image_extension $products_image_extension;
        } else {
          echo 
    '<tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\''
             
    zen_href_link(FILENAME_IMAGE_HANDLER'products_filter=' $_GET['products_filter']
             . 
    '&imgName=' $tmp_image_name '&action=layout_info') . '\'">' "\n";
        } 
    to
    PHP Code:
    if ( $_GET['imgName'] == $tmp_image_name ) {
          
    // an image is selected, highlight it
          
    echo '<tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\''
            
    zen_href_link(FILENAME_IMAGE_HANDLER'products_filter=' $_GET['products_filter']
            . 
    '&imgName=' .urlencode($tmp_image_name) . '&action=layout_edit') . '\'">' "\n";
            
    // set some details for later usage
          
    $selected_image_file DIR_WS_CATALOG $tmp_image_file_medium;
          
    $selected_image_file_large DIR_WS_CATALOG $tmp_image_file_large;
            
    $selected_image_link $tmp_image_link;
            
    $selected_image_name $tmp_image_name;
            
    $selected_image_suffix preg_replace("/^".$products_image_base."/"''$tmp_image_name);
            
    $selected_image_extension $products_image_extension;
        } else {
          echo 
    '<tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\''
             
    zen_href_link(FILENAME_IMAGE_HANDLER'products_filter=' $_GET['products_filter']
             . 
    '&imgName=' urlencode($tmp_image_name) . '&action=layout_info') . '\'">' "\n";
        } 
    note the
    PHP Code:
    urlencode($tmp_image_name
    that's it..

  7. #17
    Join Date
    Jun 2009
    Posts
    29
    Plugin Contributions
    0

    Default Re: Image Handler error: Unable to determine the page link!

    Quote Originally Posted by foxfirediego View Post
    My problem was the same so I try all that stuff, nada..
    The issue was that the image was called "Calm & Collected" so the URL was "products_filter=3630&imgName=Calm&Collected_01&action=layout_info" guess what?
    the problem was that the "&" was stripping the URL, so I just change a piece of code:
    from
    PHP Code:
    if ( $_GET['imgName'] == $tmp_image_name ) {
          
    // an image is selected, highlight it
          
    echo '<tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\''
            
    zen_href_link(FILENAME_IMAGE_HANDLER'products_filter=' $_GET['products_filter']
            . 
    '&imgName=' .$tmp_image_name '&action=layout_edit') . '\'">' "\n";
            
    // set some details for later usage
          
    $selected_image_file DIR_WS_CATALOG $tmp_image_file_medium;
          
    $selected_image_file_large DIR_WS_CATALOG $tmp_image_file_large;
            
    $selected_image_link $tmp_image_link;
            
    $selected_image_name $tmp_image_name;
            
    $selected_image_suffix preg_replace("/^".$products_image_base."/"''$tmp_image_name);
            
    $selected_image_extension $products_image_extension;
        } else {
          echo 
    '<tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\''
             
    zen_href_link(FILENAME_IMAGE_HANDLER'products_filter=' $_GET['products_filter']
             . 
    '&imgName=' $tmp_image_name '&action=layout_info') . '\'">' "\n";
        } 
    to
    PHP Code:
    if ( $_GET['imgName'] == $tmp_image_name ) {
          
    // an image is selected, highlight it
          
    echo '<tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\''
            
    zen_href_link(FILENAME_IMAGE_HANDLER'products_filter=' $_GET['products_filter']
            . 
    '&imgName=' .urlencode($tmp_image_name) . '&action=layout_edit') . '\'">' "\n";
            
    // set some details for later usage
          
    $selected_image_file DIR_WS_CATALOG $tmp_image_file_medium;
          
    $selected_image_file_large DIR_WS_CATALOG $tmp_image_file_large;
            
    $selected_image_link $tmp_image_link;
            
    $selected_image_name $tmp_image_name;
            
    $selected_image_suffix preg_replace("/^".$products_image_base."/"''$tmp_image_name);
            
    $selected_image_extension $products_image_extension;
        } else {
          echo 
    '<tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\''
             
    zen_href_link(FILENAME_IMAGE_HANDLER'products_filter=' $_GET['products_filter']
             . 
    '&imgName=' urlencode($tmp_image_name) . '&action=layout_info') . '\'">' "\n";
        } 
    note the
    PHP Code:
    urlencode($tmp_image_name
    that's it..
    I have tried everythign in this thread and nothing seems to help.

    Image handler worked perfectly some days ago, and now its all messed up. Same happend a month ago, and it just suddenly repaired it self..

    But now its back at this again:

    Error!

    Unable to determine the page link!

    Function used:

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

  8. #18
    Join Date
    Oct 2009
    Location
    Helena, MT
    Posts
    6
    Plugin Contributions
    0

    Default Re: Image Handler error: Unable to determine the page link!

    I am having the same problem. I am brand new to using Image Handler, I got it installed no problem, got one additional image to load and now this is what I get when I try to add any additional images:
    Error!

    Unable to determine the page link!

    Function used:

    zen_href_link('', '', 'NONSSL')
    I have tried shortning my file names, and creating a new directory inside of images. Please Help!!

  9. #19
    Join Date
    Apr 2009
    Location
    Portland, Oregon
    Posts
    29
    Plugin Contributions
    0

    Default Re: Image Handler error: Unable to determine the page link!

    We just had the same issue. It turns out there was an ampersand in the file names. Check for any special characters or spaces that might be in your image file names and remove them.

  10. #20
    Join Date
    Apr 2008
    Posts
    154
    Plugin Contributions
    0

    Default Re: Image Handler error: Unable to determine the page link!

    i am having the same issue today and never had it before.. i've done everything posted here and change the file name 6 times to something very short and still doesn't work.. what gives??
    Website Developer and Search Engine Optimazation Boise Idaho. Details at BoiseWired.com

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. v151 Admin will not display. Error. unable to determine the page link
    By sports guy in forum General Questions
    Replies: 15
    Last Post: 14 Nov 2012, 03:02 AM
  2. Error! Unable to determine the page link! in home page
    By mipavluk in forum General Questions
    Replies: 2
    Last Post: 2 Jan 2011, 12:37 AM
  3. Error! Unable to determine the page link!
    By MattBUK in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 7 Feb 2009, 03:57 PM
  4. Currencies: Error! Unable to determine the page link!
    By cdbevan in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 14 Jan 2008, 02:05 AM
  5. admin/catalog categories unable to determine page link - 135, 137, img handler
    By Sueter in forum Installing on a Linux/Unix Server
    Replies: 2
    Last Post: 6 May 2007, 04:10 AM

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