jeudi 1 août 2019

Problem in uploading file in Folder in laravel 5.3?

I am trying to upload image in laravel but i am getting error when I am uploading image in folder, When I am uploading image and clicking on submit button, it's giving me problem in uploading file, i think there are error in this line...

 move_uploaded_file($imageName, $moveable_file);

here are my usercontrolle.php file

public function dropzone(Request $request)
{
    $user = Auth::user()->toArray();
    $user_id = $user['id'];
    $type = 'photo';
    $type_id=0;
    $data = $_FILES["image"];

    //dd($data);
    $doc_id = $_POST["doc_id"];
    $doc_name = $_POST["doc_name"];
    if($doc_id)
    {   $img_id=$doc_id;
        $img_name=$doc_name;
        $response = $this->userService->deleteDocument($img_id,$img_name,$user_id,$type,$type_id);
    }
  // $image_array_1 = explode(";", $data);
  // $image_array_2 = explode(",", $image_array_1[1]);
  // $data = base64_decode($image_array_2[1]);

  $storage_path = env('DOCUMENT_STORAGE_PATH');
  $profile_upload_dir = str_replace(["/","\\"], [DIRECTORY_SEPARATOR,DIRECTORY_SEPARATOR], $storage_path); 

    if($type_id != '0'){
        $destination_path = $profile_upload_dir . $user_id ."\\". $type."\\". $type_id;
        $destination_path = str_replace(["/","\\"], [DIRECTORY_SEPARATOR,DIRECTORY_SEPARATOR], $destination_path);   
    }else{
        $destination_path = $profile_upload_dir . $user_id ."\\". $type;
        $destination_path = str_replace(["/","\\"], [DIRECTORY_SEPARATOR,DIRECTORY_SEPARATOR], $destination_path);   
    }
        if(!is_dir($destination_path)) {
            mkdir($destination_path, 0777,true);
        }
        $imageName = time() . '.png';
       // dd($imageName);
        $moveable_file = str_replace(["/","\\"], [DIRECTORY_SEPARATOR,DIRECTORY_SEPARATOR], $destination_path.'\\'.$imageName); 
        //dd($moveable_file);
        move_uploaded_file($imageName, $moveable_file);
        // file_put_contents($moveable_file, $data);
        //$image_file = addslashes(file_get_contents($moveable_file));
        $user = Auth::user()->toArray();
          //dd($user);
        $user_id = $user['id'];
        $type_id = 0;
        if(isset($photo['type_id']) && !empty($photo['type_id'])){
            $type_id = $photo['type_id'];
        }
        //$photo['file']=$_FILES['photoimg'];
        $photo['type']='photo';
        $result = $this->userService->storeUserDocuments($imageName, $photo['type'], $type_id, $user_id);
        // echo '<img src="data:image/png;base64,'.base64_encode($data).'" data-action="zoom" class="pull-left" style="height: 130px;width:130px;">';

}



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire