Kevin Bond
Kevin Bond
> create reusable twig coponents in a twig bundle, that doesn't conflict with your application's twig components. (someBundle:xxx) My thinking here is to ensure bundles define their own prefix (and...
> Would it make sense to connect this behavior to https://glide.thephpleague.com/ perhaps? I suppose you mean for shrinking the preview images? Could the LazyImage component be used somehow? Maybe a...
> I think going a little step forwarding and extracting save/preview logic to a service with defined interface Agreed, good idea! > I have already solved implementation challenges to (at...
Still on our minds. @Lustmored, @weaverryan and I have been stepping back to take a discuss how best to provide _filesystem abstraction_ in a way that would help here.
You can add this to your `config.yml`: ``` yaml accelerator_cache: curl_opts: CURLOPT_SSL_VERIFYHOST: false CURLOPT_SSL_VERIFYPEER: false ```
Oh, I misread, you aren't using curl... Is using curl an option?
> If I create entities from inside a controller, the error doesn't happen. This is telling. I think somehow your fixture folder isn't autoloaded.
Ok, I think I see the problem: `$this->addReference($ref, $user->object());` is required as this method requires a real Doctrine entity object - no way around this. I don't see why `auto_refresh_proxies:...
> In this case, I receive the error about Proxy not in the configured namespaces. Admittedly, I have never worked with the reference feature of DoctrineFixturesBundle but from what I...
Hey @Chris53897, if `auto_refresh_proxies: false`, you can enable it for a created fixture after creating: ```php $object = UserFactory::createOne()->enableAutoRefresh(); ``` If `auto_refresh_proxies: true`, you can disable on a factory-by-factory basis...