demo
demo copied to clipboard
Symfony Demo Application
// $useOutputWalkers = \count($this->queryBuilder->getDQLPart('having') ?: []) > 0; $useOutputWalkers = $this->queryBuilder->getDQLPart('having') != null;
We use bootswatch 3.* and Bootstrap 3.*. We could upgrade bootswatch to 4.*, which in turns requires upgrading Bootstrap to 4.*. After the upgrade, the current theme (flatly) and the...
Related to https://github.com/symfony/symfony-docs/pull/13135. I don't know if it's technically possible, but I also faced a similar error in the past. Maybe we could create a listener that tries to recover...
When running ``$ ./bin/phpunit`` as per the README, I am getting the following error with PHP 7.4: ``` derick@gargleblaster:/tmp/tracer_demo$ ./bin/phpunit #!/usr/bin/env php Installing phpunit/phpunit (7.5.16) Plugins have been disabled. -...
When you write a post with the following title: `/test`, you get an error when accessing the blog_index route: ``` An exception has been thrown during the rendering of a...
When using Apache for the web server, the var directory should have 777 permissions (this is default in a symfony 4 website-skeleton) so that the cache directory can be created...
Here is what I have found when installing the demo app. (Symfony Version 4.3.5 / PHP 7.1.23) Upon initial install, everything works great. I can login and I can log...
Can you please extend your demo to include common items, like for example: * images * custom fonts Thank you
Yesterday I merged #909 as an (ugly) temporary solution to a very tricky error. How to reproduce the error: * Use `prod` and `debug=0` in `.env` * Comment the `DATABASE_URL`...
As @stof explained in #817: > I suggest using a possessive quantifier to improve the route matching performance (Symfony generates possessive quantifiers for its builtin requirements, but custom ones need...