Symfony 5 Tutorial: Easy Admin 3 - Upload Multiple Files

preview_player
Показать описание
Per viewers requests this video will demonstrate how to upload multiple files in easy admin 3 using the vich Uploader bundle, If you have any questions or requests of videos please leave them in the comments section below . Thanks for watching.
Рекомендации по теме
Комментарии
Автор

Thanks mate, some setup things to keep in mind 🤯. This video really help me to get it quickly

gonzalogarcia
Автор

Thank man! We are waiting for more videos.

Stardurst
Автор

Merci beaucoup! votre vidéo m'a aidé :)

emmanuelm.
Автор

TA! Very fast and accurate line of tuto

golem
Автор

Mohammed I have a question that I am wrestling with at the moment. I know I can use collectionfield and by_reference false to create subrecords. But I want to make use of a database table to prepopulate the fields based on a value.
I.e. I have a order with orderitems as the collectionfield. When I enter a productnumber in the productfield, the orderline VAT and Price should be populated with the (looked up) related values of the product.
It this doable in EA3 or in Symfony Forms?

parijke
Автор

Congrats for the video, it was really helpful!
I found the solution to solve this. delete post problem:
Expected argument of type "string", "null" given at property path "image".

Original code in Attachment entity: public function setImage(string $image): self
Edited code by myself: public function setImage(?string $image): self

All issues were based on ? symbol before string. It works for me.

Regards!

pablogarciafuentes
Автор

awesome tutorial very nice and detailed, thanks

hazhirahmadzadeh
Автор

Next I would love to see Workflow component tutorial

shamshid
Автор

I love to swearing and mistakes, videos are much more relatable that way :D

remotetechie
Автор

thanks for the video can u do a short tut about the custom actions

najiyassine
Автор

The edit form shows entity path and delete icon with accordion with delete checkbox and replace/upload option and link to the file. How can you update that to show original file name instead entity path or with custom template how to use delete action and upload option?

HardiksinhGohil-hardikgohil
Автор

Is it possible to upload several files, or a folder of files at once?(in a single file field).
I saw your previous video on the subject on symfony 4, but I would like to do the same thing on symfony 5 with easy admin 3

kramelCase
Автор

Can you make a tutorial on EasyAdmin3 crud form or edit form customization ?

vrushalrt
Автор

Okay I just finished the tutorial. Good video !

On the other hand I advise you to add a warning when you manage the collection at the beginning and that you forgot the "by_reference". I couldn't understand why I was having errors when submitting the form and searched for a long time before giving up and continuing with the video to see what was wrong. If we can avoid that to others that would be cool!

Otherwise for the next videos:

- See how we can optimize this PostCrudController which seems not to be optimized.
- Be able to delete posts (and therefore attachments, because for the moment we cannot)

Thank you for your videos it helps me a lot! :)
And hello from the France !

luvima
Автор

hi, can you please make a tutorial how to create cms page builder like in wordpress! and/or custom data types like tables, key value lists.

evaldas
Автор

Is there a reason why you're using a VichUploadBundle instead of ImageField from EasyAdmin?

antontraceur
Автор

hi dude, I have this error = Can't get a way to read the property "attachments" in class "App\Entity\Attachment". Could u help me pls?

innate
Автор

Where can i download the code on GitHub of this tutorial? Thanx

qurplus
Автор

hi i've got some issue with creating a new user. It seems that the password is not encoded, so the password is saved as a plain password. when trying to connect with the new user it doesn't work.
I use easyadmin 3
tanks for your videos!!

gillesgoutard
Автор

An exception occurred while executing 'INSERT INTO image (path, updated_at, product_id) VALUES (?, ?, ?)' with params [null, "2020-12-29 03:06:07", 9]:

SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'path' cannot be null

DhiaMagicien