Today I found a bit strange situation to me. I opened Gii installed inside my website and when tried to use it to generate model for one of my tables I got error: "Maximum execution time of 60 seconds exceeded in D:\Dev\xampp\yii\db\CDbCommand.php on line 364" followed by "Maximum execution time of 60 seconds exceeded in D:\Dev\xampp\yii\web\CHttpSession.php on line 108". It repeats, so right now I'm unable to generate Model, for the first time in whole Yii history!
The strangest part is that both DB connection is 100% properly configured and communication to server and DB works like a charm, because seconds after error message from Yii I go to my webapp main page, where in view I wrote a sample SQL statement to test if everything is OK with DB, connection and configuration (I know that using SQLs in view is a very bad manner, but it was just a temporal test).
In other words - I can use my website normally, connection to DB works, results from DB are generated within nanoseconds (all right, I'm kidding, but really fast) and in the same time Gii failes to generate really simple model (table with four columns and three records) with 60 seconds timeout.
I have no bloody idea, what can be wrong?
Has anyone run into the same situation? Is there anything I can do right now or the only solution left to me is to write model classes by hand?

Help















