I searched the forms and I couldn't find a sulotion to my problum.
I wonder if someone can help me?
Any help will be apreciated
I have Wamp on winXP.
WampServer 2.0c [05/05/2008]
Includes :
- Apache 2.2.8
- MySQL 5.0.51b
- PHP 5.2.6
This is the message I get:
Warning: include_once(INC_MAIN_PAGE) [function.include-once]: failed to open stream: No such file or directory in C:\wamp\www\phpCodeGenie\index.php on line 2
Warning: include_once() [function.include]: Failed opening 'INC_MAIN_PAGE' for inclusion (include_path='C:\wamp\www\phpCodeGenie\app\settings') in C:\wamp\www\phpCodeGenie\index.php on line 2
This is my .htaccess:
php_value include_path "C:\wamp\www\phpCodeGenie\app\settings"
This is my genieConfiguration.inc.php:
session_start();
define("URL_ADDRESS","http://localhost/phpCodeGenie/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:\\wamp\\www\\phpCodeGenie"); // 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");
I searched the forms and I couldn't find a sulotion to my problum.
I wonder if someone can help me?
Any help will be apreciated
I have Wamp on winXP.
WampServer 2.0c [05/05/2008]
Includes :
- Apache 2.2.8
- MySQL 5.0.51b
- PHP 5.2.6
This is the message I get:
Warning: include_once(INC_MAIN_PAGE) [function.include-once]: failed to open stream: No such file or directory in C:\wamp\www\phpCodeGenie\index.php on line 2
Warning: include_once() [function.include]: Failed opening 'INC_MAIN_PAGE' for inclusion (include_path='C:\wamp\www\phpCodeGenie\app\settings') in C:\wamp\www\phpCodeGenie\index.php on line 2
This is my .htaccess:
php_value include_path "C:\wamp\www\phpCodeGenie\app\settings"
This is my genieConfiguration.inc.php:
session_start();
define("URL_ADDRESS","http://localhost/phpCodeGenie/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:\\wamp\\www\\phpCodeGenie"); // 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);
I HAVE THE SAME PROBLEM :(