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

Install on Solaris 2.5

Quote Reply
Install on Solaris 2.5
I get this error on admin.cgi

I've check all my permissions and paths.

Error including libraries: Can't modify concatenation in scalar assignment at /export/ns-home/cgi/links/admin/links.cfg line 433, near ""$db_script_path/data/validate.db";"

Make sure they exist, permissions are set properly, and paths are set correctly.

Thanks for any help
Quote Reply
Re: Install on Solaris 2.5 In reply to
I would guess, based on the error message (the word concatenation being key) that one of the paths in links.cfg is not ended properly. The only paths that are being concantenated are these, so check to see if they are right (look for a possible missing ";" or ending quotation mark):

Code:
$db_script_url = $db_dir_url . "/admin.cgi"; # Admin script.
$db_header_path = $db_script_path . "/header"; # Place to store header and footers.
$db_footer_path = $db_script_path . "/footer";
$build_search_url = $db_cgi_url . "/search.cgi"; # URL of search script.
$build_add_url = $db_cgi_url . "/add.cgi"; # URL of add script.
$build_modify_url = $db_cgi_url . "/modify.cgi"; # URL of modify script.
$build_jump_url = $db_cgi_url . "/jump.cgi"; # URL of jump script.
$build_email_url = $db_cgi_url . "/subscribe.cgi"; # URL of email update script.
$build_rate_url = $db_cgi_url . "/rate.cgi"; # URL of rate script.
$db_mail_url = $db_dir_url . "/nph-email.cgi"; # URL of admin mass mail script.
$build_css_url = $build_root_url . "/links.css"; # URL to your CSS file.

I hope this helps.

[This message has been edited by Bobsie (edited May 26, 1999).]
Quote Reply
Re: Install on Solaris 2.5 In reply to
There was a quotation missing.

Thanks for the help.