Celestic Another Web Based Project Manager
#21
Posted 31 March 2012 - 08:24 AM
Request Timeout
This request takes too long to process, it is timed out by the server. If it should not be timed out, please contact administrator of this web site to increase 'Connection Timeout'.
I set in .htaccess
TimeOut 600
php_value max_execution_time 600
what else I can do? could it be database timeout?
a bit disappointed, but anyway great app, still use it locally.
#22
Posted 31 March 2012 - 08:37 AM
But could happen if you're loading a huge MySQL file to build the db, but in this case I doubt that is the case since it doesn't have any demo data.
#23
Posted 31 March 2012 - 11:19 PM
#24
Posted 31 March 2012 - 11:34 PM
Yii Open Source Project Manager
#25
Posted 01 April 2012 - 07:08 PM
Jack Fiallos, on 31 March 2012 - 11:34 PM, said:
this is the error
Quote
This request takes too long to process, it is timed out by the server. If it should not be timed out, please contact administrator of this web site to increase 'Connection Timeout'.
but it seems like server error because of timeout, so there is no error inside application, so that's why I'm going to run debugger on install to see where it stumbled.
#26
Posted 02 April 2012 - 12:53 AM
Installer didn't work for me.
#27
Posted 02 April 2012 - 11:32 AM
could tell me which version of mysql are you using?
Yii Open Source Project Manager
#29
Posted 02 April 2012 - 12:36 PM
I'm ask, cuz I think the error it's caused by sql query.. ohh, i'm not sure yet
I'm using
insert into table (field1, field2) values (1.2), (3.4), (5.6);
when it should
insert into (field1, field2) values (1.2); insert into (field1, field2) values (3.4); insert into (field1, field2) values (5.6);
Yii Open Source Project Manager
#30
Posted 02 April 2012 - 01:09 PM
My problem is related to the production file like i posted above. If manually override your code with the db.php file information the installer worked (

#31
Posted 02 April 2012 - 01:27 PM
to change between dev and production you have to edit celestic/index.php - YII_DEBUG true of false .. db.php its used by prod and dev environments..
It's almost the same configuration.. the main differents are logs messages
Yii Open Source Project Manager
#33
Posted 02 April 2012 - 06:25 PM
#34
Posted 03 April 2012 - 09:50 AM
I'm making changes in queries using generic sql statements..
Yii Open Source Project Manager
#35
Posted 06 April 2012 - 09:08 PM
MySQL version 5.1.61-cll - shared hosting (not working)
I made some tests and found an error or issue somewhere in the file mysql_schema.sql (when I exclude this file, everything's OK)
I'll try to exclude some sql statements and locate the problem.
#36
Posted 06 April 2012 - 10:28 PM
I located the problem in the
celestic\protected\modules\install\components\databaseConfiguration.php
commented out lines 36-39
// while (ob_get_level() > 0) // { // ob_end_flush(); // }
looks like an indefinite loop.
According to http://au.php.net/ma...b-get-level.php ob_get_level has a quite funny behaviour.
The stars just are not in my favor on shared hosting

Hope it helps if someone has the same problem with installation.
#37
Posted 08 April 2012 - 01:12 PM
I guess the error occurs when ob_get_level is disabled on shared hosting ..
there something else.. I made the mistake of using methods ob_*() without using ob_start() .. if you have free time you can try making the following changes on databaseConfiguration file
//line 15 .. ob_start(); //line 36 .. while (@ob_get_level() > 0)
Yii Open Source Project Manager
#38
Posted 08 April 2012 - 06:50 PM
Your patch hasn't helped, I've got a time-out again(((
Oh, man, you make me to do weird things, I mean reading docs))
ob_get_level always returns 1 or greater value for PHP with setting zlib.output_compression to "On".
I have gzip compression on my shared hosting.
So, it would be nice if you modify your script to check compression somehow
if (zlib_get_coding_type()) $limit = 1; else $limit = 0; while (ob_get_level() > $limit) { ....
this works for both shared and local hosting (at least for me))
cheers
#39
Posted 08 April 2012 - 10:19 PM
thank you man for your help.. I've tested in 4 different servers and never got the error..
now with your correction.. i'll update the code and upload in the next version..
Yii Open Source Project Manager
#40
Posted 24 April 2012 - 04:34 PM
Very nice application, thanks for sharing it with us.
I really want to try to work with it involving my team.
Sadly, something is missing for me: a help file.
Not for installing but for using the application.
Do you have something that explain in depth the logic behind the app?
On first impression all is clear, but if you want to start a real environment, you have to know exactly the logic.
Looking forward for your answer,
Viorel