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

Error including libraries

Quote Reply
Error including libraries
Hello,

I get this error message, after installing links and try to test the admin.cgi

Error including libraries: syntax error at /usr/local/etc/httpd/htdocs/axellent/cgi-bin/links/admin/links.cfg line 95, near "$build_index = "index"
(Might be a runaway multi-line "" string starting on line 72)

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

I checked all more than twic times and spent many hours. The links 1.1 runs good.

Please help me :-)

Thanx

cu

Axellent
Quote Reply
Re: Error including libraries In reply to
The error message is telling you that you may have a problem at line 72 of links.cfg. According to my copy, line 72 is the $db_admin_email setting. This should be your email address enclosed in single quotes as in:

Quote:
$db_admin_email = 'yourid@yourdomain.com';

If you have it in double quotes instead, then you need to escape the @ character, as in:

Quote:
$db_admin_email = "yourid\@yourdomain.com";

I hope this helps.

[This message has been edited by Bobsie (edited May 18, 1999).]