-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
marianama
Hello Clyde,
Thank you for contribution. I am using zen-cart1.3.9h and Links Manager v3_5_3c.
I got several promblems:
1. define_links.php not working. I edited this file: ../includes/languages/english/html_includes/mytemplate/define_links.php and the links page remained unchanged.
2. Setting of "Number of link catagories per row" did not work. - I set it to 1 and it shows 3.
3. Catagory order does not work. They do not show as I set at Extra-Link Catagories.
Best Regards,
Mariana
Link to your site would be useful.
1. How are you editing this file? if you are using the admin -> define pages editor have you made sure the file is writable? That is have you changed the file permissions to 777 before editing?
2. known issue and is being worked on.
3. by default the categories are listed by name.
This will be changed to allow listing by sort order in a future update.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
Link to your site would be useful.
1. How are you editing this file? if you are using the admin -> define pages editor have you made sure the file is writable? That is have you changed the file permissions to 777 before editing?
2. known issue and is being worked on.
3. by default the categories are listed by name.
This will be changed to allow listing by sort order in a future update.
Quote:
Originally Posted by
marianama
Hello Clyde,
Thank you for contribution. I am using zen-cart1.3.9h and Links Manager v3_5_3c.
I got several promblems:
1. define_links.php not working. I edited this file: ../includes/languages/english/html_includes/mytemplate/define_links.php and the links page remained unchanged.
2. Setting of "Number of link catagories per row" did not work. - I set it to 1 and it shows 3.
3. Catagory order does not work. They do not show as I set at Extra-Link Catagories.
Best Regards,
Mariana
This is a followup to my last post.
for number 3 to allow display by sort order.
open includes/templates/mytemplate/templates/tpl_links_default.php
find the following section of code:
PHP Code:
$categories_query = $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from " . TABLE_LINK_CATEGORIES . " lc, " . TABLE_LINK_CATEGORIES_DESCRIPTION . " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lcd.link_categories_name");
And replace it with the following:
PHP Code:
$categories_query = $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image, lc.link_categories_sort_order from " . TABLE_LINK_CATEGORIES . " lc, " . TABLE_LINK_CATEGORIES_DESCRIPTION . " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lc.link_categories_sort_order");
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
Link to your site would be useful.
1. How are you editing this file? if you are using the admin -> define pages editor have you made sure the file is writable? That is have you changed the file permissions to 777 before editing?
2. known issue and is being worked on.
3. by default the categories are listed by name.
This will be changed to allow listing by sort order in a future update.
Hello Clyde,
Thank you very much for prompt response.
1. I wrote it from ftp. I found the point. The edited content of define_links.php shows on the link catagory page rather (like http://www.mxmach.com/links.html?lPath=2) than link index page (like http://www.mxmach.com/links.html). Now I have wrote the tpl_link_default.php to edit the link page, see http://www.mxmach.com/links.html
3. Fixed. Many thanks for help.
Now I've got another question.
The Ultimate SEO URL Addon seems not working for links pages, as you can see the URL is like http://www.mxmach.com/links.html?lPath=2. Any idea for this? I would like to edit each page title of link catagory as well if possible.
Regards,
Mariana
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
marianama
Hello Clyde, Thank you very much for prompt response.
1. I wrote it from ftp. I found the point. The edited content shows on the link catagory page rather than link index page. Now I have wrote the tpl_link_default.php to edit the link page, see
http://www.mxmach.com/links.html
3. Fixed. Many thanks for help.
Now I've got another question. The Ultimate SEO URL Addon seems not working for links pages, as you can see the URL is like
http://www.mxmach.com/links.html?lPath=2. Any idea for this? I would like to edit each page title of link catagory as well if possible.
You're going to have to check the support thread for the ultimate seo add-on
-
Re: Link Manager 3.0 Support Thread
Thank you for your time, Clyde. :bigups:
-
Re: Link Manager 3.0 Support Thread
Hi,
I'm using Link Manager v3.5.3c and ZC version 1.3.9f.
Everything works great except for the link image. I cannot get the correct directory to be accessed.
I have tried various combinations to remove the the first http address and extra information but cannot seem to remove it.
On the configuration page I have it set to "/links_image" and this is the address produced: "http://www.mystore.com/images/http://www.mystore.com/links_image/vendlogo.jpg"
The category image directory works fine and goes to the address I entered.
I know that there is something really simple I should be doing but I can't figure it out.
Please help!
Thanks
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
dmford
Hi,
I'm using Link Manager v3.5.3c and ZC version 1.3.9f.
Everything works great except for the link image. I cannot get the correct directory to be accessed.
I have tried various combinations to remove the the first http address and extra information but cannot seem to remove it.
On the configuration page I have it set to "/links_image" and this is the address produced: "http://www.mystore.com/images/http://www.mystore.com/links_image/vendlogo.jpg"
The category image directory works fine and goes to the address I entered.
I know that there is something really simple I should be doing but I can't figure it out.
Please help!
Thanks
the links configuration should be links_image/
You didn't say how you are adding the images, but from your description you are trying to add them from the admin side.
all you need to add to the image url field is the name of the image
links_image/vendlogo.jpg
-
Re: Link Manager 3.0 Support Thread
Hi Clyde - This is a detail I've been meaning to ask about for a while...
I have the links manager installed on a Zen 1.3.6 site. Everything functions fine except that the sort order setting in configuration/links manager does not seem to have any impact. As a result the first page of a specific category sorts by Oldest-Newest rather than the reverse, which is the desired setting.
Here is a link to the site in question.
Thanks!!
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
MeltDown
Hi Clyde - This is a detail I've been meaning to ask about for a while...
I have the links manager installed on a Zen 1.3.6 site. Everything functions fine except that the sort order setting in
configuration/links manager does not seem to have any impact. As a result the first page of a specific category sorts by Oldest-Newest rather than the reverse, which is the desired setting.
Here is a
link to the site in question.
Thanks!!
open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php
find the following line of code
Code:
if (DEFINE_SORT_ORDER == 2) $sortorder = "l.links_date_added desc";
And change it to the following
Code:
if (DEFINE_SORT_ORDER == 2) $sortorder = "l.links_date_added asc";
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php
find the following line of code
Code:
if (DEFINE_SORT_ORDER == 2) $sortorder = "l.links_date_added desc";
And change it to the following
Code:
if (DEFINE_SORT_ORDER == 2) $sortorder = "l.links_date_added asc";
I didn't find the bit of code and assumed that it was because this site is running a Zen 1.3.6 it may not have yet been added. I checked the most recent version of tpl_links_default.php and found that to be the case.
I tried adding the following code to my 1.3.6 version but it did not have any impact:
PHP Code:
// check sort order
//$sortorder = "ld.links_title";
if (DEFINE_SORT_ORDER == 1) $sortorder = "ld.links_title";
if (DEFINE_SORT_ORDER == 2) $sortorder = "l.links_date_added asc";
if (DEFINE_SORT_ORDER == 3) $sortorder = "l.links_clicked desc";
I also tried over-writing the old file with the new but that threw an error.
Any suggestions, or is a total upgrade necessary?
Thanks
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
MeltDown
I didn't find the bit of code and assumed that it was because this site is running a Zen 1.3.6 it may not have yet been added. I checked the most recent version of tpl_links_default.php and found that to be the case.
I tried adding the following code to my 1.3.6 version but it did not have any impact:
PHP Code:
// check sort order
//$sortorder = "ld.links_title";
if (DEFINE_SORT_ORDER == 1) $sortorder = "ld.links_title";
if (DEFINE_SORT_ORDER == 2) $sortorder = "l.links_date_added asc";
if (DEFINE_SORT_ORDER == 3) $sortorder = "l.links_clicked desc";
I also tried over-writing the old file with the new but that threw an error.
Any suggestions, or is a total upgrade necessary?
Thanks
I'm guessing your using links manager v3.0.1.
Upgrading to the latest version of links manager should work with your 136 version of zen cart.
-
Re: How to Specify Unique Meta Tag on Each Link Pages
How do I specify unique meta tags for each individual link page?
I can specify the same keywords for ALL my link pages with:
define('META_TAG_KEYWORDS_LINKS','links page');
but how do I make each link page unique? For example, my Children's link page ID is 20, and I'm having problems with the &lPath=20.
The following code does not change the keywords on this particular link page:
define('META_TAG_KEYWORDS_LINKS&lPath=20','childrens links');
I've tried capitalizing the LPATH=20, using & but it just isn't working. Help!
Using file: /includes/languages/english/desert_noon/meta_tags.php
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
CustomBooks
How do I specify unique meta tags for each individual link page?
I can specify the same keywords for ALL my link pages with:
define('META_TAG_KEYWORDS_LINKS','links page');
but how do I make each link page unique? For example, my Children's link page ID is 20, and I'm having problems with the &lPath=20.
The following code does not change the keywords on this particular link page:
define('META_TAG_KEYWORDS_LINKS&lPath=20','childrens links');
I've tried capitalizing the LPATH=20, using & but it just isn't working. Help!
Using file: /includes/languages/english/desert_noon/meta_tags.php
You can try this: it checks for the lpath and then defines the various Meta Tags. You'll need to do this for each of your links categories.
//Check for links pages
if (isset($_GET['lPath']) && ($_GET['lPath'] == '20')) {
define('META_TAG_DESCRIPTION_LINKS','childrens links');
define('META_TAG_KEYWORDS_LINKS','childrens links');
define('META_TAG_TITLE_LINKS', 'childrens links');
}
-
Re: Unique Meta Tags for Links Pages
Thanks, Clyde. That lets me specify unique meta tags for each link category - but is there a way to slightly alter the meta tags for each link PAGE within the category (i.e., how do I address ?main_page=links&lPath=20&page=2)?
I would like the meta tag title for the first page,
?main_page=links&lPath=20
to read something like "Childrens Links Page 1"
and the meta tag title for the second page,
?main_page=links&lPath=20&page=2
to read something like "Childrens Links Page 2"
How do I add a "Page 2" or "2" - the link page number to the meta tag?
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
CustomBooks
Thanks, Clyde. That lets me specify unique meta tags for each link category - but is there a way to slightly alter the meta tags for each link PAGE within the category (i.e., how do I address ?main_page=links&lPath=20&page=2)?
I would like the meta tag title for the first page,
?main_page=links&lPath=20
to read something like "Childrens Links Page 1"
and the meta tag title for the second page,
?main_page=links&lPath=20&page=2
to read something like "Childrens Links Page 2"
How do I add a "Page 2" or "2" - the link page number to the meta tag?
You don't have that amount of fine tuning even on the product listing pages, so I'm not sure its even possible.
-
Re: Link Manager 3.0 Support Thread
I feel a bit stupid. i got the module installed quit well, but now i realise i don't have a sidebox in my shop:blush::blush: i have a css header menu and left the sideboxes to sleep.
( without categories, just like jade made it)
can i use this module anyhow? and if so, how?
thanks
Eugenie:blush: again..
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
kernheimer
I feel a bit stupid. i got the module installed quit well, but now i realise i don't have a sidebox in my shop:blush::blush: i have a css header menu and left the sideboxes to sleep.
( without categories, just like jade made it)
can i use this module anyhow? and if so, how?
thanks
Eugenie:blush: again..
Link to your site?
-
Re: Link Manager 3.0 Support Thread
Hi,
First I used 1.38a and linkmanager 3.53 and everythings works. then I updated Zencart to 1.39h and linkmanager refused to uploaded the banners. So I decided to upgrade to 3.53
And everything is working fine exept ......the banners, when a visitor want to upload a banner, its not working, they get the message: Warning: no file uploaded.
configuration: Link Banner Image Directory links_image/
the directory images/links_image is 777.
all files are on the server
:(
the url is http://www.habbekratskinderkleding.nl/links.
Lieke :wacko:
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
Webbies
Hi,
First I used 1.38a and linkmanager 3.53 and everythings works. then I updated Zencart to 1.39h and linkmanager refused to uploaded the banners. So I decided to upgrade to 3.53
And everything is working fine exept ......the banners, when a visitor want to upload a banner, its not working, they get the message: Warning: no file uploaded.
configuration: Link Banner Image Directory links_image/
the directory images/links_image is 777.
all files are on the server
:(
the url is
http://www.habbekratskinderkleding.nl/links.
Lieke :wacko:
I just did a test submission. check it and see if the image was uploaded.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
I just did a test submission. check it and see if the image was uploaded.
thanks but no it is not uploades, the default image is used.:no:
Lieke
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
Webbies
thanks but no it is not uploades, the default image is used.:no:
Lieke
Try uploading a clean copy of:
includes/modules/pages/links_submit/header_php.php
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
Try uploading a clean copy of:
includes/modules/pages/links_submit/header_php.php
done, but...... :no: no effect
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
Webbies
done, but...... :no: no effect
when I delete the .htaccess (from images dir): no change
strange thing is when I went to http://www.habbekratskinderkleding.nl/images I get the error page from zencart
but when I go to www.boykie.n/images (this site has also zencart 1.39h and linkmanager 3.53. I get the error from the server: Forbidden
You don't have permission to access /images on this server. www.boykie.nl
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
Webbies
You might want to check with your hosting company and see if they have any settings on the server which might prevent uploading the images.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
You might want to check with your hosting company and see if they have any settings on the server which might prevent uploading the images.
I contacted the hosting company but no changes are made.
first everthing works fine but after the update to 1.39h this problem appears so there's something in this update but I can't find what it is:censored:
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
Webbies
I contacted the hosting company but no changes are made.
first everthing works fine but after the update to 1.39h this problem appears so there's something in this update but I can't find what it is:censored:
I've had no problems with 139h and links manager, including uploading the banner images.
-
Re: Link Manager 3.0 Support Thread
the images from the link_category is working fine
so it has something to do with uploading from the frontend:wacko:
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
Webbies
the images from the link_category is working fine
so it has something to do with uploading from the frontend:wacko:
You've said you're getting a page not found error instead of a Forbidden error.
Which make be think there is something in your configuration settings which is causing the problem.
-
Re: Link Manager 3.0 Support Thread
:clap: yessssssss
I found the problem, its the simple seo!!!!!
thanks for all your reply's
keep up the good work:happy:
Lieke
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
Webbies
:clap: yessssssss
I found the problem, its the simple seo!!!!!
thanks for all your reply's
keep up the good work:happy:
Lieke
glad you got it sorted.
-
Re: Link Manager 3.0 Support Thread
Downloaded all he files, ran the SQL. but no new sidebox in layout boxes controller.
I am using the gloss black template but there is only a gloss_black folder in includes/templates.
Should I change ALL of the YOUR_TEMPLATE to gloss_black?
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
cdjohn31
Downloaded all he files, ran the SQL. but no new sidebox in layout boxes controller.
I am using the gloss black template but there is only a gloss_black folder in includes/templates.
Should I change ALL of the YOUR_TEMPLATE to gloss_black?
Yes, change YOUR_TEMPLATE to gloss_black
-
Re: Link Manager 3.0 Support Thread
Hello Clyde,
I am having a problem with the maximum title length. I am trying to input a title that is longer than 64 characters. It seems like this is the maximum allowed because it is a varchar(64) text box. I am wondering how if I can have titles longer than 64 characters?
I am running 1.3.9f and v3.5.3c, it was a new install I setup yesterday. My website is http://www.glasspeace.com
Thank you very much for this mod and for your help!
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
amirshawn80
Hello Clyde,
I am having a problem with the maximum title length. I am trying to input a title that is longer than 64 characters. It seems like this is the maximum allowed because it is a varchar(64) text box. I am wondering how if I can have titles longer than 64 characters?
I am running 1.3.9f and v3.5.3c, it was a new install I setup yesterday. My website is
http://www.glasspeace.com
Thank you very much for this mod and for your help!
You'll have to change that directly in the database table.
-
Re: Link Manager 3.0 Support Thread
I am not exactly sure how to do that. I am a beginner with zen cart, I feel lucky this is the first time I've had to ask for help. It's amazing the amount of support you can get just by browsing the forums. I just don't want to mess anything up.
I went into PHPmyadmin
I found the spot where links_title is set to varchar(64)
I just don't know what the correct setting should be. I tried changing the Length/Values but that didn't seem to change anything. Then I tried changing the varchar(64) to text. That brought up an error.
Thanks for the quick reply
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
amirshawn80
I am not exactly sure how to do that. I am a beginner with zen cart, I feel lucky this is the first time I've had to ask for help. It's amazing the amount of support you can get just by browsing the forums. I just don't want to mess anything up.
I went into PHPmyadmin
I found the spot where links_title is set to varchar(64)
I just don't know what the correct setting should be. I tried changing the Length/Values but that didn't seem to change anything. Then I tried changing the varchar(64) to text. That brought up an error.
Thanks for the quick reply
open phpmyadmin
select the database for zen cart
select the links description table
click the structure button at the top
select links title
click edit
change the 64 to the length you want
click save
-
Re: Link Manager 3.0 Support Thread
That's how I tried to change it earlier.
I figured out that after making those changes to the datable, I can only input a long title through the web submission page. If I try to enter the link through the admin I can only enter 64 characters.
I don't need a fix for that, it just may be something you can fix in future versions
Thank you for your support
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
amirshawn80
That's how I tried to change it earlier.
I figured out that after making those changes to the datable, I can only input a long title through the web submission page. If I try to enter the link through the admin I can only enter 64 characters.
I don't need a fix for that, it just may be something you can fix in future versions
Thank you for your support
open YOUR_ADMIN
edit links.php
find the following section of code (around line 330) change the maxlength to whatever you need.
<?php
if ($error == true) {
if ($entry_links_title_error == true) {
echo zen_draw_input_field('links_title', $lInfo->links_title, 'maxlength="64"') . ' ' . ENTRY_LINKS_TITLE_ERROR;
} else {
echo $lInfo->links_title . zen_draw_hidden_field('links_title');
}
} else {
echo zen_draw_input_field('links_title', $lInfo->links_title, 'maxlength="64"', true);
}
?></td>
-
Re: Link Manager 3.0 Support Thread
Thanks, that worked great, I didn't even notice you replied until now. I really love the links program!
Thanks
:smile:
-
Re: Link Manager 3.0 Support Thread
Zen ver =v1.3.9ep1
Links Manager Version = 3.5.3
[FONT=Calibri]I see a few different versions of captch available[/FONT]
[FONT=Calibri]Which one works best with link manager?[/FONT]
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
fvb
Zen ver =v1.3.9ep1
Links Manager Version = 3.5.3
[FONT=Calibri]I see a few different versions of captch available[/FONT]
[FONT=Calibri]Which one works best with link manager?[/FONT]
Did you look through this thread; there are several discussions on using captcha with links manager and a couple of fixes specifically for links manager.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
Did you look through this thread; there are several discussions on using captcha with links manager and a couple of fixes specifically for links manager.
Yes I did
I even download links_caqtcha_fix.zip
but I do not see where is tells me which captch mod its for
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
fvb
Yes I did
I even download links_caqtcha_fix.zip
but I do not see where is tells me which captch mod its for
Use this mod: captcha_using_ttf__gd_2-9
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
Use this mod: captcha_using_ttf__gd_2-9
thanks:clap:
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
fvb
thanks:clap:
thanks again
it works great
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
CustomBooks
Clyde-
Were you able to duplicate this problem? (#1630) What is the fix?
I'm having the same difficulty....
=====================================
I'll do some checking and see if I can duplicate the problem.
Clyde
=====================================
#1630
Originally Posted by SWLady
Wow Clyde, you are really fast!
I downloaded the new file and ftp'd it as you said. I am still showing the text in the email twice as copied below:
Dear Kathy Meyers,
Welcome to KZ Embroidery link exchange program.
Your link has been successfully submitted at KZ Embroidery. It will be added to our listing as soon as we approve it.
You will receive an email about the status of your submittal. If you have not received it within the next 48 hours, please contact us before submitting your link again.
For help with our link exchange program, please email the store-owner:
[email protected]
Note: This email address was given to us during a link submittal. If you have a problem, please send an email to
[email protected]
Welcome to KZ Embroidery link exchange program.
Your link has been successfully submitted at KZ Embroidery. It will be added to our listing as soon as we approve it.
You will receive an email about the status of your submittal. If you have not received it within the next 48 hours, please contact us before submitting your link again.
I believe this only happens when HTML emails are turned on.
To solve goto includes/modules/pages/links_submit/header.php
around line 137
change
$html_msg['EMAIL_GREETING'] = str_replace('\n','',$email_text);
to
$html_msg['EMAIL_GREETING'] = sprintf(EMAIL_GREET_NONE, $name);
Please note I am a complete novice, so would like someone to check this correct, but it does work for me.
-
Re: Link Manager 3.0 Support Thread
Hi Clyde,
I like to say your link manger 3.0 module is FANTASTIC. I have installed and it is very user friendly. I've use it for one week and my links exchange is went up to the roof. :wink:
I was just wondering and search your threads but not able to find what i'm looking for.
With your link manager categories. Is it possible to show the number of links display in each category when browsing?
It would be great if i could find an option for this.
Very much appreciated if you could help.
Thanks,
Andrew
You can check your work at my site www.accessoryworld.net.au.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
andrewnguyen
Hi Clyde,
I like to say your link manger 3.0 module is FANTASTIC. I have installed and it is very user friendly. I've use it for one week and my links exchange is went up to the roof. :wink:
I was just wondering and search your threads but not able to find what i'm looking for.
With your link manager categories. Is it possible to show the number of links display in each category when browsing?
It would be great if i could find an option for this.
Very much appreciated if you could help.
Thanks,
Andrew
You can check your work at my site
www.accessoryworld.net.au.
on the links page it shows "displaying 1 - x (of x)"
-
Re: Link Manager 3.0 Support Thread
I installed links managerv3-5-3c on my website earlier today but just can't figure how to add more link categories. Maybe a dummy question but any help is highly appreciated. Thanks in advance.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
enginarat
I installed links managerv3-5-3c on
my website earlier today but just can't figure how to add more link categories. Maybe a dummy question but any help is highly appreciated. Thanks in advance.
admin -> extras -> link categories (click the "new category" button)
-
Re: Link Manager 3.0 Support Thread
Hi Clyde,
Thanks for you quick reply.
Yes the links counts in the Link Page works. I just wondering if i'm able to display the counts in the View All Links Page? for example is image attached.
Hope you can help.
Cheers!
Andrew
http://www.accessoryworld.net.au/est...inkscounts.jpg
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
andrewnguyen
Hi Clyde,
Thanks for you quick reply.
Yes the links counts in the
Link Page works. I just wondering if i'm able to display the counts in the
View All Links Page? for example is image attached.
Hope you can help.
Cheers!
Andrew
http://www.accessoryworld.net.au/est...inkscounts.jpg
Currently no, this is not possible.
-
Re: Link Manager 3.0 Support Thread
-
Re: Link Manager 3.0 Support Thread
Sorry I've posted that earlier but for some reason forum deleted it.
*My links manager won't upload the images. Maybe it does but I need to set permissions from somewhere(?)
*Also, category descriptions won't show up.
Links manager is installed on www.crystalfloridaonline.com
Thanks in advance.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
enginarat
Sorry I've posted that earlier but for some reason forum deleted it.
*My links manager won't upload the images. Maybe it does but I need to set permissions from somewhere(?)
*Also, category descriptions won't show up.
Links manager is installed on
www.crystalfloridaonline.com
Thanks in advance.
If you are talking about uploading "category images" you should be able to click the browse button when you are adding new categories and then click the save button and that should upload the image.
The images/link_category folder should be set to 755 or 777 depending on your hosting company configuration.
If you have installed the latest version of Links Manager then the category description should display.
-
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.
-
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). :clap:
No clue on EXAMPLE 1 and 2 above.
Still searching...:no:
-
2 Attachment(s)
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
enginarat
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.
Attachment 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/
Attachment 9297
To be notified my e-mail just subscribe to this thread.
-
Re: Link Manager 3.0 Support Thread
Worked perfectly. Thank you.
-
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
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
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.
-
Re: Link Manager 3.0 Support Thread
-
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
-
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:
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
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
-
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:
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
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.
-
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:
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
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
-
Re: Link Manager 3.0 Support Thread
admin -> extras -> link categories in file manager or zen cart ?
-
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
-
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
-
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:
-
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
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
mitchellcurtisjohnso
admin -> extras -> link categories in file manager or zen cart ?
it in the zen cart admin interface
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
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)
-
Re: Link Manager 3.0 Support Thread
no "link categories" in extra zen cart interface only record / music found there any ideas
-
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
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
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 )
-
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 !!
-
Re: Link Manager 3.0 Support Thread
ummm kinda 86 that last comment Clyde just :frusty: not you fault your brilliant and im a retard
-
Re: Link Manager 3.0 Support Thread
change the admin folder name to match The admin folder name you are using ??
Arent they both named Admin? Change them to what ? WTF dude you startin to piss me off man ..why the double talk ..change the admin to admin now how come I didnt think of that ! Wrong, sir! Wrong! Under section 37B of the contract signed by him, it states quite clearly that all offers shall become null and void if - and you can read it for yourself in this photostatic copy - "I, the undersigned, shall forfeit all rights, privileges, and licenses herein and herein contained," et cetera, et cetera... "Fax mentis, incendium gloria cultum," et cetera, et cetera... Memo bis punitor delicatum! It's all there! Black and white, clear as crystal! You STOLE Fizzy-Lifting Drinks! You BUMPED into the ceiling, which now has to be washed and sterilized, so you get... NOTHING!!! You lose! GOOD DAY, SIR!
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
mitchellcurtisjohnso
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 !!
being snide and sarky doesn't help and I have answered your questions.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
mitchellcurtisjohnso
change the admin folder name to match The admin folder name you are using ??
Arent they both named Admin? Change them to what ? WTF dude you startin to piss me off man ..why the double talk ..change the admin to admin now how come I didnt think of that ! Wrong, sir! Wrong! Under section 37B of the contract signed by him, it states quite clearly that all offers shall become null and void if - and you can read it for yourself in this photostatic copy - "I, the undersigned, shall forfeit all rights, privileges, and licenses herein and herein contained," et cetera, et cetera... "Fax mentis, incendium gloria cultum," et cetera, et cetera... Memo bis punitor delicatum! It's all there! Black and white, clear as crystal! You STOLE Fizzy-Lifting Drinks! You BUMPED into the ceiling, which now has to be washed and sterilized, so you get... NOTHING!!! You lose! GOOD DAY, SIR!
Use the mod or not, thats entirely up to you.
-
Re: Link Manager 3.0 Support Thread
Fair enough Clyde.. tried uploading your mod three times all three failed to work.. is it me... I think not but for the sake sanity I must let go of this pipe dream app and look to another solution that isnt so complex to configure.
-
Re: Link Manager 3.0 Support Thread
working great for me, only one question, im only looking for one category of links, how hard would it be to remove the category selection from the form and have all links grouped in one pace instead of the ability to use categories? (unless im being dumb and have missed an option in config??)
thinking aloud - im guessing i have to remove the field and the verification for the required field. or am i underestimating this?
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
bonnit
working great for me, only one question, im only looking for one category of links, how hard would it be to remove the category selection from the form and have all links grouped in one pace instead of the ability to use categories? (unless im being dumb and have missed an option in config??)
thinking aloud - im guessing i have to remove the field and the verification for the required field. or am i underestimating this?
Would require significant rewriting to achieve this.
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
Would require significant rewriting to achieve this.
ah no worries, im glad i asked before i tried lol
great mod, thanks :)
p.s i wouldnt even grace the ungrateful trolls on this thread with a response :)
-
Re: Link Manager 3.0 Support Thread
May be just my lack of knowldge, but if you only offer one catagory would it not just show the one catagory :unsure:
-
Re: Link Manager 3.0 Support Thread
Guys. Please be aware that sadly Clyde passed away last Saturday.
In Clyde's honor, this mod has been upgraded for use with the Zen Cart 1.5 release and that will made available in the downloads area shortly.
But going forward support will need to be user to user.
-
Re: Link Manager 3.0 Support Thread
Got a bit of a shock to read this RIP Clyde ..
-
Re: Link Manager 3.0 Support Thread
Can someone help with the links and not finding the "Links Check Phrase" when I go there manually my phrase is there but it is not linked words just plain typing ...does it have to be linked before it will be found
Thanks
-
Re: Link Manager 3.0 Support Thread
Hi. I realize Clyde's fine module is now unsupported. I apparently had previously placed this module in my cart but not completed the installation. When I uploaded the "new install" there were some files that were dated November 2011, and the new ones were dated 12/10/11.
I did figure out, by looking at other Zen Cart modules, that the 1064 error for creating tables for this module comes up due to the MySQL 5.1 specific requirement for the following to occur:
Quote:
replace every occurrence of
Code:
TYPE=MyISAM
with
Code:
ENGINE=MyISAM
The only problem I now have is that the category title and category description appear twice. I did substitute one title with a category icon, but the second title still occurs.
I removed all files on my test server, while leaving the tables in MySQL from the SQL patch, but the Layout Boxes Controller tells me the link manager sidebox is missing.
I searched for some of the title language in the developer's toolbox, but found nothing, I am not sure why, because I entered the language in the link category admin screen, and it appears on the links page.
Therefore, I need another method to try to find the duplicate link category title and the duplicate category descriptions on my live site. Does anyone have any advice on how to locate the duplicates?
It looks like this:
Quote:
[Icon: Audio Software Downloads]
Downloadable audio software which may be relevant to karaoke
Audio Software Downloads
Downloadable audio software which may be relevant to karaoke
The above appears without the line breaks--it all runs together.
Maybe I am not using the developer's toolkit correctly. I searched for catalog/admin files in both language file lookups and all file lookups.
Thanks for any suggestions.
Notageek
-
Re: Link Manager 3.0 Support Thread
Well, I re-uploaded the file that was "missing" after I had done the complete deletion process and re-uploaded the module, and uploaded that file after rebooting, and was able to turn on the link manager sidebox in my WAMP test server.
However, the problem of duplicate descriptions and title remains.
The only place where that information is entered is in the admin->layout boxes controller. If I find the answer, I will post.
Notageek
-
Re: Link Manager 3.0 Support Thread
Yikes. I logged into my site today in Firefox, after having turned off the links manager sidebox yesterday and lots of things are wrong. The header is gone and products are not displaying pictures.
However, it works in Internet Explorer and Chrome.
I guess I will need to do an uninstall process. My site is www.g o k a r a o k e m a c h i n e.com, if anyone cares to check. It still has visitors and seems functional. I believed I left it fully operational last night, with the link manager sidebox turned off (since the link category descriptions showed up in duplicate).
By the way, I saw on the Internet that in some cases there are duplicate showings when a site is bilingual. I'm not sure that would apply in this case, but I will keep it in mind while investigating.
Maybe I should upgrade to ZenCart 1.5 and try the 1.5 version of the link manager module. I was trying to avoid an upgrade due to severe time crunches in my schedule.
If I solve any of these glitches, I will post.
Notageek
-
Re: Link Manager 3.0 Support Thread
To dispell any misperception I might have engendered, the problem of Firefox not rendering images appears related solely to use of Symantec Client Security. The firewall must be told to allow all traffic from Firefox.
So that is completely unrelated to the duplicate descriptions appearing in the category screen for the Link Manager module.
Discovery of this problem was an unrelated result of examining the site from a location utilizing the Symantec firewall.
Notageek
-
Re: Link Manager 3.0 Support Thread
On the duplicate description problem: I checked my database tables (via PHPMyAdmin) and there were no duplicate entries in the category description for this module.
I noted that Clyde's example link did not have a description duplicate, so I checked the Links and the Links Categories to see how he entered his example link.
Clyde described his site in the Links submission page, and that description appears when the particular link is clicked on.
Clyde simply did not fill in the category description box in the Links Categories Admin page. There is only a category title. When I filled in the description box as a test , the duplicate description problem occurred.
Therefore, until a solution is discovered, it appears the category description box must be left blank.
I am wondering why this problem has not come up for any of the other posters in this over 100-page thread.
Notageek
-
Re: Link Manager 3.0 Support Thread
Lopi, at Post #1864, said:
Quote:
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....
Clyde responded that, no, it is not possible.
I am adding a link for a site that gave me a code snippit:
Quote:
<a href="http://www.xxx.com" target="_blank">
<img src="http://www.xxx.com/images/logo.gif" alt="alt content here xxx"> </a>
I placed this code into the image slot, and the image does appear in the Admin screen for the links, but of course, it does not show up in the cart. But the default no-banner image also does not display. What displays is the little box indicating an image should be there.
Thinking through why the image appears in Admin, and someone had the ability to submit that image through the link exchange, maybe there is a manual process for taking those images from admin and putting them in the images/links-image directory. Otherwise, why would the image show up and then not be usable?
I'm not sure how to do this, but if I find the way I will post.
If the image cannot be manually inserted in the images/links-image directory, there should be instructions on the link page that people should email their images, to be manually inserted by the store.
Am I missing something obvious here?
Notageek
-
Re: Link Manager 3.0 Support Thread
Okay, the procedure for getting the new link's logo into the links page is as follows:
1. Admin->Links, right-click the image for the linking website.
2. Choose "save image as."
3. Save to images/links_image directory under name identifiable to the new linking site (i.e., xxx_logo.gif).
4. Back in Admin->Links->edit link screen, replace the http://www.xxx.com/logo.gif (or other off-site name) with links_image/xxx_logo.gif.
Nice work once again by Clyde. I don't know why this was so obscure and seemingly impossible to solve until I was forced to think it through. Maybe this has been explained somewhere else. I hope this helps someone.
Notageek
-
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
kuroi
Guys. Please be aware that sadly
Clyde passed away last Saturday.
In Clyde's honor, this mod has been upgraded for use with the Zen Cart 1.5 release and that will made available in the downloads area shortly.
But going forward support will need to be user to user.
Hi all, first post here so hoping not to tread on anyone's toes....have just installed this great mod (v3.5.3a, not sure if it had been upgraded yet but downloaded on 7 feb 2012) on an upgraded zen cart (v1.5), everything appears to have installed correctly and all databse entries appear to be present but can't see the new link manager option in admin->configuration (also no new sidebox in admin->tools->Layout Boxes Controller), so does this mod have to be registered by admin->admin access management->admin page registration, if so does anyone know what the setting for this would be, has anyone had any success with zen cart 1.5 and this mod, thanx in advance for any help offered.