I have a module up and running in Yii.I can access the module at http://url/module without any problems.I can not get a secure connection to work, however.
So i am working 开发者_运维技巧in an app that uses de CGridView extensively but I am porting a webapp from a proprietary framework to Yii. So the CSS files are already written and have been working up
I have a validation rules in my model: public function rules() { return array(){ array(\'order\', \'required\'),
public function actionDelete($id) { if(Yii::app()->request->isPostRequest) { // we only allow deletion via POST request
I am building an application in Yii that used the SwiftMailer Extension. The Sw开发者_Python百科iftMailer examples show that I should include all of the information in the controller file however woul
I have an Active Record Model for Users in my application, and I was hoping to re-use this model for the user registration form. The user registration form has a few fields which I don\'t want to stor
Is it \"okay\" to have an HTML document embedded inside the body tag of another HTML document? The reason why I want to do this is so that I can call a javascript body onload -- I cannot do that in th
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
I\'m writing unit test for my models. Most of them use many standart functions, like time(), date() and so on. What is best approach to mock these functions in Yii testing style?
I have a frameset in yii application like this: main menu| |-------------------| content1 | content2|