Did you get an error while running the install script? Please check your database values in config.php
- Code: Select all
//Server name (only needed if you not use ODBC)
define('_DBSERVER', 'localhost');
// DSN (ODBC) or database name (Mysql)
define('_DBNAME', 'phplogcon');
// Userid for database connection ***
define('_DBUSERID', 'MonitorWareUser');
// Password for database connection ***
define('_DBPWD', 'UsersPassword');
// table name
define('_DBTABLENAME', 'SystemEvents');
// Switch for connection mode
// Currently only odbc and native works
define('_CON_MODE', 'native');
// Defines the Database Application you are using,
// because for example thx ODBC syntax of MySQL
// and Microsoft Access/SQL Server/etc are different
// Currently available are:
// with native: mysql
// with ODBC: mysql and mssql are available
define('_DB_APP', 'mysql');
Ensure that _CON_MODE is set to native and _DB_APP to mysql.
If this does not help, change the following line in include.php from
- Code: Select all
// error_reporting(E_ALL);
to
- Code: Select all
error_reporting(E_ALL);
After this change, is still a blank page displayed or an error?

