Symfony 5 : Render mauvais template

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Mime\Email; use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\Mailer\MailerInterface; class ContactController extends AbstractController

7
envoyer le site symfony dans le web

Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(Object(Symfony\Component\HttpFoundation\Request)) #2 /home/yorozuya/public_html/app/cache/prod/classes.php(1969): Symfony\Component\Routing\Router->matchRequest(Object(Symfony\Component\HttpFoundation\Request)) #3 [internal function]: Symfony\Component\HttpKernel

0
symfony 5.2 récupération en base de données

Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\Validator\Constraints\DateTime; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; class GestionController extends

7
symfony forms et entité complexe

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\DataMapperInterface; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Symfony\Component\Validator\Constraints\LessThanOrEqual; use Symfony\Component\Validator\Constraints

0
Symfony 4.3 - Envoie de e-mails avec Mailer

Symfony\Component\HttpFoundation\Request; use Doctrine\Common\Persistence\ObjectManager; use Symfony\Component\Routing\Annotation\Route; use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; class AdController extends

0
Symfony avec Docker

symfony 5.3.1 (version de php: 7.4.2). Le problème est que tous les services tournent assez bien (maildev, phpmyadmin), sauf les pages symfony en elles-mêmes qui mettent entre 12 et 80 secondes

2
Enregistrement date avec Symfony

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Component\Form\Extension\Core\Type\DateType; class LibelleFormType extends AbstractType { public function buildForm(FormBuilderInterface

3
Symfony 7.2 : No route found for /lucky/number

Symfony CLI ```symfony check:requirements``` est conforme Je déploie Symfony 7.2 par ``` symfony mon_project --version="7.2.x" --webapp ``` J'ai bien la page par defaut de Symfony à l'adresse

5
Symfony 5 : Column 'image_name' cannot be null
Vicc,

Symfony\Component\Form\AbstractType; use FOS\CKEditorBundle\Form\Type\CKEditorType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony

3
Route dynamique non fonctionnelle sous Symfony 5.3.7

Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; class LuckyController extends AbstractController { private array $words = ['fr' => ['bonjour','bonsoir','au revoir'], 'en' => ['good

5