Zen Cart Logo
Forums / Addon Sideboxes / Link Manager 3.0 Support Thread

Link Manager 3.0 Support Thread

Views: 486,693

Results 1,861 to 1,880 of 1,988
7 Jun 2011, 3:33 AM
#1861
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Link Manager 3.0 Support Thread

andrewnguyen:

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.

8 Jun 2011, 2:07 AM
#1862
andrewnguyen avatar

andrewnguyen

New Zenner

Join Date:
Mar 2011
Location:
VIC, AU
Posts:
64
Plugin Contributions:
2

Re: Link Manager 3.0 Support Thread

Okie.

Thanks Clyde.

7 Jul 2011, 3:13 AM
#1863
nsanford avatar

nsanford

New Zenner

Join Date:
Dec 2007
Posts:
69
Plugin Contributions:
1

Re: Link Manager 3.0 Support Thread

Try this for the click count:

Open includes/functions/links.php

Replace:

////
// 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:

////
// 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:

  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:

  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

6 Aug 2011, 8:07 PM
#1864
lopi avatar

lopi

New Zenner

Join Date:
Jan 2009
Posts:
45
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hello,
could you help me ?
I have links_manager_v3-5-3c and all banner images are in /images/links_image/ its posible to use my partners destination like src="http://test.com/ikon88x31.jpg" thank you for reply.... :oops:

6 Aug 2011, 8:25 PM
#1865
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

Lopi:

Hello,
could you help me ?
I have links_manager_v3-5-3c and all banner images are in /images/links_image/ its posible to use my partners destination like src="http://test.com/ikon88x31.jpg" thank you for reply.... :oops:

no this is not possible

7 Aug 2011, 10:10 AM
#1866
lopi avatar

lopi

New Zenner

Join Date:
Jan 2009
Posts:
45
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Thank you .. and its posible to add button in admin/others/links for check all links not only one ;) ? thank you ... :blush:

7 Aug 2011, 3:10 PM
#1867
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

Lopi:

Thank you .. and its posible to add button in admin/others/links for check all links not only one ;) ? thank you ... :blush:

no you will need to check each link individually

This is the default for links manager.

8 Aug 2011, 1:27 AM
#1868
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

i need help..my problem is i don't know how to add categories to the drop down menu in link manager 3.5.3 using zen 1.3.9h... I have searched threads to no avail please help ..please :frusty:

8 Aug 2011, 1:34 AM
#1869
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

mitchellcurtisjohnso:

i need help..my problem is i don't know how to add categories to the drop down menu in link manager 3.5.3 using zen 1.3.9h... I have searched threads to no avail please help ..please :frusty:

admin -> extras -> link categories

click the "new category" button

fill in the information on the next page and click the "save" button

8 Aug 2011, 1:52 AM
#1870
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

admin -> extras -> link categories in file manager or zen cart ?

8 Aug 2011, 1:57 AM
#1871
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

is this what i edit? there is only one category

<?php /** *@Links Manager * * @package admin * @copyright (c)2006-2008 Clyde Jones * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0 * @version $Id: tpl_links_submit_default.php 3.5.3 4/16/2010 Clyde Jones $ */ define('FILENAME_LINKS', 'links'); define('FILENAME_LINK_CATEGORIES', 'link_categories'); define('FILENAME_LINKS_CONTACT', 'links_contact'); define('TABLE_LINK_CATEGORIES', DB_PREFIX . 'link_categories'); define('TABLE_LINK_CATEGORIES_DESCRIPTION', DB_PREFIX . 'link_categories_description'); define('TABLE_LINKS', DB_PREFIX . 'links'); define('TABLE_LINKS_DESCRIPTION', DB_PREFIX . 'links_description'); define('TABLE_LINKS_TO_LINK_CATEGORIES', DB_PREFIX . 'links_to_link_categories'); define('TABLE_LINKS_STATUS', DB_PREFIX . 'links_status'); //EOF
8 Aug 2011, 2:00 AM
#1872
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

my site http://www.pigeonreport.com dude ive been at this all freakin day all i want to do is add categories to the drop down and i dont know where to turn

8 Aug 2011, 2:06 AM
#1873
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

been to file manager in c panel no admin extra links and in zen cart i find nothing wtf i love the mod i guess im just a retard :frusty:

8 Aug 2011, 2:44 AM
#1874
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

God help a newbie with this cause Clyde is a one answer kind of guy and if you dont understand his answer he just ignores your request for additional information. I asked " Do I edit the link categories in Zen Cart or C Panel " pretty stupid question if your Clyde but if your me and dont know where to turn its a very important question. Now I have a link manager stuck on my website that I cant do nothing with.I would have never put it on there if I new there was so little support.

Thanks Clyde

8 Aug 2011, 2:55 AM
#1875
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

mitchellcurtisjohnso:

admin -> extras -> link categories in file manager or zen cart ?

it in the zen cart admin interface

8 Aug 2011, 3:00 AM
#1876
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

mitchellcurtisjohnso:

God help a newbie with this cause Clyde is a one answer kind of guy and if you dont understand his answer he just ignores your request for additional information. I asked " Do I edit the link categories in Zen Cart or C Panel " pretty stupid question if your Clyde but if your me and dont know where to turn its a very important question. Now I have a link manager stuck on my website that I cant do nothing with.I would have never put it on there if I new there was so little support.

Thanks Clyde

This thread has 188 pages and solutions for most of the problems encountered by users of this mod.

I haven't ignored your request (see the post just above this one)

8 Aug 2011, 3:02 AM
#1877
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

no "link categories" in extra zen cart interface only record / music found there any ideas

8 Aug 2011, 3:08 AM
#1878
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Clyde i really want this mod to work I think its awesome but I am at a loss dude..
I built the site and had to learn alot of stuff but this one I kid you not I have been stuck on since 8:39 this morning my ######## hasn't left this chair and I still haven't fig it out gzzz

8 Aug 2011, 3:11 AM
#1879
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

mitchellcurtisjohnso:

no "link categories" in extra zen cart interface only record / music found there any ideas

make sure you've uploaded ALL of the following files:

admin/link_categories.php
admin/links.php
admin/links_contact.php
admin/includes/boxes/extra_boxes/links_extras_dhtml.php
admin/includes/extra_datafiles/links_manager.php
admin/includes/functions/extra_functions/links_manager.php
admin/includes/languages/english/links.php
admin/includes/languages/english/link_categories.php
admin/includes/languages/english/links_contact.php
admin/includes/languages/english/extra_definitions/links.php

If you are using zen cart 1.3.9, make sure you change the admin folder name to match The admin folder name you are using.

For the benefit of everyone using this mod ( I don't do the answers in PMs )

8 Aug 2011, 3:38 AM
#1880
Join Date:
Jan 2011
Posts:
17
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Clyde Im dying here .. like pullin teeth to get an answer from you ..is my problem to hard for you to figure out ? Ok everybody look im bowing before Clyde of Oz Clyde your the man yup number one top dog big cheese hell I think you walk on water now do you think you might answer the damn question I asked 2 hours ago !!