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.
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.
Sounds like table generation is crashing. Look at your error log to see what the problem is.
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.
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!
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