Blank Pages Generated

Login or register to post comments
4 replies [Last post]
Offline
Joined: 06/01/2009

Hi all, I have 60 Tables in my BD, when I generated with qcubed, all generated without errors, but around 10 Tables generated code but I dont see anything in the browser, only a Blank Page.

Why occur this problem?

OOPMan's picture
Offline
Joined: 11/07/2008

Sounds like table generation is crashing. Look at your error log to see what the problem is.

agsel's picture
Offline
Joined: 04/02/2008

I had the same problem on my windows server. I simply disabled output buffering. In includes/qcodo/_core/qcodo.inc.php try to comment out line 54. It has worked for me.

Offline
Joined: 06/01/2009

i have this text in error.log
PHP Fatal error: Maximum execution time of 30 seconds exceeded in

I soluted this error with change max_execution_time to 300:
max_execution_time = 300 ; Maximum execution time of each script, in seconds

Thanks all for help!

OOPMan's picture
Offline
Joined: 11/07/2008

Hi, that's a common error. An actual better fix is to add

set_time_limit(3000); to codegen.php

Rather than setting the global time limit in php.ini