Gossamer Forum
Home : Products : DBMan SQL : Discussion :

Re: Win 2000 Install

Quote Reply
Re: Win 2000 Install In reply to
In Reply To:
is there one single page that outlines the Windows 2000 setup?
Nope...but there are plenty of Threads in the DBMAN Installation forum that provide solutions to common installation problems.

The following codes:

Code:

$db_script_path = "c:\inetpub\wwwroot\cgi-bin\dbmansql";


should be the following:

Code:

$db_script_path = "C:/InetPub/wwwroot/cgi-bin/dbmansql";


Remember that Perl is case sensitive...this ain't Cold Fusion...So, your drive letters must be capitals or lower case depending on your drive configurations. In addiiton, folder names are also case sensitive. If you are using a default install of Front Page 2000, then the folder is InetPub NOT inetpub.

Again, these codes:

Code:

$config = 'c:\inetpub\wwwroot\cgi-bin\dbmansql\db.cfg'


need to be:

Code:

$config = 'C:/InetPub/wwwroot/cgi-bin/dbmansql/db.cfg'


The following codes:

Code:

require "html.pl";


SHOULD be the following:

Code:

require "$db_script_path/html.pl";


OR

Code:

require "C:/InetPub/wwwroot/cgi-bin/dbmansql/html.pl";


Good luck!

Regards,

Eliot Lee
Subject Author Views Date
Thread Win 2000 Install gatman 2557 Dec 14, 2000, 6:55 AM
Post Re: Win 2000 Install
Stealth 2423 Dec 14, 2000, 7:37 AM