FilePond: all JPEG files are uploaded as ".jpg" - why?

225 Views Asked by At

I've written a small FilePond example (excellent piece of work BTW) but there is one thing that I can't understand:

When I upload, e.g., "foo.JPG" or "foo.jpeg" it is saved as "foo.jpg" on the server.

I would like to keep the file extension, but don't know how to do it.

I've tried the FileRename-plugin but the files are still saved as .jpg.

1

There are 1 best solutions below

0
On

I worked out a solution. If anyone is interested I can post complete code, but basically I stored the real filename (e.g., "foo.jpeg") in metadata and extracted it on the PHP server side, and then renamed the temporary file using that name instead.

In FilePond.create:

beforeAddFile: (fileItem) => new Promise(resolve => {
    fileItem.setMetadata('true_filename', fileItem.filename);
    resolve(true);
}),