Re: Link Manager 3.0 release
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.
Re: Link Manager 3.0 release
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
Re: Link Manager 3.0 release
Quote:
Originally Posted by
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
creative coding needed....
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?
PHP 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
Re: Link Manager 3.0 release
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?
Re: Link Manager 3.0 release
The button images are also missing from Admin > Extra > Links for "Check Link" and "New Link"
Re: Link Manager 3.0 release
Quote:
Originally Posted by
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
Re: Link Manager 3.0 release
Quote:
Originally Posted by
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.
Re: Link Manager 3.0 release
Quote:
Originally Posted by
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
Re: Link Manager 3.0 release
Quote:
Originally Posted by
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.