Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

Help me please

Quote Reply
Help me please
I'm getting an internal server error and have checked file permissions and re-uploaded to confirm everything is ok.


# Paths and URL's to Important Stuff
# --------------------------------------------------------
# PATH and URL of Admin CGI directory. No Trailing Slash.
$db_script_path = "/home/newbeet/public_html/cgi-bin/links/admin";
$db_dir_url = "http://www.scootworld.com/cgi-bin/links/admin";

# URL of User CGI directory. No Trailing Slash.
$db_cgi_url = "http://www.scootworld.com/cgi-bin/links";

# PATH and URL of Pages to be built. No Trailing Slash.
$build_root_path = "/home/newbeet/public_html/cgi-bin/links/pages";
$build_root_url = "http://www.scootworld.com/cgi-bin/links/pages";

# 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";
Quote Reply
Re: Help me please In reply to
Where are you getting the Internal Error? With which script?

Look in your Perl Error Log.

Check the syntax of the script that is giving you problems with the following command lines in telnet:

1) Connect to directory where script is located, like the following:

Code:
cd /cgi-bin/links/

2) Check syntax of script

Code:
perl -c name.cgi

Replace name.cgi with the filename of the script, like add.cgi.

Regards,

------------------
Eliot Lee
Anthro TECH,L.L.C
www.anthrotech.com
* Be sure to visit the Resource Center for FAQ's, Modifications and Extra Goodies!!
* Search Forums!
* Say NO to Duplicate Threads. :)
----------------------