After testing the application this afternoon (an liking it), I decided to upload it to my web server. Unfortunally, it stopped working.
Seems like the $_SERVER['PATH_INFO'] (in the uri class) is not returning anything, therefore anything further the projectlisting is not accessible any more.
Please review and let me know, thanks.
Linux, Centos, Apache Another fact is that I had already a main application running in public folder and in order to install traq 0.5 I had to create another folder for it's dedicated use. In other workds, traq 0.5 was not installed directly on the virtualhost directory, but in a sub-folder.
Traq is designed to be accessed directly, not through a sub folder.
I have fixed it in my hosting-server, by I had to modify the URI calls as indicated bellow:
<?php /** * Origin * Copyright (c) 2009 Rainbird Studios * $Id: uri.php 21 2009-02-22 06:59:44Z jack $ */
/** * URI Class * @version $Rev: 21 $ */ class URI { public $seg = array();
} ?>
Would you please analyze these changes, it might not be the best way to solve it,but it worked for me. Hope that this helps you.