Larave - Heroku: file does not exist - laravel

I have an application in laravel 9, in my local environment I can upload images without problem (amazon s3), but in my deployment in heroku I get this error when trying to get the image I am sending.
<form action="/test-upload-file" method="POST" enctype="multipart/form-data">
#csrf
<input type="file" name="image" id="image">
<button type="submit">Upload File</button>
</form>
this is my function
Route::post("/test-upload-file", function (Request $request) {
$testFile = Storage::put('tests', $request->file('image'));
dd($testFile);
});
this is the error I am getting
The "" file does not exist or is not readable.

I just found the solution, it is for the PHP configuration of the server, just create a .user.ini configuration file in the /public folder.
post_max_size = 10M
upload_max_filesize = 10M

Related

stream_socket_sendto() error when trying to upload a pdf file

I am getting this error when uploading a pdf file, any ideas?:
RuntimeException stream_socket_sendto(): A request to send or receive
data was disallowed because the socket is not connected and (when
sending on a datagram socket using a sendto call) no address was
supplied
form in view:
<form action="{{ route('press-files.store') }}" method="POST" enctype="multipart/form-data">
#csrf
<input type="file" name="pressFiles[]" multiple="multiple">
<button type="submit" class="btn btn-primary start">
<i class="pe-upload"></i>
<span>Start upload</span>
</form>
Controller:
public function store(Request $request)
{
$press_files = $request->all();
dd($press_files);
}
this is only happening on .pdf files - png's and jpegs all work.
Thanks for any help in advance
Add these lines in your .htaccess
php_value upload_max_filesize 30M
php_value post_max_size 30M
php_value max_execution_time 300
php_value max_input_time 300
It turned out to be due to file size. I will keep this question and answer incase anybody else requires it.
The .pdf I was using was 2.8 MB and this failed, I used a much smaller file ~125kb and this worked fine.

Unable to write file into folder

hello i am still new to make localhost project into putty server and i also use fileZilla.
my upload image function is working fine in localhost but when i tried it in the server. the error happened like this
and here is my controller
public function uploadPic(Request $request)
{
$rules = ['image' => 'required|image|max:1024*1024*1'];
$validator = \Validator::make($request->all(),$rules);
if($validator->fails())
{
return redirect('profile')->withErrors($validator);
}
else
{
$file = $request->file('image');
$file->move(public_path("profile-image/"), $file->getClientOriginalName());
$thisUser = \Auth::id();
$result = User::where('id','=',$thisUser)->update(['path_gambar' => $file->getClientOriginalName()]);
}
return redirect('profile');
}
and here is the view blade
<form class="form-group-sm" action="{{ url('/upload-image') }}" method="post" enctype="multipart/form-data">
<input id="token" type="hidden" name="_token" value="{{ csrf_token() }}">
<div>
<input type="file" class="btn" name="image" id="file">
</div>
<span class="help-block">
<strong>{{ $errors->first('image') }}</strong>
</span>
<div style="text-align: inherit">
<button type="submit" class="btn btn-group-sm" value="upload" name="Submit">Upload</button>
</div>
</form>
Your issue is either a file system permission error or bad file path error.
The reason this works on your local machine is because your local system is more permissive -- your user has sufficient permissions to write the file or the system helps you resolve the bad path to a good one. This is likely because you are using an operating system, such as Windows, that does not enforce permissions the same way your *nix server does.
Let's look at these issues
Wrongly formatted file path
Non-existent file path
Insufficient permissions
Path
Look at your path. The double slash is a bad thing.
/var/www/html/gracia/public//profile-image
There may be some underlying issues but a quick fix to test is to use realpath().
$file->move(realpath(public_path("profile-image/")), $file->getClientOriginalName());
Now you must confirm that the directory actually exists on your server. SSH (putty) into the system and run:
ls -l /var/www/html/gracia/public
Or FTP in and navigate to the path.
The profile-image directory must be there.
Permission
SSH (putty) into the system and run:
ls -l /var/www/html/gracia/public
Output (example):
drwxr-xr-x 2 gracia users 4096 Jun 19 12:27 profile-image
These permissions mean that only the user gracia can write to the directory. It is likely that the web server does not run as this user, so you must change the permissions so that the directory is accessible to that user.
Here is how to make the directory write-able for all users.
chmod -R 777 public-image/
Output (example):
drwxrwxrwx 2 gracia users 4096 Jun 19 12:27 profile-image

How to upload multiple files at once

I'm trying to upload multiple files using Dropzone.js, but it acts like it's upload one file per one upload.
For example: I select 3 files, click on the OK button, Dropzone shows OK status (successful uploaded), but server side get 3 separate request with one file per each request.
I need to get all files as an array of files, can anybody help with this case?
Code:
<form id="my-awesome-dropzone" class="dropzone custom_bc" action="'.$_SERVER['PHP_SELF'].'">
<input type="hidden" name="action" value="file">
<div class="fallback"><input type="file" name="file" multiple></div>
<input type="hidden" name="object_id" value="'.$_REQUEST['object_id'].'">
<input type="hidden" name="est_id" value="'.$_REQUEST['est_id'].'">
<div class="dz-preview"></div>
</form>
I have also tryed to put [] in the name of <file>, but it doesn't help
<input type="file" name="file[]" multiple>
You need to set uploadMultiple to true.
var myDropzone = new Dropzone(
"#my-awesome-dropzone",
{
url: document.URL, // Set the url
paramName: "file",
uploadMultiple: true
}
);
When setting uploadMultiple to true, Dropzone automatucally concatenates [] to your file name. So you don't need to do that.

Move File doesn't work in Laravel 4

I am just using a form to upload a file and a simple route to move the file in my /public/images folder. But the moved file cant be found in the images directory. I am following Leanpub Laravel CodeBright book.
my blade template
<form action="{{ url('handle-form') }}"
method="POST"
enctype="multipart/form-data">
<input type="file" name="book" />
<input type="submit">
</form>
route.php
Route::get('/', function()
{
return View::make('form');
});
Route::post('handle-form', function()
{
Input::file('book')->move('/public/images');
return 'File was moved.';
});
After pressing submit button 'File was moved.' shown but there is no file in the desired directory.
I got it. I just remove leading '/' from the '/public/images' and its working fine.Now i am using 'public/images'.

How can I validate the files size of uploaded files before upload?

So I need a way of validating the sum total of multiple files being uploaded. I know this needs to be done on the client's side but I am not sure how to implement it. Here is the form I amusing:
<form action="upload.php" method="POST" enctype="multipart/form-data" >
<input type="file" name="image[]" multiple="multiple">
<input type="submit" value="upload">
</form>
You can do it in HTML5, something like:
var file = document.getElementById('fileToUpload').files[0];
// now you can get the size via:
var fileSize = file.size;

Resources