pico
|
| Posted: 11/07/2002, 3:32 AM |
|
This is my situation:
I have istalled easyPHP on my PC(MySQL, PHP and Apache web server)
I have created a new folder for task manager in www root of my web server
I have also create a db called "taskman" with MySQL Admin
I have modified the db connection in common.php3 like show below:
// Database Parameters
include("./db_odbc.inc");
$DATABASE_NAME = "taskman";
$DATABASE_USER = "";
$DATABASE_PASSWORD = "";
$DATABASE_HOST = "localhost";
But The script doesn't worK. What I have to to ???
Can somebody help me??
|
|
|
 |
DR
|
| Posted: 11/07/2002, 4:41 PM |
|
I may take a look at this. Perhaps you could describe the error message you're getting. What doesn't work?
DR
|
|
|
 |
PiCo
|
| Posted: 11/08/2002, 4:52 AM |
|
In the default.php3 page appear this error:
Warning: <?php_track_vars?> is no longer supported - please use the track_vars INI directive instead in c:\programmi\easyphp\www\taskman\default.php3 on line 1
Fatal error: Cannot redeclare is_numeric() in c:\programmi\easyphp\www\taskman\common.php3 on line 101
In the Default.htm there are a lot of error like this: {task_name} or {project_id}
{priority_id}
{assigned_to}
{status_id}
I think there is some problem with db connection, but I'm not sure...
THX in advance
pico
|
|
|
 |
RonB
|
| Posted: 11/08/2002, 11:04 PM |
|
I dont think this has anything to do with the db connection looks more like a php problem. It looks like you are trying to set an php enviroment variable that has to be activated in the php.ini file located under the directory of your OS (winnt with win2k, or windows with win98).
Open the php.ini file and look for the php_track_vars section. activate that one and make sure you restart apache if you have php installed as a modulue.
|
|
|
 |