Here is my code to create a folder named images
$path="".Yii::app()->request->baseUrl."/users/".Yii::app()->session["id"]."/images";
if(!file_exists($path))
{
mkdir($path,0777,true);
echo($path);
}
But the error i am having is
mkdir(): Permission denied (/var/www/yiicapp/protected/models/Statement.php:123)
I am logged in as "bhawin" but it is making owner www-data
http://pt1.php.net/chmod
You have no rights to create a new folder, so chmod is probably what you need :)