// Linux Server
define("SITE_PATH","/var/www/html/phpCodeGenie3"); // no trailing slashes
define("FILE_SEPARATOR", "/");
// win or nix
define("OS_TYPE","nix");
/*
// Windows Server
define("SITE_PATH","D:\\projects\\phpCodeGenie3.0"); // no trailing slashes
define("FILE_SEPARATOR", "\\");
// win or nix
define("OS_TYPE","win");
*/
// Specify the language that you want to use phpCodeGenie in
// You can make your own language file if it does exist yet
// and send your contribution back to phpCodeGenie
define("LANGUAGE_FILE",APP_PATH.FILE_SEPARATOR."language".FILE_SEPARATOR."lang_english.inc.php");
Everything looks good, file perms are okay and such, but when I go to the page, all I get is a 'blank' page as a result. Tried using the address "http://testpc/phpCodeGenie3/web/", and "http://testpc/phpCodeGenie3/", with and without index.php with no results....
I'm stumped....
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2004-08-27
Nevermind... I'm a goof.
The genieConfiguration.inc.php file wasn't in my PHP include path....
<sigh>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
<?
session_start();
define("URL_ADDRESS","http://testpc/phpCodeGenie3/web/");
// Linux Server
define("SITE_PATH","/var/www/html/phpCodeGenie3"); // no trailing slashes
define("FILE_SEPARATOR", "/");
// win or nix
define("OS_TYPE","nix");
/*
// Windows Server
define("SITE_PATH","D:\\projects\\phpCodeGenie3.0"); // no trailing slashes
define("FILE_SEPARATOR", "\\");
// win or nix
define("OS_TYPE","win");
*/
define("WEB_SEPARATOR","/");
define("APP_PATH",SITE_PATH.FILE_SEPARATOR."app");
define("WEB_PATH",SITE_PATH.FILE_SEPARATOR."web");
// Specify the language that you want to use phpCodeGenie in
// You can make your own language file if it does exist yet
// and send your contribution back to phpCodeGenie
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);
?>
Everything looks good, file perms are okay and such, but when I go to the page, all I get is a 'blank' page as a result. Tried using the address "http://testpc/phpCodeGenie3/web/", and "http://testpc/phpCodeGenie3/", with and without index.php with no results....
I'm stumped....
Nevermind... I'm a goof.
The genieConfiguration.inc.php file wasn't in my PHP include path....
<sigh>
I had the same problem but I had missed to install php-mysql. Strangely there where no error messages.