As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
How can i implement flushing particular cache for particular get request for controller if controller has next code:
I need to find row where summ>=250 I am doing following: $criteria = new CDbCriteria; $criteria->condition =\'summ >= 250\';
I\'m following along with the book \"Agile Web Application Development with Yii 1.1 and PHP5\" and I just started the part about unit testing in chapter 2.
How to find row by column with null value? It doesn\'t work: $criteria->condition = \'`se开发者_开发百科ller_id` IS NULL\';
I\'m a starter in yii framework. I just want know how scalable Yii is with a lot of online users at a time?
I\'m looking at the controller for the default Delete button in the CButtonColumn class. It manages to return to the previous web-page after deleting a CGridView line and remain on the same page of th
开发者_StackOverflowHow can i see all view file names which was rendered for current page ? in debug console there is no any info about which view files were loaded during page generation. There is n
I just started using Yii, coming from Codeigniter (CI). I\'m trying to set up a situation where the application will check a users credentials before they can even access the site. In CI, I would crea
in Yii, lets say I have an Employee table, and a Company table.A Company hasMany Emlpoyee.An Emloyee belongsTo a Company.