Hello,
I read the install file and the help on the website even this forum but It doesn't work for me.
Here is my genieConfiguration.inc.php :
<?
session_start();
define("URL_ADDRESS","http://localhost/phpCodeGenie3/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","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");
Warning: main(genieConfiguration.inc.php): failed to open stream: No such file or directory in /home/user/j/a/z/jazweber/www/phpCodeGenie/index.php on line 1
Warning: main(): Failed opening 'genieConfiguration.inc.php' for inclusion (include_path='./:/home/include/') in /home/user/j/a/z/jazweber/www/phpCodeGenie/index.php on line 1
Warning: main(INC_MAIN_PAGE): failed to open stream: No such file or directory in /home/user/j/a/z/jazweber/www/phpCodeGenie/index.php on line 2
Warning: main(): Failed opening 'INC_MAIN_PAGE' for inclusion (include_path='./:/home/include/') in /home/user/j/a/z/jazweber/www/phpCodeGenie/index.php on line 2
my phpinfo is :
include_path : ./:/home/include/
REDIRECT_V2H_PATH : /home/user/j/a/z/jazweber/www/phpCodeGenie
I tryed with all, nothing is working
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have the gotten and same problem and same genieconfiguration except that i have installed it on a windows 2000 machine and my is include_path : .:/php/includes and i already put my genieconfiguration in it but nothing seems to work... Help because im getting desperate...
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It may be possible that a session is not being started. Try creating a folder called temp and place it in a few different places,( root, c:\, www, giving it full access . The program needs a temp folder to start a session
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
....also if you haven't already download a copy of PHPCoder . this is a program that will help you to look at your php code. Your error states that the problem is in line one......read line one of the code....session start. a session is not starting. Other problem areas may be in your PHP.ini file under the session variables
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I read the install file and the help on the website even this forum but It doesn't work for me.
Here is my genieConfiguration.inc.php :
<?
session_start();
define("URL_ADDRESS","http://localhost/phpCodeGenie3/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","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);
?>
and here is my ie error :
Warning: main(genieConfiguration.inc.php): failed to open stream: No such file or directory in /home/user/j/a/z/jazweber/www/phpCodeGenie/index.php on line 1
Warning: main(): Failed opening 'genieConfiguration.inc.php' for inclusion (include_path='./:/home/include/') in /home/user/j/a/z/jazweber/www/phpCodeGenie/index.php on line 1
Warning: main(INC_MAIN_PAGE): failed to open stream: No such file or directory in /home/user/j/a/z/jazweber/www/phpCodeGenie/index.php on line 2
Warning: main(): Failed opening 'INC_MAIN_PAGE' for inclusion (include_path='./:/home/include/') in /home/user/j/a/z/jazweber/www/phpCodeGenie/index.php on line 2
my phpinfo is :
include_path : ./:/home/include/
REDIRECT_V2H_PATH : /home/user/j/a/z/jazweber/www/phpCodeGenie
I tryed with all, nothing is working
put your genieconfiguration file in /home/include directory and try again..
I have the gotten and same problem and same genieconfiguration except that i have installed it on a windows 2000 machine and my is include_path : .:/php/includes and i already put my genieconfiguration in it but nothing seems to work... Help because im getting desperate...
It may be possible that a session is not being started. Try creating a folder called temp and place it in a few different places,( root, c:\, www, giving it full access . The program needs a temp folder to start a session
....also if you haven't already download a copy of PHPCoder . this is a program that will help you to look at your php code. Your error states that the problem is in line one......read line one of the code....session start. a session is not starting. Other problem areas may be in your PHP.ini file under the session variables