exfile icon indicating copy to clipboard operation
exfile copied to clipboard

File upload persistence and processing for Phoenix / Plug

Results 16 exfile issues
Sort by recently updated
recently updated
newest added

Am not really sure if we should keep support for Ecto

Hello there! This library looks very promising. However I am currently unable to install it because some dependencies and child dependencies are rather out of date causing a mismatch with...

These changes make possible to use `exfile` alongside `refile` (tested with version `0.6.2`). I don't think it is a good idea to merge this to master (refile use sha1 encryption...

My model `paper` looks like this. ``` schema "papers" do field :title, :string field :file, Exfile.Ecto.File field :content_type, :string field :filename, :string belongs_to :topic, Confer.Topic belongs_to :user, Confer.User has_many :reviews,...

bug

``` # URI http://localhost:4000/attachments/f_LMR2YRJf7VRSrYEuKSmIYP0SXDilBiesY7lbhJqWY=/store/d907666bb877f897119308dfaa65cb96a6f827f6e089cb498bf7290548da/PID1-CID1 ``` works fine. But when add `.pdf` or other file extensions ``` # URI http://localhost:4000/attachments/TpZXUPYiDwdC5B3S75Ju9aF1pFPM3iby8sHGE6X_ngE=/store/d907666bb877f897119308dfaa65cb96a6f827f6e089cb498bf7290548da/PID1-CID1.pdf ``` It shows ``` processing using convert failed with reason no_processor...

bug

Now all processed files (especially images) are generated on each query. It's not difficult if you have only couple of images to be rendered on the page. But this becomes...

According to [ensure_loaded docs](https://hexdocs.pm/elixir/Code.html#ensure_loaded/1-code-loading-on-the-erlang-vm): ``` Elixir also contains an ensure_compiled/1 function that is a superset of ensure_loaded/1. Since Elixir’s compilation happens in parallel, in some situations you may need to...

I just created [exfile-s3](https://github.com/MattNguyen/exfile-s3). I'm still working on tests, but am throwing this up in case you want to take a look and provide feedback. Thanks!

subj. I can't load all helping modules such as `Exfile.Ecto.CastFilename`, `Exfile.Ecto.CastContentType` and so on

It's pretty simple thing, but I think it should be implemented later. The problem is (as I understood it from the code and current behaviour) that if we remove record...