PDA

View Full Version : Trouble Ticket Error


brooker
04-06-04, 03:23 AM
I'm getting the following error on the Ticket page:

Warning: main(modules/ticketsmith/config.inc.php): failed to open stream: No such file or directory in /www/htdocs/dotproject/modules/ticketsmith/index.php on line 33

I'm running Mankdrake 10, php 4.3.5, Apache 2.0.49, and MySql 3.23.

Any suggestions?

brooker
04-06-04, 03:50 AM
Problem solved...In case someone else runs into this, here's the fix (from the patches on SourceForge, 940101):

require path in ticketsmith


The files in the Ticketsmith module (modules/ticketsmith/index.php) contain:

require("modules/ticketsmith/config.inc.php");
require("modules/ticketsmith/common.inc.php");

This goes wrong, if dotproject is installed in a folder
below web root.

change to:

require("config.inc.php");
require("common.inc.php");