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

Help- Having problems

Quote Reply
Help- Having problems
Hi,
When I run the build pages thing from the admin menu, I get the following cgiwrap error: CGIwrap Error: System Error: execv() failed Error: No such file or directory (2)
Below is the cfg file. If someone could find the error, it would be helpful.

# PATH of Admin Script directory. No Trailing Slash. *
$db_script_path = "/usr/local/www/htdocs/3d-links/links/admin";
# URL of Admin Script directory. No Trailing Slash. *
$db_dir_url = "http://3d-links.3dark.com/links/admin";
# URL of Admin Script.
$db_script_url = $user_files . "/admin.cgi";

# PATH of Pages to be built. No Trailing Slash. *
$build_root_path = "/usr/local/www/htdocs/3d-links/links";
# URL of Pages to be built. No Trailing Slash. *
$build_root_url = "http://3d-links.3dark.com/links";
# PATH of What's New page. No Trailing Slash.
$build_new_path = $build_root_path . "/New";
# PATH of What's Cool page. No Trailing Slash.
$build_cool_path = $build_root_path . "/Cool";
# PATH of the header and footer directories. No Trailing Slash.
$db_header_path = $db_script_path . "/header";
$db_footer_path = $db_script_path . "/footer";
# PATH of keyword log file:
$kword_file_name ="$db_script_path/data/keywords.txt";
# PATH of Mailing List file:
$mlist_file_name = $db_script_path . "/data/addresses.txt";
# URL to four user files. No Trailing Slash.
$user_files = "http://3dlinks.3dark.com/cgi-bin/cgiwrap/3d-links/links";

# URL of What's New Page
$build_new_url = $build_root_url . "/New";
# URL of What's Cool Page
$build_cool_url = $build_root_url . "/Cool";
# URL of Search Script
$build_search_url = $user_files . "/search.cgi";
# URL of Add Script
$build_add_url = $user_files . "/add.cgi";
# URL of Modify Script
$build_modify_url = $user_files . "/modify.cgi";
# URL of Jump Script
$build_jump_url = $user_files . "/jump.cgi";
# URL of Review Script
$build_review_url = $user_files . "/review.cgi";
# URL of Rating Script
$build_rate_url = $user_files . "/rate.cgi";

# PATH of Library Directory. No Trailing Slash.
$db_lib_path = $db_script_path;
# PATH of the database backup directory. No Trailing Slash.
$db_backup_path = "$db_script_path/backup";
# PATH of the links database file.
$db_links_name = "$db_script_path/data/links.db";
# PATH of the category database file.
$db_category_name = "$db_script_path/data/categories.db";
# PATH of the validation file.
$db_valid_name = "$db_script_path/data/validate.db";
# PATH of the modification database:
$db_modified_name = "$db_script_path/data/modified.db";
# PATH of the URL index";
$db_url_name = "$db_script_path/data/url.db";
# PATH of the Rate index;
$db_rate_name = "$db_script_path/data/rate.db";
# PATH of the links database counter file.
$db_links_id_file_name = "$db_script_path/data/linksid.txt";
# PATH of the category database counter file.
$db_category_id_file_name = "$db_script_path/data/categoryid.txt";
# PATH of the verify links log.
$db_verify_path = "$db_script_path/data/verify.log";
# PATH of sendmail.
$db_mail_path = "/usr/lib/sendmail -t";

Thanks,
Michael
Quote Reply
Re: Help- Having problems In reply to
I think your path to perl is wrong. Make sure the first line of any .cgi script is going to perl version 5.

Cheers,

Alex