Results 1 to 10 of 1988

Hybrid View

  1. #1
    Join Date
    Mar 2011
    Location
    Marco Island, FL
    Posts
    71
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Hi Clyde,
    No, I don't mean the category image (I haven't even tried if that would work or not). I mean the logo image (150px x 30px) that comes with the link exchange request.
    Please see my first test
    RESULT 1
    I have uploaded a 150x30 image with that request which doesn't show up on the result page.
    Also, although I have typed a description text in each category those texts are not showing up in those categories
    EXAMPLE 1
    instead they all show messed up when clicked on "Wiew All links" under the Links Manager side box
    EXAMPLE 2
    For images I am guessing I have to change some permission on some folder on the server but I don't know which.
    For descriptions not showing in their corresponding page I am guessing thats because there are no links yet.
    Any help will be appreciated. Also do I have to check back this thread if there's anybody responded or is there a way to be notified through e-mail. Thanks in advance.

  2. #2
    Join Date
    Mar 2011
    Location
    Marco Island, FL
    Posts
    71
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    OK, please disregard links image problem in the previous quot. I solved that by changing permissions to 777 on /links_image folder. Also did that on link_category but not tested yet. Most probably that will work, too (Thank you Clyde).

    No clue on EXAMPLE 1 and 2 above.
    Still searching...

  3. #3
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by enginarat View Post
    Hi Clyde,
    No, I don't mean the category image (I haven't even tried if that would work or not). I mean the logo image (150px x 30px) that comes with the link exchange request.
    Please see my first test
    RESULT 1
    I have uploaded a 150x30 image with that request which doesn't show up on the result page.
    Also, although I have typed a description text in each category those texts are not showing up in those categories
    EXAMPLE 1
    instead they all show messed up when clicked on "Wiew All links" under the Links Manager side box
    EXAMPLE 2
    For images I am guessing I have to change some permission on some folder on the server but I don't know which.
    For descriptions not showing in their corresponding page I am guessing thats because there are no links yet.
    Any help will be appreciated. Also do I have to check back this thread if there's anybody responded or is there a way to be notified through e-mail. Thanks in advance.
    For "result 1" - here's a screen shot that shows the displayed logo.
    Click image for larger version. 

Name:	Links-CrystalFloridaOnline.jpg 
Views:	176 
Size:	14.1 KB 
ID:	9296

    For "example 1" - There are no links in that category.

    For "example 2" - Install this fix. Unzip the package and upload the file to includes/templates/YOUR_TEMPLATE/templates/
    tpl_links_default.zip

    To be notified my e-mail just subscribe to this thread.

  4. #4
    Join Date
    Mar 2011
    Location
    Marco Island, FL
    Posts
    71
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Worked perfectly. Thank you.

  5. #5
    Join Date
    Mar 2011
    Location
    VIC, AU
    Posts
    57
    Plugin Contributions
    6

    Default Re: Link Manager 3.0 Support Thread

    Hi Clyde,

    Thanks heaps for your link manager 3.0 module. My links exchange is so easy to managed now. REAL COOL!.

    Just wondering. in Admin links count. Its seem to be "0" all the time, even though there have been lots of clicks with the links.

    I have also enable in Configuration>Links Manager>Enable Click Count to true, but it still not counting.

    Beside that i enable the Display Link Click Count to 1 for browser view and it still appear "0".

    Can you let me know whats missing? Or other option i've forgot.

    Thanks Clyde.
    Andrew

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by andrewnguyen View Post
    Hi Clyde,

    Thanks heaps for your link manager 3.0 module. My links exchange is so easy to managed now. REAL COOL!.

    Just wondering. in Admin links count. Its seem to be "0" all the time, even though there have been lots of clicks with the links.

    I have also enable in Configuration>Links Manager>Enable Click Count to true, but it still not counting.

    Beside that i enable the Display Link Click Count to 1 for browser view and it still appear "0".

    Can you let me know whats missing? Or other option i've forgot.

    Thanks Clyde.
    Andrew
    If you read through the thread, you'll see that the links count is disabled. Hopefully it will be restored in a future release.

  7. #7
    Join Date
    Mar 2011
    Location
    VIC, AU
    Posts
    57
    Plugin Contributions
    6

    Default Re: Link Manager 3.0 Support Thread

    Okie.

    Thanks Clyde.

  8. #8

    Default Re: Link Manager 3.0 Support Thread

    Try this for the click count:

    Open includes/functions/links.php

    Replace:
    Code:
    ////
    // Return the links url
      function zen_get_links_url($identifier) {
      global $db;
        $link = $db->Execute("select links_id, links_url from " . TABLE_LINKS . " where links_id = '" . (int)$identifier . "'");
        $links_string = $link->fields['links_url'];
        return $links_string;
      }
    With:
    Code:
    ////
    // Return the links url
      function zen_get_links_url($identifier) {
      global $db;
        $link = $db->Execute("select links_id, links_url from " . TABLE_LINKS . " where links_id = '" . (int)$identifier . "'");
        if(ENABLE_LINKS_COUNT == 'true') {
            $links_string = zen_href_link(FILENAME_REDIRECT, 'action=link&goto=' . $link->fields['links_id']);
        } else {
    	$links_string = $link->fields['links_url'];
        }
        return $links_string;
      }
    Save and close.

    Open includes/modules/pages/redirect/header.php

    Find:
    Code:
      case 'banner':
      $banner_query = "SELECT banners_url
                       FROM " . TABLE_BANNERS . " 
                       WHERE banners_id = :bannersID";
    
      $banner_query = $db->bindVars($banner_query, ':bannersID', $_GET['goto'], 'integer');
      $banner = $db->Execute($banner_query);
      if ($banner->RecordCount() > 0) {
        zen_update_banner_click_count($_GET['goto']);
        zen_redirect($banner->fields['banners_url']);
      }
      break;
    Add After:
    Code:
      case 'link':
      $link_query = "SELECT links_url
    				 FROM " . TABLE_LINKS . "
    				 WHERE links_id = :linksID";
      $link_query = $db->bindVars($link_query, ':linksID', $_GET['goto'], 'integer');
      $link = $db->Execute($link_query);
      if($link->RecordCount() > 0) {
    	require(DIR_WS_FUNCTIONS . 'links.php');   
    	zen_update_links_click_count($_GET['goto']);
    	zen_redirect($link->fields['links_url']);
      }
      break;
    Save and close.

    Don't forget to switch Enable Click Count to true under Configuration > Links Manager

 

 

Similar Threads

  1. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  2. v154 News Box Manager v2.0.0 [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 84
    Last Post: 19 Jan 2021, 04:17 PM
  3. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  4. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  5. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 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