I am attemting to run CodeGenie on a very up to date FC1 box with PHP4.3.4, Apache 2 and an obsolete Mysql 3.23.
genieConfiguration.inc.php seems properly placed and php.ini pointes include_path to the dir where that file is, i'd swear it is properly set... nevertheless, something is cutting off app, web and lib from the path, resulting in 404 errors.
For instance,
The requested URL /codegenie/frames/leftFrame/leftBar.php was not found on this server.
I am attemting to run CodeGenie on a very up to date FC1 box with PHP4.3.4, Apache 2 and an obsolete Mysql 3.23.
genieConfiguration.inc.php seems properly placed and php.ini pointes include_path to the dir where that file is, i'd swear it is properly set... nevertheless, something is cutting off app, web and lib from the path, resulting in 404 errors.
For instance,
The requested URL /codegenie/frames/leftFrame/leftBar.php was not found on this server.
Here's my config file.
<?
session_start();
define("URL_ADDRESS","http://localhost/codegenie");
define("SITE_PATH","/var/www/html/codegenie");
define("FILE_SEPARATOR", "/");
define("OS_TYPE","nix");
define("WEB_SEPARATOR","/");
define("APP_PATH",SITE_PATH.FILE_SEPARATOR."app");
define("WEB_PATH",SITE_PATH.FILE_SEPARATOR."web");
define("LANGUAGE_FILE",APP_PATH.FILE_SEPARATOR."language".FILE_SEPARATOR."lang_english.inc.php");
define("CONFIG_COMPONENT",APP_PATH.FILE_SEPARATOR."settings");
define("CONFIG_FILE",CONFIG_COMPONENT.FILE_SEPARATOR."definitions.inc.php");
include_once(CONFIG_FILE);
?>
Symlinking everthing would be really a pain.
Hints are much welcome.
Manchine.
Blind me (almost literaly:)). I was missing /web/...
Sorry for the useless (al)harm.
Manchine.