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

Link Manager 3.0 Support Thread

Views: 486,711

Results 281 to 300 of 1,988
20 Apr 2007, 2:43 PM
#281
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Link Manager 3.0 Support Thread

I'll try deleting everything and then reinstalling Links Manager.

One thing that might be affecting it, is when I had problems with my logo, someone created a new template override name for me (srs), and put the logo there. But I already had a template override name of my own. When I installed Links Manager, I wasn't sure where to put the files (in "srs" or my template name). Right now the files are in both places. But as I said, I'll try deleting everything and reinstalling in only one place at at time.

20 Apr 2007, 6:04 PM
#282
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi Clyde,

In the New Install instructions, under "Database Modifications:", it says:

A new database table needs to be created to store your links items. New configuration options are added to the zen_configuration table.
Do I have to create this table, or is it done automatically?

Thanks,
SAS

20 Apr 2007, 9:45 PM
#283
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

ssolis5788:

Hi Clyde,

In the New Install instructions, under "Database Modifications:", it says:

A new database table needs to be created to store your links items. New configuration options are added to the zen_configuration table.
Do I have to create this table, or is it done automatically?

Thanks,
SAS

You need to run the links_manager_install.sql script.

open this file copy the contents and paste them into the text box in

admin -> tools -> install sql patches and click the send button

20 Apr 2007, 10:58 PM
#284
lina0962 avatar

lina0962

Zen Follower

Join Date:
Jun 2006
Posts:
403
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hello,

I still have such error message on "Checking Link" page after I install Link Manager.

In Admin/Extra/Links, If I click on "check links", Such error messages appear:
Warning: file() [function.file]: URL file-access is disabled in the server configuration in /home/.nonsense/XXXX/loveinrose.com/admin/links.php on line 618

