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

Frames show, but no content when running admin.pl?

Quote Reply
Frames show, but no content when running admin.pl?
Hey all...anyone come across that problem? When I run admin.pl, the frames draw, but there's no content? I've got the absolute path in the admin/pl pointing to the links.cfg, and I've even tried making all the paths absolute in the links.cfg (instead of letting the variables resolve).

Any ideas what could be wrong?


Quote Reply
Re: Frames show, but no content when running admin.pl? In reply to
You need to check the following variables in your links.cfg file:

1) $db_script_path
2) $db_script_url
3) $db_dir_url

The first one should contain the ABSOLUTE PATH including your drive letter to the admin directory, like the following:

Code:

$db_script_path = "C:/InetPub/wwwroot/account/cgi-bin/links/admin";


The second one should look like the following:

Code:

$db_script_url = $db_dir_url . "/admin.cgi"; # Admin script.


The third variable should look like the following:

Code:

$db_dir_url = "http://www.yourdomain.com/links/cgi-bin/admin";


Regards,

Eliot Lee