Ratan M. Kyeno

Results 11 comments of Ratan M. Kyeno

As for now, the best approach I've found was to actually downgrade FOSCommentBundle to 2.1.* with `"friendsofsymfony/comment-bundle": "2.1.*"` in composer.json That is if you still want role based security AND...

I found out this is happening when you have no "Thread" entity created with the given permalink. My ugly workaround is to create that Thread in the view action...

Part of my ugly workaround. Generally this whole bundle is full of scary things... ``` /** * Action: SocialPost (Single post) */ public function socialPostAction(Request $request, $id) { // Fetch...

Hm, after analyzing the original JavaScript it seems quite impossible. I ended up modifying and redoing some parts of the JavaScript to actually make it work.

I just fell on exactly the same issue while trying to load three.js r114 minified (js, not cjs)

> You can use a symbolik link to share a checkpoint folder between multiple UI. That is exactly what I do. I guess Windows guys can't. :D

I have similar problem with default Symfony routing, https://stackoverflow.com/questions/63286922/symfony-4-multilang-routes-with-default-fallback

I "worked around" this with a simple bash script additionally invoking ImageMagick: NOTE: This is made to batch-process entire directories. ``` #!/bin/sh for a in *; do backgroundremover -i "$a"...

This is great. Should be slightly finetuned and merged.