Hi again,
I configured my {phpfrontend root}/conf/zabbix.conf.php with the following:
Where /tmp/zabbixdb is the path to my ZABBIX SQLite database.
Albeith I'm not 100% sure this database is fully correct, as I faced some SQLite initialization - see other post, this database seems 'good enough' to be opened via the sqlite3 CLI:
Anyway, I've only have a blank page when firing a browser to index.php
((
I think my problem is not related to the database, as if select a nonexistent file (say $DB_DATABASE="/dont/exists"), the same blank page occurs
I'm running Ubuntu 6.06 LTS, with:
*SQLite 3.3.8 compiled from sources (as Ubunut 6.06 come shipped with 3.2.8 at maximum)
*php5-sqlite package from Ubuntu repository (5.1.2-1ubuntu3.4)
And my phpinfo report the following infos related to SQLite:
Any ideas?
Cheers,
I configured my {phpfrontend root}/conf/zabbix.conf.php with the following:
Code:
//$DB_TYPE = "MYSQL"; $DB_TYPE = "SQLITE3"; $DB_SERVER = "localhost"; //$DB_DATABASE = "zabbix"; $DB_DATABASE = "/tmp/zabbixdb"; $DB_USER = "root"; $DB_PASSWORD = "";
Albeith I'm not 100% sure this database is fully correct, as I faced some SQLite initialization - see other post, this database seems 'good enough' to be opened via the sqlite3 CLI:
Code:
olem@homebox:/tmp/zabbix-1.3.1$ sqlite3 /tmp/zabbixdb SQLite version 3.3.8 Enter ".help" for instructions sqlite> select * from users; 1|Admin|Zabbix|Administrator|d41d8cd98f00b204e9800998ecf8427e||900|en_gb|30|3 2|guest|Default|User|d41d8cd98f00b204e9800998ecf8427e||900|en_gb|30|1 sqlite>
((I think my problem is not related to the database, as if select a nonexistent file (say $DB_DATABASE="/dont/exists"), the same blank page occurs

I'm running Ubuntu 6.06 LTS, with:
*SQLite 3.3.8 compiled from sources (as Ubunut 6.06 come shipped with 3.2.8 at maximum)
*php5-sqlite package from Ubuntu repository (5.1.2-1ubuntu3.4)
And my phpinfo report the following infos related to SQLite:
Code:
SQLite support enabled PECL Module version 2.0-dev $Id: sqlite.c,v 1.166.2.11 2006/01/01 12:50:14 sniper Exp $ SQLite Library 2.8.17 SQLite Encoding UTF-8 Directive Local Value Master Value sqlite.assoc_case 0 0
Cheers,
Comment