Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Help fot my links.cfg

Quote Reply
Help fot my links.cfg
hi all

i've installed all the links files and they work well
the only problem i have is that all my links like "add a resource" work well but when i click on the "home" link it gives me a non existing page answer.

So i suppose that my "links.cfg" is not correctly configured
i give to you there one part of it:

"# PATH and URL of Admin CGI directory. No Trailing Slash.
$db_script_path = "/home/login/public_html/cgi-bin/admin";
$db_dir_url = "http://login.virtualave.net/cgi-bin/admin";

# URL of User CGI directory. No Trailing Slash.
$db_cgi_url = "http://login.virtualave.net/cgi-bin";

# PATH and URL of Pages to be built. No Trailing Slash.
$build_root_path = "/home/login/public_html/";
$build_root_url = "http://login.virtualave.net";

# PATH and URL of What's New page. No Trailing slash.
$build_new_path = "$build_root_path/New";
$build_new_url = "$build_root_url/New";

# PATH and URL of What's Cool page. No Trailing slash.
$build_cool_path = "$build_root_path/Cool";
$build_cool_url = "$build_root_url/Cool";

# PATH and URL of What's Rating page. No Trailing slash.
$build_ratings_path = "$build_root_path/Ratings";
$build_ratings_url = "$build_root_url/Ratings";


Please if anyone can tell me what it is wrong
it will be grateful

benoit@ginola.net
Quote Reply
Re: Help fot my links.cfg In reply to
So you are on virtualave, I've seen posts saying that you need to add trailing slash '/' at the end of each path or URL. Hope this helps.
Quote Reply
Re: Help fot my links.cfg In reply to
It may be because of this line

$build_root_path = "/home/login/public_html/

The Instructions say no trailing slashes which you have after public_html

------------------
------------------------------------------
Lavon Russell
LookHard! Search
http://www.lh.yi.org
Quote Reply
Re: Help fot my links.cfg In reply to
You have a trailing slash on the quoted line

# PATH and URL of Pages to be built. No Trailing Slash.
$build_root_path = "/home/login/public_html/";
$build_root_url = "http://login.virtualave.net";

Wayne