Warning: file(http://www.xtreme-hosting-inc.com) [function.file]: failed to open stream: no suitable wrapper could be found in /home/.nonsense/XXXX/loveinrose.com/admin/links.php on line 618

Somebody said it is because allow_url_fopen is set OFF. I contacted my hosting server and asked them to turn it On. They said for security reason, they couldn't turn it ON. But they told me that I can use CURL as an aternative.

My question is how to code to replace the origial code?

if (file($url)) {
        $file = fopen($url,'r');

        $link_check_status = false;

        while (!feof($file)) {
          $page_line = trim(fgets($file, 4096));

          if (eregi(LINKS_CHECK_PHRASE, $page_line)) {
            $link_check_status = true;
            break;
          }
        }

Do anybody know how to do it? Thank you

Lina

20 Apr 2007, 11:21 PM
#285
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

I've gone through all 29 pages of this thread and could not find the answer to this one. On the "Submit Your Link" page, the image for the help button is not showing up, just a red x. How can I fix this?

20 Apr 2007, 11:41 PM
#286
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

The button images are also missing from Admin > Extra > Links for "Check Link" and "New Link"

21 Apr 2007, 12:00 AM
#287
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

ssolis5788:

I've gone through all 29 pages of this thread and could not find the answer to this one. On the "Submit Your Link" page, the image for the help button is not showing up, just a red x. How can I fix this?

Open includes/languages/english/extra_definitions/links_manager_defines.php

add the following lines:

define('BUTTON_IMAGE_LINK_HELP', 'button_link_help.gif');
define('BUTTON_LINK_HELP_ALT', 'Link Help');

save the file and upload it to your server

21 Apr 2007, 12:11 AM
#288
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

Open includes/languages/english/extra_definitions/links_manager_defines.php

add the following lines:

define('BUTTON_IMAGE_LINK_HELP', 'button_link_help.gif');
define('BUTTON_LINK_HELP_ALT', 'Link Help');

save the file and upload it to your server

What would we do without you??! :wink: That fixed it! But now when I click on the Links Help button, I get a message at the bottom of the browser window that says "Error on Page", and nothing pops up.

21 Apr 2007, 2:26 AM
#289
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

ssolis5788:

What would we do without you??! :wink: That fixed it! But now when I click on the Links Help button, I get a message at the bottom of the browser window that says "Error on Page", and nothing pops up.

Make sure the following files/folders are on your server:

includes/languages/english/YOUR_TEMPLATE/popup_links_help.php
includes/modules/pages/popup_links_help/header_php.php
includes/modules/pages/popup_links_help/jscript_main.php
includes/templates/YOUR_TEMPLATE/popup_links_help/tpl_main_page.php

21 Apr 2007, 2:59 AM
#290
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

Make sure the following files/folders are on your server:

includes/languages/english/YOUR_TEMPLATE/popup_links_help.php
includes/modules/pages/popup_links_help/header_php.php
includes/modules/pages/popup_links_help/jscript_main.php
includes/templates/YOUR_TEMPLATE/popup_links_help/tpl_main_page.php

Yes, the files are all there.

21 Apr 2007, 3:17 AM
#291
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

ssolis5788:

Yes, the files are all there.

This should fix the problem.

unzip the file and upload the entire includes folder to your server.[Attachment no longer available]

22 Apr 2007, 2:54 PM
#292
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

No, there is still just the link name with the red X for "New Link" and "Check Link" (this is under Extra > Links).

22 Apr 2007, 5:06 PM
#293
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

ssolis5788:

No, there is still just the link name with the red X for "New Link" and "Check Link" (this is under Extra > Links).

I dont' have access to your admin panel so I can't really see what the problem is.

I can only advise you to make sure that all the files in the download admin folder have been uploaded.

22 Apr 2007, 6:38 PM
#294
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

22 Apr 2007, 8:12 PM
#295
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

ssolis5788:

The "New Link" and "Check Link" buttons work (I can add links and I've checked a couple to make sure they are reciprocating), it's just the buttons themselves don't show. I uploaded the includes folder from the zip file, so everything is there. This is what the page looks like.

About Puppies[IMG]http://s14.securedview.com/srscustomprinting.com/admin/includes/languages/english/images/buttons/button_edit.gif[/IMG] [IMG]http://s14.securedview.com/srscustomprinting.com/admin/includes/languages/english/images/buttons/button_delete.gif[/IMG] [IMG]http://s14.securedview.com/srscustomprinting.com/admin/includes/languages/english/images/buttons/button_check_link.gif[/IMG] (check link) [IMG]http://s14.securedview.com/srscustomprinting.com/admin/includes/languages/english/images/buttons/button_email.gif[/IMG]

Page 1 of 1
[IMG]http://s14.securedview.com/srscustomprinting.com/admin/includes/languages/english/images/buttons/button_new_link.gif[/IMG] (new link)

If you'd like temporary access to my admin panel, I can do that for you.

You might be missing the button images:

Try uploading this fix:

[Attachment no longer available]

As always, unzip the attachment and upload the admin folder to your server.

23 Apr 2007, 1:40 PM
#296
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Clyde, you're the best! That did the trick - thanks as always.

23 Apr 2007, 1:55 PM
#297
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

ssolis5788:

Clyde, you're the best! That did the trick - thanks as always.

Glad to help.

23 Apr 2007, 10:36 PM
#298
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Is there a way to widen the column used for "Description" ? There is more room available in that column, and it would look better if the description weren't so smushed. To see an example, click the link below:

http://www.srscustomprinting.com/index.php?lPath=5&main_page=links

24 Apr 2007, 12:30 AM
#299
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

ssolis5788:

Is there a way to widen the column used for "Description" ? There is more room available in that column, and it would look better if the description weren't so smushed. To see an example, click the link below:

http://www.srscustomprinting.com/index.php?lPath=5&main_page=links

Those columns take up 1/3 (each) of the space it occupies on the page.

I'll do some work on it and see what I can do.

24 Apr 2007, 3:14 PM
#300
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Thanks!!! :d