runtime path help

hi! i have this


'runtimePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'../runtime'

as my runtime path… it displays

/webb/webs/eer/www.mysite.com/admin/protected/config/../runtime

i want it to display as

/webb/webs/eer/www.mysite.com/admin/protected/runtime

how do i change my runtime path so it changes to the path above?

Even though i can’t imagine why this should ever be important


'runtimePath'=>realpath(dirname(__FILE__).DIRECTORY_SEPARATOR.'../runtime'),

ok thanks… what is realpath for?

Uhm, it’s used for what you asked for…? Check this. The PHP manual should be your second best friend (after Yii’s API docs).