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?
mikl
(Mike)
2
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?
mikl
(Mike)
4
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).