IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Symfony PHP Discussion :

SfDoctrineGuardPlugin bug : Unknown method SfGuardUserTable::retrieveByUsername [1.x]


Sujet :

Symfony PHP

  1. #1
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    80
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 80
    Points : 53
    Points
    53
    Par défaut SfDoctrineGuardPlugin bug : Unknown method SfGuardUserTable::retrieveByUsername
    Bonjour à tous,

    Je suis bloquée depuis plusieurs heures sur un bug sur mon appli, je crois avoir identifiée d'où ça vient mais ne sais pas pourquoi... si quelqu'un a une idée svp ?

    Je m'explique :

    J'utilise le plugin SfDoctrineGuardPlugin pour gérer les accès utilisateurs à l'application que je développe.
    J'ai commencé par cette étape là, et ça fonctionnait bien.

    J'ai ensuite commencé à créer les tables "maison" (c'est à dire propre à mon appli) dans la bdd.

    Gestion des utilisateurs oblige, j'ai fait appel de nombreuses fois à la clé étrangère user_id qui fait le lien avec la table sf_guard_user.

    Quand j'ai dans ma BDD uniquement les tables du plugin, la connexion fonctionne bien sur l'appli.
    Je rajoute les autres tables, je construis tout le modèle etc...
    Et quand je veux me connecter j'obtiens cette magnifique erreur :

    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
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    500 | Internal Server Error | Doctrine_Table_Exception
    Unknown method SfGuardUserTable::retrieveByUsername
    stack trace
     
        * at ()
          in SF_SYMFONY_LIB_DIR\plugins\sfDoctrinePlugin\lib\vendor\doctrine\Doctrine\Table.php line 2798 ...
                2795.             return call_user_func_array(array($this->getRecordInstance(), $method . 'TableProxy'), $arguments);
                2796.         } catch (Doctrine_Record_UnknownPropertyException $e) {}
                2797.
                2798.         throw new Doctrine_Table_Exception(sprintf('Unknown method %s::%s', get_class($this), $method));
                2799.     }
                2800. }
    2801.
        * at Doctrine_Table->__call('retrieveByUsername', array('cmc'))
          in n/a line n/a ...
        * at SfGuardUserTable->retrieveByUsername('cmc')
          in SF_ROOT_DIR\plugins\sfDoctrineGuardPlugin\lib\validator\sfGuardValidatorUser.class.php line 35 ...
                  32.     $password = isset($values[$this->getOption('password_field')]) ? $values[$this->getOption('password_field')] : '';
                  33.
                  34.     // user exists?
                  35.     if ($username && $user = $this->getTable()->retrieveByUsername($username))
                  36.     {
                  37.       // password is ok?
                  38.       if ($user->getIsActive() && $user->checkPassword($password))
        * at sfGuardValidatorUser->doClean(array('username' => 'cmc', 'password' => 'inae2007', '_csrf_token' => '8760a5954923c701c9b148bb4ed4455f', 'remember' => ))
          in SF_SYMFONY_LIB_DIR\validator\sfValidatorBase.class.php line 327 ...
                 324.       return $this->getEmptyValue();
                 325.     }
                 326.
                 327.     return $this->doClean($clean);
                 328.   }
                 329.
                 330.   /**
        * at sfValidatorBase->clean(array('username' => 'cmc', 'password' => 'inae2007', '_csrf_token' => '8760a5954923c701c9b148bb4ed4455f', 'remember' => ))
          in SF_SYMFONY_LIB_DIR\validator\sfValidatorSchema.class.php line 246 ...
                 243.       return $values;
                 244.     }
                 245.
                 246.     return $validator->clean($values);
                 247.   }
                 248.
                 249.   /**
        * at sfValidatorSchema->postClean(array('username' => 'cmc', 'password' => 'inae2007', '_csrf_token' => '8760a5954923c701c9b148bb4ed4455f', 'remember' => ))
          in SF_SYMFONY_LIB_DIR\validator\sfValidatorSchema.class.php line 186 ...
                 183.     // post validator
                 184.     try
                 185.     {
                 186.       $clean = $this->postClean($clean);
                 187.     }
                 188.     catch (sfValidatorErrorSchema $e)
                 189.     {
        * at sfValidatorSchema->doClean(array('username' => 'cmc', 'password' => 'inae2007', '_csrf_token' => '8760a5954923c701c9b148bb4ed4455f'))
          in SF_SYMFONY_LIB_DIR\validator\sfValidatorSchema.class.php line 90 ...
                  87.    */
                  88.   public function clean($values)
                  89.   {
                  90.     return $this->doClean($values);
                  91.   }
                  92.
                  93.   /**
        * at sfValidatorSchema->clean(array('username' => 'cmc', 'password' => 'inae2007', '_csrf_token' => '8760a5954923c701c9b148bb4ed4455f'))
          in SF_SYMFONY_LIB_DIR\form\sfForm.class.php line 247 ...
                 244.    */
                 245.   protected function doBind(array $values)
                 246.   {
                 247.     $this->values = $this->validatorSchema->clean($values);
                 248.   }
                 249.
                 250.   /**
        * at sfForm->doBind(array('username' => 'cmc', 'password' => 'inae2007', '_csrf_token' => '8760a5954923c701c9b148bb4ed4455f'))
          in SF_SYMFONY_LIB_DIR\form\addon\sfFormSymfony.class.php line 75 ...
                  72.
                  73.     try
                  74.     {
                  75.       parent::doBind($values);
                  76.     }
                  77.     catch (sfValidatorError $error)
                  78.     {
        * at sfFormSymfony->doBind(array('username' => 'cmc', 'password' => 'inae2007', '_csrf_token' => '8760a5954923c701c9b148bb4ed4455f'))
          in SF_SYMFONY_LIB_DIR\form\sfForm.class.php line 227 ...
                 224.
                 225.     try
                 226.     {
                 227.       $this->doBind(self::deepArrayUnion($this->taintedValues, self::convertFileInformation($this->taintedFiles)));
                 228.       $this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
                 229.
                 230.       // remove CSRF token
        * at sfForm->bind(array('username' => 'cmc', 'password' => 'inae2007', '_csrf_token' => '8760a5954923c701c9b148bb4ed4455f'))
          in SF_ROOT_DIR\plugins\sfDoctrineGuardPlugin\modules\sfGuardAuth\lib\BasesfGuardAuthActions.class.php line 33 ...
                  30.
                  31.     if ($request->isMethod('post'))
                  32.     {
                  33.       $this->form->bind($request->getParameter('signin'));
                  34.       if ($this->form->isValid())
                  35.       {
                  36.         $values = $this->form->getValues(); 
        * at BasesfGuardAuthActions->executeSignin(object('sfWebRequest'))
          in SF_SYMFONY_LIB_DIR\action\sfActions.class.php line 60 ...
                  57.     }
                  58.
                  59.     // run action
                  60.     return $this->$actionToRun($request);
                  61.   }
                  62. }
      63.
        * at sfActions->execute(object('sfWebRequest'))
          in SF_SYMFONY_LIB_DIR\filter\sfExecutionFilter.class.php line 92 ...
                  89.   {
                  90.     // execute the action
                  91.     $actionInstance->preExecute();
                  92.     $viewName = $actionInstance->execute($this->context->getRequest());
                  93.     $actionInstance->postExecute();
                  94.
                  95.     return null === $viewName ? sfView::SUCCESS : $viewName;
        * at sfExecutionFilter->executeAction(object('sfGuardAuthActions'))
          in SF_SYMFONY_LIB_DIR\filter\sfExecutionFilter.class.php line 78 ...
                  75.       }
                  76.     }
                  77.
                  78.     return $this->executeAction($actionInstance);
                  79.   }
                  80.
                  81.   /**
        * at sfExecutionFilter->handleAction(object('sfFilterChain'), object('sfGuardAuthActions'))
          in SF_SYMFONY_LIB_DIR\filter\sfExecutionFilter.class.php line 42 ...
                  39.     {
                  40.       $timer = sfTimerManager::getTimer(sprintf('Action "%s/%s"', $actionInstance->getModuleName(), $actionInstance->getActionName()));
                  41.
                  42.       $viewName = $this->handleAction($filterChain, $actionInstance);
                  43.
                  44.       $timer->addTime();
                  45.       $timer = sfTimerManager::getTimer(sprintf('View "%s" for "%s/%s"', $viewName, $actionInstance->getModuleName(), $actionInstance->getActionName()));
        * at sfExecutionFilter->execute(object('sfFilterChain'))
          in SF_SYMFONY_LIB_DIR\filter\sfFilterChain.class.php line 53 ...
                  50.       }
                  51.
                  52.       // execute the next filter
                  53.       $this->chain[$this->index]->execute($this);
                  54.     }
                  55.   }
      56.
        * at sfFilterChain->execute()
          in SF_ROOT_DIR\plugins\sfDoctrineGuardPlugin\lib\sfGuardRememberMeFilter.class.php line 56 ...
                  53.       }
                  54.     }
                  55.
                  56.     $filterChain->execute();
                  57.   }
                  58. }
      59.
        * at sfGuardRememberMeFilter->execute(object('sfFilterChain'))
          in SF_SYMFONY_LIB_DIR\filter\sfFilterChain.class.php line 53 ...
                  50.       }
                  51.
                  52.       // execute the next filter
                  53.       $this->chain[$this->index]->execute($this);
                  54.     }
                  55.   }
      56.
        * at sfFilterChain->execute()
          in SF_SYMFONY_LIB_DIR\filter\sfRenderingFilter.class.php line 33 ...
                  30.   public function execute($filterChain)
                  31.   {
                  32.     // execute next filter
                  33.     $filterChain->execute();
                  34.
                  35.     // get response object
                  36.     $response = $this->context->getResponse();
        * at sfRenderingFilter->execute(object('sfFilterChain'))
          in SF_SYMFONY_LIB_DIR\filter\sfFilterChain.class.php line 53 ...
                  50.       }
                  51.
                  52.       // execute the next filter
                  53.       $this->chain[$this->index]->execute($this);
                  54.     }
                  55.   }
      56.
        * at sfFilterChain->execute()
          in SF_SYMFONY_LIB_DIR\controller\sfController.class.php line 229 ...
                 226.       }
                 227.
                 228.       // process the filter chain
                 229.       $filterChain->execute();
                 230.     }
                 231.     else
                 232.     {
        * at sfController->forward('sfGuardAuth', 'signin')
          in SF_SYMFONY_LIB_DIR\controller\sfFrontWebController.class.php line 48 ...
                  45.       }
                  46.
                  47.       // make the first request
                  48.       $this->forward($moduleName, $actionName);
                  49.     }
                  50.     catch (sfException $e)
                  51.     {
        * at sfFrontWebController->dispatch()
          in SF_SYMFONY_LIB_DIR\util\sfContext.class.php line 170 ...
                 167.    */
                 168.   public function dispatch()
                 169.   {
                 170.     $this->getController()->dispatch();
                 171.   }
                 172.
                 173.   /**
        * at sfContext->dispatch()
          in SF_ROOT_DIR\web\extranet_dev.php line 13 ...
    J'ai essayé de tout ré-installé mais dès que je rajoute les tables de l'appli ça repète.
    Je ne comprends pas le problème, voici mon schema.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
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    1082
    1083
    1084
    1085
    1086
    1087
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    1100
    1101
    1102
    1103
    1104
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
    1124
    1125
    1126
    1127
    1128
    1129
    1130
    1131
    1132
    1133
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    1159
    1160
    1161
    1162
    1163
    1164
    1165
    1166
    1167
    1168
    1169
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    1177
    1178
    1179
    1180
    1181
    1182
    1183
    1184
    1185
    1186
    1187
    1188
    1189
    1190
    1191
    1192
    1193
    1194
    1195
    Commune:
      connection: doctrine
      tableName: commune
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nom:
          type: string(50)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        cp:
          type: string(5)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        CommunePlateforme:
          local: id
          foreign: commune_id
          type: many
        RepartitionGeo:
          local: id
          foreign: commune_id
          type: many
    CommunePlateforme:
      connection: doctrine
      tableName: commune_plateforme
      columns:
        commune_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        plateforme_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        Commune:
          local: commune_id
          foreign: id
          type: one
        Plateforme:
          local: plateforme_id
          foreign: id
          type: one
    Critere:
      connection: doctrine
      tableName: critere
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nom:
          type: string(50)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        groupe_critere_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        GroupeCritere:
          local: groupe_critere_id
          foreign: id
          type: one
        CritereFrequentation:
          local: id
          foreign: critere_id
          type: many
    CritereFrequentation:
      connection: doctrine
      tableName: critere_frequentation
      columns:
        frequentation_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        critere_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        valeur:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        Critere:
          local: critere_id
          foreign: id
          type: one
        Frequentation:
          local: frequentation_id
          foreign: id
          type: one
    Document:
      connection: doctrine
      tableName: document
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nom:
          type: string(80)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        chemin:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
        DocumentTheme:
          local: id
          foreign: document_id
          type: many
    DocumentTheme:
      connection: doctrine
      tableName: document_theme
      columns:
        theme_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        document_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        Document:
          local: document_id
          foreign: id
          type: one
        Theme:
          local: theme_id
          foreign: id
          type: one
    Frequentation:
      connection: doctrine
      tableName: frequentation
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        total:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        periode:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        commentaire_emp:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        commentaire_coh:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
        CritereFrequentation:
          local: id
          foreign: frequentation_id
          type: many
        OrientationPart:
          local: id
          foreign: frequentation_id
          type: many
        RepartitionGeo:
          local: id
          foreign: frequentation_id
          type: many
    GroupeCritere:
      connection: doctrine
      tableName: groupe_critere
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nom:
          type: string(50)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        Critere:
          local: id
          foreign: groupe_critere_id
          type: many
    OrientationPart:
      connection: doctrine
      tableName: orientation_part
      columns:
        partenaire_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        frequentation_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        orri:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        perm:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        Frequentation:
          local: frequentation_id
          foreign: id
          type: one
        Partenaire:
          local: partenaire_id
          foreign: id
          type: one
    Partenaire:
      connection: doctrine
      tableName: partenaire
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nom:
          type: string(50)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        OrientationPart:
          local: id
          foreign: partenaire_id
          type: many
    Plateforme:
      connection: doctrine
      tableName: plateforme
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        nom:
          type: string(50)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
        CommunePlateforme:
          local: id
          foreign: plateforme_id
          type: many
    Question:
      connection: doctrine
      tableName: question
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        intitule:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        texte:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
        QuestionTheme:
          local: id
          foreign: question_id
          type: many
        Reponse:
          local: id
          foreign: question_id
          type: many
    QuestionTheme:
      connection: doctrine
      tableName: question_theme
      columns:
        question_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        theme_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        Question:
          local: question_id
          foreign: id
          type: one
        Theme:
          local: theme_id
          foreign: id
          type: one
    RepartitionGeo:
      connection: doctrine
      tableName: repartition_geo
      columns:
        frequentation_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        commune_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        valeur:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        Commune:
          local: commune_id
          foreign: id
          type: one
        Frequentation:
          local: frequentation_id
          foreign: id
          type: one
    Reponse:
      connection: doctrine
      tableName: reponse
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        intitule:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        texte:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        question_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        fg_validation:
          type: string(1)
          fixed: true
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
        Question:
          local: question_id
          foreign: id
          type: one
    SfGuardGroup:
      connection: doctrine
      tableName: sf_guard_group
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        name:
          type: string(255)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        description:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardGroupPermission:
          local: id
          foreign: group_id
          type: many
        SfGuardUserGroup:
          local: id
          foreign: group_id
          type: many
    SfGuardGroupPermission:
      connection: doctrine
      tableName: sf_guard_group_permission
      columns:
        group_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        permission_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardGroup:
          local: group_id
          foreign: id
          type: one
        SfGuardPermission:
          local: permission_id
          foreign: id
          type: one
    SfGuardPermission:
      connection: doctrine
      tableName: sf_guard_permission
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        name:
          type: string(255)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        description:
          type: string()
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardGroupPermission:
          local: id
          foreign: permission_id
          type: many
        SfGuardUserPermission:
          local: id
          foreign: permission_id
          type: many
    SfGuardRememberKey:
      connection: doctrine
      tableName: sf_guard_remember_key
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        remember_key:
          type: string(32)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        ip_address:
          type: string(50)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
    SfGuardUser:
      connection: doctrine
      tableName: sf_guard_user
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        username:
          type: string(128)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        algorithm:
          type: string(128)
          fixed: false
          unsigned: false
          primary: false
          default: sha1
          notnull: true
          autoincrement: false
        salt:
          type: string(128)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        password:
          type: string(128)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        is_active:
          type: integer(1)
          fixed: false
          unsigned: false
          primary: false
          default: '1'
          notnull: false
          autoincrement: false
        is_super_admin:
          type: integer(1)
          fixed: false
          unsigned: false
          primary: false
          default: '0'
          notnull: false
          autoincrement: false
        last_login:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        Document:
          local: id
          foreign: user_id
          type: many
        Frequentation:
          local: id
          foreign: user_id
          type: many
        Plateforme:
          local: id
          foreign: user_id
          type: many
        Question:
          local: id
          foreign: user_id
          type: many
        Reponse:
          local: id
          foreign: user_id
          type: many
        SfGuardRememberKey:
          local: id
          foreign: user_id
          type: many
        SfGuardUserGroup:
          local: id
          foreign: user_id
          type: many
        SfGuardUserPermission:
          local: id
          foreign: user_id
          type: many
        ThemeUser:
          local: id
          foreign: user_id
          type: many
    SfGuardUserGroup:
      connection: doctrine
      tableName: sf_guard_user_group
      columns:
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        group_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardGroup:
          local: group_id
          foreign: id
          type: one
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
    SfGuardUserPermission:
      connection: doctrine
      tableName: sf_guard_user_permission
      columns:
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        permission_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardPermission:
          local: permission_id
          foreign: id
          type: one
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
    Theme:
      connection: doctrine
      tableName: theme
      columns:
        id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nom:
          type: string(50)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        DocumentTheme:
          local: id
          foreign: theme_id
          type: many
        QuestionTheme:
          local: id
          foreign: theme_id
          type: many
        ThemeUser:
          local: id
          foreign: theme_id
          type: many
    ThemeUser:
      connection: doctrine
      tableName: theme_user
      columns:
        theme_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        user_id:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        fg_alerte:
          type: string(1)
          fixed: true
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        created_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
        updated_at:
          type: timestamp(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: true
          autoincrement: false
      relations:
        SfGuardUser:
          local: user_id
          foreign: id
          type: one
        Theme:
          local: theme_id
          foreign: id
          type: one
    Que faire ???
    Avez-vous une idée svp pour résoudre mon souci ?

    Merci beaucoup par avance.

  2. #2
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    80
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 80
    Points : 53
    Points
    53
    Par défaut
    J'ai essayé de supprimer petit à petit les tables "maison" de mon appli, je me retrouve maintenant avec seulement les tables du plugin mais j'ai toujours la même erreur...
    Ca ne vient donc pas de la clé étrangère user_id.

    Une idée du problème ?

    Merci beaucoup

  3. #3
    Expert éminent
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 61
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : DPO
    Secteur : Distribution

    Informations forums :
    Inscription : Septembre 2005
    Messages : 4 954
    Points : 8 486
    Points
    8 486
    Par défaut
    Bon, je viens de me payer un mal de tête pas possible sur ton schema.yml...

    Un truc, ne met que les informations utiles, il n'est pas nécessaire de renseigner les valeurs par défauts si elle restent par défaut et on gagne presque 450 lignes dans ton schema..... J'ai pu ainsi économiser un dolipran

    Autre chose, évite de définir dans les schema les relations des deux côtés de la table, c'est parfois générateur d'erreurs, un seul côté marche parfaitement bien. Et là aussi tu peux te passer des paramètres par défauts...

    La méthode retrieveByUsername fait partie de la classe abstraite PluginsfGuardUserTable. tu dois la retrouver instancié dans lib/model/doctrine/sfGuardPlugin vérifie.

    Le fait de supprimer les définitions de tables du modèle ne supprime pas les objets générés précédemment. Il est possible que cela proviennent d'un de ces objets.

    Je proposes quelques tests :

    utilise la commande "doctrine:clean-model-files" pour nettoyer tous les objets qui n'ont plus d'intérêt après la suppression des tables du modèle. ATTENTION ! il supprime aussi les fichiers que tu aurais pu modifier, fais des sauvegardes...

    Supprime "manuellement" tous le contenu du répertoire cache.


    Et après on fais le point.

  4. #4
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    80
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 80
    Points : 53
    Points
    53
    Par défaut
    Merci pour ta réponse et ta patience ! Je débute....!

    Il faudra effectivement que je nettoie mon fichier schema.yml.

    La méthode retrieveByUsername est bien présente dans plugins\sfDoctrineGuardPlugin\lib\model\doctrine\PluginsfGuardUserTable.php.

    J'ai essayé tes propositions mais ça résout pas le souci (clean-model-files et cache vidé).

    Je nettoierai le fichier schema.yml et te donne le résultat.

    Si tu as d'autres idées n'hésite pas, je prends tout !

    Encore merci pour ton aide.

  5. #5
    Expert éminent
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 61
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : DPO
    Secteur : Distribution

    Informations forums :
    Inscription : Septembre 2005
    Messages : 4 954
    Points : 8 486
    Points
    8 486
    Par défaut
    Dans tes fichiers modèles trouves -tu une classe correctement instancié pour PluginsfGuardUserTable ?

    dans le cache, tu dois trouver un fichier config_autoload.yml.php cache/<apps>/<env>/config dans ce fichier, y trouves-tu le fichier qui contiend l'instance finale de la classe abstraite PluginsfGuardUserTable ?

  6. #6
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    80
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 80
    Points : 53
    Points
    53
    Par défaut
    Bonjour,

    J'ai enfin trouvé d'où venait mon erreur. C'est tout con mais quand on débute on fait ce qu'on peut !!

    Quand je faisais
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    symfony doctrine:build-model
    Cela me générait les classes SfGuard dans lib/model/doctrine, et quand la fonction retrieveByUsername était appelée, elle était recherchée dans ces classes et non dans le plugin plugins/sfDoctrineGuardPlugin/lib/model.

    J'ai supprimé les classes sfGuard dans lib/model/doctrine et ça roule !

    Un problème semblable sur : http://forum.symfony-project.org/ind...92840&th=25232

    Merci mimi68 pour ton aide !

  7. #7
    Expert éminent
    Avatar de pmithrandir
    Homme Profil pro
    Responsable d'équipe développement
    Inscrit en
    Mai 2004
    Messages
    2 418
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Responsable d'équipe développement
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2004
    Messages : 2 418
    Points : 7 296
    Points
    7 296
    Par défaut
    Bonjour

    pour completer la solution, pour éviter que lorsque l'on fait un build model il recréé ces classes, il faut aller dans son schéma.yml, et corriger une erreur de majuscule...

    SfGuardUser

    devient

    sfGuardUser

    C'est stupide, mais ca fait 2 heures que l'on se prenait la tête la dessus de notre coté...

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [Objective-C] bug avec class NSDictionnary, methode bug
    Par manonthemoon dans le forum Objective-C
    Réponses: 1
    Dernier message: 21/09/2012, 11h53
  2. [XSLT 2.0] Unknown method - total-days-from-duration
    Par samcfc dans le forum XSL/XSLT/XPATH
    Réponses: 3
    Dernier message: 10/05/2011, 16h40
  3. [sfGuard] Unknown method sfGuardUser::reloadGroupsAndPermissions
    Par erictomcat dans le forum Plugins
    Réponses: 4
    Dernier message: 22/12/2010, 20h11
  4. methode pack bug :(
    Par panthere_noire dans le forum Tkinter
    Réponses: 3
    Dernier message: 05/09/2008, 00h31
  5. [BUG] Zend_Db_Select query method
    Par sekaijin dans le forum Zend_Db
    Réponses: 2
    Dernier message: 13/10/2007, 18h19

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo