I finally have my installation working. For anyone else having trouble, I hope this helps you. My setup is on a remotely hosted *nix Apache server.
1) Made file changes per bug [ 1124033 ] Permissions Attributes have locked me out.
besthip provided this permissions fix where quotes need to be removed:
\app\common\utils\fileSystem\fileSystemUtils.class.php
line 99 and 148. Change it from "0755" to 0755
\filesCopyTemplate\php\genieFramework\app\common\utils\fil
eUpload\upload.class.php
line 404 and 408. Change it from "0777" to 0777
// Linux Server
define("SITE_PATH","/home/MY_USER_NAME/public_html/phpcodegenie");
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");
***************/
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I finally have my installation working. For anyone else having trouble, I hope this helps you. My setup is on a remotely hosted *nix Apache server.
1) Made file changes per bug [ 1124033 ] Permissions Attributes have locked me out.
besthip provided this permissions fix where quotes need to be removed:
\app\common\utils\fileSystem\fileSystemUtils.class.php
line 99 and 148. Change it from "0755" to 0755
\filesCopyTemplate\php\genieFramework\app\common\utils\fil
eUpload\upload.class.php
line 404 and 408. Change it from "0777" to 0777
2) Modify .htaccess file
php_value include_path "/home/MY_USER_NAME/public_html/phpcodegenie/app/settings/"
3) Modify genieConfiguration.inc.php
define("URL_ADDRESS","http://www.MY_DOMAIN.com/phpcodegenie/web");
// Linux Server
define("SITE_PATH","/home/MY_USER_NAME/public_html/phpcodegenie");
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");
***************/