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

Link Manager 3.0 Support Thread

Views: 486,752

Results 901 to 920 of 1,988
17 Mar 2008, 11:40 PM
#901
rottiejoe avatar

rottiejoe

New Zenner

Join Date:
Mar 2007
Posts:
86
Plugin Contributions:
0

Link Manager 3.0 Support Thread

Hi
wwwveroniqueknitweardotcom

17 Mar 2008, 11:46 PM
#902
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

on which page(s) is this happening?

17 Mar 2008, 11:48 PM
#903
rottiejoe avatar

rottiejoe

New Zenner

Join Date:
Mar 2007
Posts:
86
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi Clyde,
On the links page.

18 Mar 2008, 12:13 AM
#904
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

I just checked the links category page and All of the links pages and HTML Tidy didn't show this warning anywhere.

The only warning I did see was about using & instead of &.

So I'm not sure where it is coming from.

One place to look would be:

includes/functions/links.php

and check this line of code

$image = '<img src="' . zen_output_string($src) . '" alt="' . zen_output_string($alt) . '"';
18 Mar 2008, 12:33 AM
#905
rottiejoe avatar

rottiejoe

New Zenner

Join Date:
Mar 2007
Posts:
86
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi Clyde,

Changed this line of code to;
}
// alt is added to the img tag even if it is null to prevent browsers from outputting
// the image filename as default
$image = '<img src="' . zen_output_string($src) . '" alt="' . zen_output_string($alt) . '"';
if (zen_not_null($alt)) {
$image .= ' title=" ' . zen_output_string($alt) . ' "';
}

And everything is fine.
The code that was there on that line was;

}
// alt is added to the img tag even if it is null to prevent browsers from outputting
// the image filename as default
$image = '<img src="' . zen_output_string($src) . '"alt="' . zen_output_string($alt) . '"';
if (zen_not_null($alt)) {
$image .= ' title=" ' . zen_output_string($alt) . ' "';
}

very similar except for spaces. I have no idea why this brought up validation errors but it did using the validator at w3c.
Thanks for the help Clyde

Rottie

18 Mar 2008, 12:54 AM
#906
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

rottiejoe:

Hi Clyde,

Changed this line of code to;
}
// alt is added to the img tag even if it is null to prevent browsers from outputting
// the image filename as default
$image = '<img src="' . zen_output_string($src) . '" alt="' . zen_output_string($alt) . '"';
if (zen_not_null($alt)) {
$image .= ' title=" ' . zen_output_string($alt) . ' "';
}

And everything is fine.
The code that was there on that line was;

}
// alt is added to the img tag even if it is null to prevent browsers from outputting
// the image filename as default
$image = '<img src="' . zen_output_string($src) . '"alt="' . zen_output_string($alt) . '"';
if (zen_not_null($alt)) {
$image .= ' title=" ' . zen_output_string($alt) . ' "';
}

very similar except for spaces. I have no idea why this brought up validation errors but it did using the validator at w3c.
Thanks for the help Clyde

Rottie

glad it worked out.

21 Mar 2008, 3:43 PM
#907
yenmax avatar

yenmax

New Zenner

Join Date:
Sep 2006
Posts:
89
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi

I am looking for install links manager for my site. My purpose is try to do link exchange for my website. Would you please help me to do it.

Very thanks!

21 Mar 2008, 4:09 PM
#908
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

yenmax:

Hi

I am looking for install links manager for my site. My purpose is try to do link exchange for my website. Would you please help me to do it.

Very thanks!

download it from here, unzip the file and follow the instructions.

22 Mar 2008, 1:56 PM
#909
weezee avatar

weezee

Zen Follower

Join Date:
May 2006
Location:
Louisiana
Posts:
259
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

In my site I have some errors in Foxfire, I was told at my template support that the missing closing </div> is in the links sidebox. can you please help me with this. I'm not very good at these codes I don't know where to add it.

weezeesgifts.com

22 Mar 2008, 4:30 PM
#910
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

weezee:

In my site I have some errors in Foxfire, I was told at my template support that the missing closing </div> is in the links sidebox. can you please help me with this. I'm not very good at these codes I don't know where to add it.

weezeesgifts.com

first: go to admin -> tools -> layout boxes controller and turn the links manager sidebox off.

open your site clear your browser cache and see if the error goes away.

23 Mar 2008, 3:01 AM
#911
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

weezee:

In my site I have some errors in Foxfire, I was told at my template support that the missing closing </div> is in the links sidebox. can you please help me with this. I'm not very good at these codes I don't know where to add it.

