Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Re: Please Help, admin.cgi wants to download ???

Quote Reply
Re: Please Help, admin.cgi wants to download ??? In reply to
 
You may have a problem with your directory names.

$db_script_path = "/cgi-bin/links/cgi-bin/admin";

"cgi-bin" is often a restricted directory name. I don't know if your server will let you use it twice in a single path.

It should probably be something like:

$db_script_path = "/links/cgi-bin/admin";

although most servers would have your local path set up something like:

/usr/userid/

so the absolute path for links would look like:

$db_script_path = "/usr/userid/links/cgi-bin/admin";

or something to that effect. It's just a guess though.

Dan O.
Subject Author Views Date
Thread Please Help, admin.cgi wants to download ??? bassen 1727 Aug 21, 1999, 11:50 AM
Post Re: Please Help, admin.cgi wants to download ???
padders 1632 Aug 21, 1999, 12:32 PM
Post Re: Please Help, admin.cgi wants to download ???
DanO 1632 Aug 22, 1999, 3:31 PM