First of all I would like to stress the fact that i infact have been looking at all post in this forum concerning this problem, which many many seems to have.
I did not find any help there though since I already did the things that was suggested.
Now to my problem:
I have downloaded and installed phpcodegenie successfully.
I followed all the instructions, and I am able to reach the log-in site. When i rub the lamp(log in), i get...blank screen. Nothing happens.
I have been trying to debug and searching for a solution for many hours, and I am getting really frustrated since i need a crud manager like phpcodegenie.
My question is : Why is my screen blank? How do i solve it? How do i get phpcodegenie working?
I did the following:
- Include the phpcodegenie in my include_path in php.ini yielding:
// 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\\prepaid\\admin\\phpCodeGenie3_0_2"); // 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");
First of all I would like to stress the fact that i infact have been looking at all post in this forum concerning this problem, which many many seems to have.
I did not find any help there though since I already did the things that was suggested.
Now to my problem:
I have downloaded and installed phpcodegenie successfully.
I followed all the instructions, and I am able to reach the log-in site. When i rub the lamp(log in), i get...blank screen. Nothing happens.
I have been trying to debug and searching for a solution for many hours, and I am getting really frustrated since i need a crud manager like phpcodegenie.
My question is : Why is my screen blank? How do i solve it? How do i get phpcodegenie working?
I did the following:
- Include the phpcodegenie in my include_path in php.ini yielding:
include_path=".;C:\PHP\pear;C:\PHP\includes;C:\Prepaid;C:\Inetpub\wwwroot\prepaid\admin\phpCodeGenie3_0_2\app\settings"
- Modified the settings in your genieConfiguration.inc.php file yielding :
<?
session_start();
define("URL_ADDRESS","http://localhost/admin/phpCodeGenie3_0_2/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\\prepaid\\admin\\phpCodeGenie3_0_2"); // 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);
?>
- Ensuring that the folder containing phpcodegenie is editable, and reachable from all places.
I am running on a windows 2000, Service Pack 4 machine.
I am using IIS to run PHP, which I have been doing for a long time, so no problem there.
I had already adodb installed on my system before installing phpcodegenie, so including the one that ships with codegenie, gives 2.
I simply dont understand why it does not work.
I really hope somebody in here can help me back on track...i am really empty for ideas as of what to do.
Thank you very much in advance :)
In php.ini find error_reporting =
and set it to E_ALL
it should at least give you error messages instead of a blank screen
Ok believe it or not you need to change this
<?
to this
<?php
I had the same problem made those changes in All the files and presto