I have downloaded Tank Auth and am trying to create a folder when the user registers. I have edited the create_user() function in the users.php model like so but the folder does not get created. I am on Windows 7 so I thought maybe it was a permission thing. I turned off UAC, but it still does not work.
I want the folder to end up it the root directory where the index.php is (outside of application folder).
function create_user($data, $activated = TRUE)
{
$data['created'] = date('Y-m-d H:i:s');
$data['activated'] = $activated ? 1 : 0;
if ($this->db->insert($this->table_name, $data)) {
$user_id = $this->db->insert_id();
if(!is_dir("./uploads/".$user_id)){
mkdir("./uploads/".$user_id , 0777);
}
if ($activated) $this->create_profile($user_id);
return array('user_id' => $user_id);
}
return NULL;
}