Showing 821-827 of 827 items.

Q: My yiic tool cannot run model and crud commands. Why?

Created 17 years ago by qiang qiang, updated 17 years ago by mishhh mishhh. 1 comment

Some PHP installations may use a different php.ini file for CLI PHP (command line PHP parser). As a result, when running the model or crud command in yiic shell, you may encounter errors like "YiiBase::include(PDO.php): failed to open stream..." or "...could not find driver", even though the requirement checker confirms you have PDO and the corresponding database driver.

0 0
1
Viewed: 19 560 times
Version: 1.1
Category: Tutorials

    How to add more information to Yii::app()->user

    Created 17 years ago by qiang qiang, updated 14 years ago by Yang He Yang He. 2 comments

    By default, the expression Yii::app()->user returns a [CWebUser] [application component](http://www.yiiframework.com/doc/guide/basics.application#application-component) which represents the information that are closely related with the current user. Some information can be persistent throughout the current user session. For example, [CWebUser] already comes with a [name|CWebUser::name] property th...

    21 0
    28
    Viewed: 239 617 times
    Version: 1.1
    Category: Tutorials

    How to setup FCKeditor

    Created 17 years ago by krillzip krillzip, updated 14 years ago by Dark-Sun Dark-Sun. 2 comments

    Next to do is to download the Yii FCKeditor extension, created by Ascomae. Extract the downloaded file, and place the fckeditor/ widget folder in your web applications protected/extensions/ directory.

    3 1
    5
    Viewed: 39 753 times
    Version: 1.1
    Category: Tutorials

      How to upload a file using a model

      Created 17 years ago by qiang qiang, updated 11 years ago by samdark samdark. 8 comments

      First declare an attribute to store the file name in the model class (either a form model or an active record model). Also declare a file validation rule for this attribute to ensure a file is uploaded with specific extension name.

      66 4
      64
      Viewed: 534 190 times
      Version: 1.1
      Category: Tutorials

      How to customize the error message of a validation rule

      Created 17 years ago by qiang qiang, updated 14 years ago by Yang He Yang He. 4 comments

      Validators extending from [CValidator] all have a property named [message|CValidator::message]. You can set this property in the corresponding validation rule to customize the error message. For example, the following validation rule uses an error message that is different from the default one:

      13 0
      14
      Viewed: 153 351 times
      Version: 1.1
      Category: Tutorials