| Author |
Message |
rhaynal |
|
Post subject: Console page is blank
Posted: Sep 22, 2007 - 11:53 AM
|
|

Joined: Sep 22, 2007
Posts: 3
Status: Offline
|
|
Hi,
I set everything up and as far as I can tell I have no errors. Apache and snort and mysql are all running. When I go to the Base home page, I have to authenicate. But after a successful authenication I get a blank page.
Any idea what I am doing wrong? |
|
|
| |
|
|
|
 |
Morpheus |
|
Post subject: RE: Console page is blank
Posted: Sep 22, 2007 - 02:40 PM
|
|
Site Admin

Joined: Sep 04, 2003
East Coast - USA
Posts: 1415
Location: East Coast - USA
Status: Offline
|
|
| Did testing the php install work? |
_________________ Best regards,
Morpheus...
WINSNORT.com Management
|
| |
|
|
|
 |
rhaynal |
|
Post subject: RE: Console page is blank
Posted: Sep 25, 2007 - 04:36 AM
|
|

Joined: Sep 22, 2007
Posts: 3
Status: Offline
|
|
| Yes, it pass the php tests. |
|
|
| |
|
|
|
 |
rhaynal |
|
Post subject: RE: Console page is blank
Posted: Sep 26, 2007 - 11:39 AM
|
|

Joined: Sep 22, 2007
Posts: 3
Status: Offline
|
|
I found the problem and fixed it after turning on Display_Errors. I was cutting and pasting from the Guide. There are a couple of spots to watch out for: the Ports and Passwords (see below):
Originals:
$alert_dbname = '?????';
$alert_host = '?????';
$alert_port = '?????';
$alert_user = '?????';
$alert_password = '?????';
Change to:
$alert_dbname = 'snort';
$alert_host = 'localhost';
$alert_port = `';
$alert_user = 'base';
$alert_password = 'an@l1st;
Originals:
$archive_exists = 0; # Set this to 1 if you want access to the archive DB from BASE
$archive_dbname = '?????';
$archive_host = '?????';
$archive_port = '?????';
$archive_user = '?????';
$archive_password = '?????';
Change to:
$archive_exists = 1; # Set this to 1 if you want access to the archive DB from BASE
$archive_dbname = 'archive';
$archive_host = 'localhost';
$archive_port = `';
$archive_user = 'base';
$archive_password = 'an@l1st; |
|
|
| |
|
|
|
 |
Morpheus |
|
Post subject: RE: Console page is blank
Posted: Sep 26, 2007 - 02:05 PM
|
|
Site Admin

Joined: Sep 04, 2003
East Coast - USA
Posts: 1415
Location: East Coast - USA
Status: Offline
|
|
| Hummm... Found several of those in the guides. All fixed now, thank you. |
_________________ Best regards,
Morpheus...
WINSNORT.com Management
|
| |
|
|
|
 |
|
|