-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Select Media from Server #1
Comments
Hi @krebbi , thanks for giving it a go. So you would like to allow the plugin to read a directory from a server and allow the selection of an already uploaded image, rather than uploading an image directly? |
Yes, I would like to give the plugin an array of urls from which the user can select an element to insert. |
@lucasnetau Primarily the problem is if you upload a file that is too large if it is not server side it consumes all the memory in the browser and causes the browser to crash. Sending that data server side will remedy this issue. |
simple way: |
Yeah I got it to work that way. Here is an example. |
Yes, if you disable the default handler, then you can use whatever method you wish to upload. If you have any examples you want to included I can add them to the README. There are many ways to handle the upload and post processing, depending on your use case and security model. Upload to AWS S3 with post processing is another method I've used. For uploads in the field from short videos, sound recordings and photos we have found the data URI method to be quick and painless |
First of all thanks for your Plugin!
Is it possible to populate Thumbnails from the Server and the user is able to select one of them?
The text was updated successfully, but these errors were encountered: