Project does not work on Production Server

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
marshallrwilson
User
Posts: 2

Project does not work on Production Server

Post by marshallrwilson »

I am new to PHPMaker 10 (trial period). I have created a table maintenance project on our development server (Postgres db). It works fine. I have copied the project directory structure to our production server and changed the database connection values. When I attempt to run the project, I get a blank browser screen. I know that it is running the index.php, because I can put an 'echo' call in that file and see it in the browser. Any help would be appreciated.
Thanks MRW


danielc
User
Posts: 1599

Post by danielc »

A blank page ususally means there is PHP error. Configure your php.ini to show all errors.


mobhar
User
Posts: 11905

Post by mobhar »

Also, activate the Debug mode in the generated web app. Find the following code in your generated "ewcfg*.php" file:
define("EW_DEBUG_ENABLED", FALSE, TRUE); // TRUE to debug

change it become:
define("EW_DEBUG_ENABLED", TRUE, TRUE); // TRUE to debug

as this will show any SQL error that could be happened.


Post Reply