weezeesgifts.com
clydejones:

first: go to admin -> tools -> layout boxes controller and turn the links manager sidebox off.

open your site clear your browser cache and see if the error goes away.

Try this: Just unzip the file and upload the entire includes folder to your server.

[Attachment no longer available]

23 Mar 2008, 3:21 AM
#912
weezee avatar

weezee

Zen Follower

Join Date:
May 2006
Location:
Louisiana
Posts:
259
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Thanks clyde,

That fixed it.

23 Mar 2008, 5:21 PM
#913
vitalwares avatar

vitalwares

New Zenner

Join Date:
Jan 2008
Posts:
83
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi Clyde and others,

Thanks for this awesome contribution.

Can someone please tell me how to move the main listbox to the left a bit and how to center the two links under it (I have tried tinkering with the css but did not succeed)

I just want it to look consistent with the rest of my site, also is there a way to make the edges of the listbox round ?

Thanks in advance...

23 Mar 2008, 5:48 PM
#914
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

vitalwares:

Hi Clyde and others,

Thanks for this awesome contribution.

Can someone please tell me how to move the main listbox to the left a bit and how to center the two links under it (I have tried tinkering with the css but did not succeed)

I just want it to look consistent with the rest of my site, also is there a way to make the edges of the listbox round ?

Thanks in advance...

try adding this to your stylesheet.css (includes/templates/cherry_zen/css)

#linksboxContent {
text-align:center;
padding: 0.5em 0.3em 1em 0.3em;
}

23 Mar 2008, 6:03 PM
#915
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

vitalwares:

Hi Clyde and others,

Thanks for this awesome contribution.

Can someone please tell me how to move the main listbox to the left a bit and how to center the two links under it (I have tried tinkering with the css but did not succeed)

I just want it to look consistent with the rest of my site, also is there a way to make the edges of the listbox round ?

Thanks in advance...

Try this and see if it works:

Just unzip the file and upload the entire includes folder to your server.

[Attachment no longer available]

23 Mar 2008, 7:37 PM
#916
vitalwares avatar

vitalwares

New Zenner

Join Date:
Jan 2008
Posts:
83
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

Try this and see if it works:

Just unzip the file and upload the entire includes folder to your server.

[Attachment no longer available]

Hi Clyde,

Thank a lot for your effort but actually that did not work out, please take a look at the website...

23 Mar 2008, 8:15 PM
#917
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

vitalwares:

Hi Clyde,

Thank a lot for your effort but actually that did not work out, please take a look at the website...

open admin -> configuration -> links manager

and

Links List - Scroll Box Size/Style (set to 3)

Also

try adding this to your stylesheet.css (includes/templates/cherry_zen/css)

#linksboxContent {
text-align:center;
padding: 0.5em 0.3em 1em 0.3em;
}

23 Mar 2008, 8:27 PM
#918
tcarney avatar

tcarney

New Zenner

Join Date:
Oct 2007
Posts:
11
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi, first I want to say thanks for the wonderful module.

I've been looking through this forum for a while now and only saw this problem posted once, without a clear solution.

I'm fairly new to Zencart so please bear with me. Everthing seems to be working great, except that I'm getting the following errors when checking a reciprocal link:

Warning: file(): URL file-access is disabled in the server configuration in /home/content/t/c/a/tcarney/html/admin/links.php on line 644

Warning: file(http://www.sensualmystique.com/retailersdirectory3/links.php%29: failed to open stream: no suitable wrapper could be found in /home/content/t/c/a/tcarney/html/admin/links.php on line 644

I see in a previous post that this is a server problem and was fixed by modifying the PHP.INI file. I am hosted by GoDaddy on a Linux server, so I have no ini files to modify.

Any help or suggestions are greatly appreciated.

Thank you

23 Mar 2008, 8:30 PM
#919
vitalwares avatar

vitalwares

New Zenner

Join Date:
Jan 2008
Posts:
83
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

open admin -> configuration -> links manager

and

Links List - Scroll Box Size/Style (set to 3)

Also

try adding this to your stylesheet.css (includes/templates/cherry_zen/css)

#linksboxContent {
text-align:center;
padding: 0.5em 0.3em 1em 0.3em;
}

Sill did not work I am afraid.

23 Mar 2008, 9:14 PM
#920
tcarney avatar

tcarney

New Zenner

Join Date:
Oct 2007
Posts:
11
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Vitalwares,

Have you tried widening the boxes through

Admin->Configuration->Layout Settings->Column Width - Right Boxes