/*****************
// Linux Server
define("SITE_PATH","/usr/local/apache/htdocs/phpCodeGenie3.0");
define("FILE_SEPARATOR", "/");
// win or nix
define("OS_TYPE","nix");
***************/
// Windows Server
define("SITE_PATH","C:\\Inetpub\\wwwroot\\phpgenie"); // 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");
Ok well I've read just about all the posts here on install problems and just keep getting the blank page after hitting the lamp to continue.
Been looking at this for to long now and hoping someone can spot an error Im just overlooking.
Soooo.. heres what Ive got so far
WinXP
Have the genieConfiguration.inc.php copied into the php include directory (noted below)
-----------php.ini file
; Windows: "\path1;\path2"
include_path = ".;c:\php\includes"
------------genieConfiguration.ini.php file
<?
session_start();
define("URL_ADDRESS","http://localhost/phpgenie/web/");
/*****************
// Linux Server
define("SITE_PATH","/usr/local/apache/htdocs/phpCodeGenie3.0");
define("FILE_SEPARATOR", "/");
// win or nix
define("OS_TYPE","nix");
***************/
// Windows Server
define("SITE_PATH","C:\\Inetpub\\wwwroot\\phpgenie"); // 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);
?>
Been over it a few times now and just cant see what im missing.
Any help is greatly appreciated.
Oops.. also have this in .htaccess file, but not sure if its doing anything in IIS or not.
php_value include_path "C:\Inetpub\wwwroot\phpgenie\app\settings"