Here is my error:
Warning: main(/usr/local/etc/httpd/htdocs/phpCodeGenie/web/app/settings/definitions.inc.php): failed to open stream: No such file or directory in /usr/local/lib/php/genieConfiguration.inc.php on line 31
Warning: main(): Failed opening '/usr/local/etc/httpd/htdocs/phpCodeGenie/web/app/settings/definitions.inc.php' for inclusion (include_path='.:/usr/local/lib/php') in /usr/local/lib/php/genieConfiguration.inc.php on line 31
Warning: main(INC_LOGIN_PAGE): failed to open stream: No such file or directory in /usr/local/etc/httpd/htdocs/phpCodeGenie3/web/index.php on line 22
Warning: main(): Failed opening 'INC_LOGIN_PAGE' for inclusion (include_path='.:/usr/local/lib/php') in /usr/local/etc/httpd/htdocs/phpCodeGenie3/web/index.php on line 22
here are my files:
.htaccess lines are commented out
the genieConfiguration.inc.php file in the include path looks like this:
<?
session_start();
define("URL_ADDRESS","http://localhost/phpCodeGenie/web/");
// Linux Server
define("SITE_PATH","/usr/local/etc/httpd/htdocs/phpCodeGenie/web"); // 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");
Here is my error:
Warning: main(/usr/local/etc/httpd/htdocs/phpCodeGenie/web/app/settings/definitions.inc.php): failed to open stream: No such file or directory in /usr/local/lib/php/genieConfiguration.inc.php on line 31
Warning: main(): Failed opening '/usr/local/etc/httpd/htdocs/phpCodeGenie/web/app/settings/definitions.inc.php' for inclusion (include_path='.:/usr/local/lib/php') in /usr/local/lib/php/genieConfiguration.inc.php on line 31
Warning: main(INC_LOGIN_PAGE): failed to open stream: No such file or directory in /usr/local/etc/httpd/htdocs/phpCodeGenie3/web/index.php on line 22
Warning: main(): Failed opening 'INC_LOGIN_PAGE' for inclusion (include_path='.:/usr/local/lib/php') in /usr/local/etc/httpd/htdocs/phpCodeGenie3/web/index.php on line 22
here are my files:
.htaccess lines are commented out
the genieConfiguration.inc.php file in the include path looks like this:
<?
session_start();
define("URL_ADDRESS","http://localhost/phpCodeGenie/web/");
// Linux Server
define("SITE_PATH","/usr/local/etc/httpd/htdocs/phpCodeGenie/web"); // 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);
?>
THanks for any help.
-ANdrew
Hi andrew.. its not working koz.. u got
define("SITE_PATH","/usr/local/etc/httpd/htdocs/phpCodeGenie/web");
you should not have the web in the site path.. change ur site path to
define("SITE_PATH","/usr/local/etc/httpd/htdocs/phpCodeGenie");
and try again
THANKS!
-Andrew