After installing, and ftping the config file to the default folder(bugtracking), when I try to access the application in the folder, phpbt cannot access the index file; I am getting this:
Fatal error: Call to undefined function: modifylimitquery() in /home/.../HTML/bugtracking/index.php on line 129
Any help is appreciated.
Hem Ramachandran
hem@marlabs.com
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have installed the application and I am also getting this error when I try and access the index file.
By the way, my include file does have the above mentioned lines....
Has anybody found a solution to this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
After installing, and ftping the config file to the default folder(bugtracking), when I try to access the application in the folder, phpbt cannot access the index file; I am getting this:
Fatal error: Call to undefined function: modifylimitquery() in /home/.../HTML/bugtracking/index.php on line 129
Any help is appreciated.
Hem Ramachandran
hem@marlabs.com
I have installed the application and I am also getting this error when I try and access the index file.
Has anybody found a solution to this?
Thanks in advanced,
Russell Sanders
rt_sanders@hotmail.com
This is usually a problem connecting to the database. Add the following lines to include.php after the line that reads $db = DB::Connect($dsn);
if (DB::isError($db)) {
die($db->message.'<br>'.$db->userinfo);
}
This will help you diagnose whether it is a database connection problem.
I have installed the application and I am also getting this error when I try and access the index file.
By the way, my include file does have the above mentioned lines....
Has anybody found a solution to this?