pc-erin

Results 15 comments of pc-erin

Check the php logs and make see if there's any errors. When this has happens to me it's usually an authentication or other misconfiguration issue with my S3 endpoint settings.

You might be on an old version of the plugin. The current version appears to use `MimeType::fromFilename` instead of `mimetype_from_filename`.

Yes, the `S3_UPLOADS_BUCKET_URL` define should be set to the root path of your CDN pull zone. In the case of cloudflare though, I don't think the path matters. You put...

This is still an issue. Nearly every time we install a plugin via zip upload it ends up corrupted. We've resorted to simply unzipping the file manually and placing the...

It seems like it'd be easier to do the image processing in `/tmp`. I'm going to see if there's a way to add filters or something that will move processing...

I don't see a `get` method on atomFamily. Did that get changed to `default`? I'm pretty sure in the case of pulling data from the server, you'd want the application...

@mickremedi You could try out [jotai](https://github.com/pmndrs/jotai). It's very similar to recoil, but I found it both simpler and more flexible.

This is an urgently needed feature. Without it any compound atom triggers a rerender even when no constituent value has changed. If that atom is something that changes frequently, like...

Not who you were asking, but I have an example that involves manipulating Points (`{ x: number, y: number }`), and it wouldn't make much sense to store the x...

@drarmstr If you're taking votes I'd go with option 1, but applied to both atoms and selectors. Seems like it would scale the best. Any atom/selector that has lots of...