Bonjour,

Voila mon problème, j'ai une application qui s'appel frontend. Cependant, je n'arrive pas à m'authentifier en mod test alors que tout fonctionne en mod dev. Pour l'authentification j'utilise le plugin sfDoctrineGuard. Voici mon fichier app.yml:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
dev:
  .settings:
    error_reporting:        <?php echo (E_ALL | E_STRICT)."\n" ?>
    web_debug:              true
    cache:                  false
    no_script_name:         false
    etag:                   false
 
test:
  .settings:
    error_reporting:        <?php echo ((E_ALL | E_STRICT) ^ E_NOTICE)."\n" ?>
    cache:                  false
    web_debug:              false
    no_script_name:         false
    etag:                   false
 
all:
  .settings:
    check_lock:             on
    i18n:                   true
    charset:                utf-8
    default_culture:        fr
    enabled_modules: [default, sfGuardAuth]
    # Form security secret (CSRF protection)
    csrf_secret:            e2f744e41f78cc76e58bd9db134355d2cfdbe7c5
 
    # Output escaping settings
    escaping_strategy:      true
    escaping_method:        ESC_SPECIALCHARS
 
    # Enable the database manager
    use_database:           true
  .actions:
    login_module:    user
    login_action:    signin
j'ai supprimer plusieurs fois le cache via la commande:
ou via la commande de suppression. Pouvez vous m'aider?