Hi, in your code you have:
impl/tracktickets.php :
if ($db = sqlite_open($this->dbfile) {
when i run your aplication i got the message error Could not connect to database: but without any error description. you have it specied in the line 72:
die("<b>Could not connect to database:</b> ".$sqliteerror);
so i edit the connect line to this:
if ($db = sqlite_open($this->dbfile,0666,$sqliteerror)) {
and add a error_reporting(E_ALL);
so, i got this error now:
Warning: sqlite_open() [function.sqlite-open]: file is encrypted or is not a database in /home/pbxa/public_html/tt/impl/tractickets.php on line 36
Could not connect to database: file is encrypted or is not a database
im using trac 0.10.4. this error happends when you use sqlite-open to access to a slqite3 DB. How can i solve this?