Im a new mac user and one of the things that make me absolutely FURIOUS are the ridiculous permissions settings by default on IOS . I AM THE SOLE USER OF MY LAPTOP AND I COULD GIVE 2 POOPS ABOUT MY FILE PERMISSIONS!
If I could remove the permissions all together or unify them so I dont have 3 diffent levels of permission on a computer with only 1 user ( as of now when i click and go to get info on a file or folder the permission groups read ( Chuck(which is me) Admin and Everyone
As of right now to do ANYTHING at all involving my localhost I have to go to each individual folder>get info and change the permissions on all 3 accounts/levels/w.e you would call this rubish and even then it still gives me access denied when i try to upload photos to certain folders.
For example I present exhibit A :
function uploadImage_post(){
$gallery_path = realpath(APPPATH . '../UPLOADS/test/');
$gallery_path_url = base_url().'uploads/';
if(isset($_FILES['image'])){
$errors = array();
$allowed_ext = array('jpg','jpeg','png','gif');
$file_name = $_FILES['image']['name'];
$file_ext = strtolower(end(explode('.', $file_name)));
//print_r($file_ext);
$file_size = $_FILES['image']['size'];
$file_tmp = $_FILES['image']['tmp_name'];
if(in_array($file_ext, $allowed_ext)==false){
$errors[] = "Extension not allowed";
$this->response($errors, 400);
}
if($file_size>2097152){
$errors[]='File size must be under 2mb';
$this->response($errors, 400);
}
if(empty($errors)){
if(move_uploaded_file($file_tmp, "$gallery_path/$file_name")){
$message = array('Success' => 'photouploaded');
$this->response($message, 200);
}
}else{
echo "Errors:";
foreach ($errors as $error){
echo $error, '<br/>';
}
}
}
}
function Test_post(){
$gallery_path = realpath(APPPATH . '../uploads');
$gallery_path_url = base_url().'uploads/';
$data['gallery_path'] = $gallery_path;
$data['gallery_path_url'] = $gallery_path_url;
$this->response($data, 200);
}
Simple function inside my Codeigniter Restserver....no errors , but when i test it what happens? You guessed it PERMISSION DENNIED . Even though ive made sure to go click and add read & write permissions to all 3 accounts for
- The htdocs folder itself
- the root folder for this project
- the uploads folder
- the controllers folder.
A PHP Error was encountered
Severity: Warning
Message: move_uploaded_file(/Brilliant-Advertisment-28.jpg) [function.move-uploaded-file]: failed to open stream: Permission denied
Filename: api/profile.php
Line Number: 146
A PHP Error was encountered
Severity: Warning
Message: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/Applications/XAMPP/xamppfiles/temp/php9pJQed' to '/Brilliant-Advertisment-28.jpg'
Filename: api/profile.php
Line Number: 146