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 :

Problème installation symfony


Sujet :

Symfony PHP

  1. #1
    Rédacteur

    Homme Profil pro
    Technical Lead Salesforce
    Inscrit en
    Février 2009
    Messages
    563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Technical Lead Salesforce

    Informations forums :
    Inscription : Février 2009
    Messages : 563
    Par défaut Problème installation symfony
    Bonjour, je suis en train d'installer symfony sur ma plateforme xampp pour un projet mais j'ai un petit soucis.

    J'ai suivi ce tutoriel: http://www.symfony-project.org/jobee...Doctrine/fr/01

    Et j'en suis au moment ou on vérifie que tout fonctionne et quand je rentre l'url: http://jobeet.localhost/index.php/, je tombe directement sur la page principale de XAMPP et non de symfony comme dit dans le tutoriel, mais ce n'est pas bon donc je ne sais pas quoi faire..

    Qu'est-ce que je peux faire svp?
    - Mes articles
    - Consultant technique Salesforce
    - Salesforce Certified Administrator
    - Salesforce Certified Platform App Builder
    - Salesforce Certified Developper I
    - Salesforce Certified Sales Cloud
    - Salesforce Certified Service Cloud

  2. #2
    Expert confirmé
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 62
    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
    Par défaut
    Le tutoriel ne colle pas parfaitement avec wamp.

    Pourquoi symfony en 1.2 ?

    As-tu utilisé les vHost avec WAMP ?

  3. #3
    Rédacteur

    Homme Profil pro
    Technical Lead Salesforce
    Inscrit en
    Février 2009
    Messages
    563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Technical Lead Salesforce

    Informations forums :
    Inscription : Février 2009
    Messages : 563
    Par défaut
    Il faudrait donc que je désinstalle XAMPP et que j'installe Apache, Mysql et PHP séparément?

    J'ai pris symfony 1.2 parce que c'est la même version que sur le tuto si je me souviens bien.

    C'est quoi les vHosts?
    - Mes articles
    - Consultant technique Salesforce
    - Salesforce Certified Administrator
    - Salesforce Certified Platform App Builder
    - Salesforce Certified Developper I
    - Salesforce Certified Sales Cloud
    - Salesforce Certified Service Cloud

  4. #4
    Membre émérite Avatar de Herode
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2005
    Messages
    825
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Mars 2005
    Messages : 825
    Par défaut
    Non, XAMP n'y est pour rien, c'est certainement juste un problème de configuration du httpd.conf. Qu'est-ce que tu as modifié dedans ?

  5. #5
    Rédacteur

    Homme Profil pro
    Technical Lead Salesforce
    Inscrit en
    Février 2009
    Messages
    563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Technical Lead Salesforce

    Informations forums :
    Inscription : Février 2009
    Messages : 563
    Par défaut
    Comme dit dans le tuto, j'ai rajouté ces lignes à la fin de mon httpd.conf:

    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
     
    # Soyez certain de n'avoir cette ligne qu'une seule fois dans votre fichier
    NameVirtualHost 127.0.0.1:8080
     
    # Configuration pour Jobeet
    Listen 127.0.0.1:8080
     
    <VirtualHost 127.0.0.1:8080>
      DocumentRoot "/home/sfprojects/jobeet/web"
      DirectoryIndex index.php
      <Directory "/home/sfprojects/jobeet/web">
        AllowOverride All
        Allow from All
      </Directory>
     
      Alias c:\development\sfprojects\jobeet\web
      <Directory "/home/sfprojects/jobeet/lib/vendor/symfony/data/web/sf">
        AllowOverride All
        Allow from All
      </Directory>
    </VirtualHost>
    - Mes articles
    - Consultant technique Salesforce
    - Salesforce Certified Administrator
    - Salesforce Certified Platform App Builder
    - Salesforce Certified Developper I
    - Salesforce Certified Sales Cloud
    - Salesforce Certified Service Cloud

  6. #6
    Expert confirmé
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 62
    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
    Par défaut
    Sauf que ça c'est bon pour linux, mais pas sous windows.

    Le tuto en français pour la 1.4 est ici.

    Quel est le chemin d'installation de wamp sur ton poste ?

    Dans quel répertoire veux-tu installer : ton jobeet et ton symfony ?

  7. #7
    Membre émérite Avatar de Herode
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2005
    Messages
    825
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Mars 2005
    Messages : 825
    Par défaut
    Et si tu entres http://jobeet.localhost:8080 comme URL, est-ce que ça marche ?

  8. #8
    Rédacteur

    Homme Profil pro
    Technical Lead Salesforce
    Inscrit en
    Février 2009
    Messages
    563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Technical Lead Salesforce

    Informations forums :
    Inscription : Février 2009
    Messages : 563
    Par défaut
    Dans ce cas là, j'obtiens:



    C'est exactement le même tutorial sauf que moi c'est pour la version 1.2 et j'ai la version 1.2.
    Sur mon poste, XAMPP est installé à la racine soit C:\xampp et mon projet est installé dans un dossier development comme dans la tutorial avec le chemin C:\development\sfprojects\jobeet\lib\vendor\symfony
    - Mes articles
    - Consultant technique Salesforce
    - Salesforce Certified Administrator
    - Salesforce Certified Platform App Builder
    - Salesforce Certified Developper I
    - Salesforce Certified Sales Cloud
    - Salesforce Certified Service Cloud

  9. #9
    Membre émérite Avatar de Herode
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2005
    Messages
    825
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Mars 2005
    Messages : 825
    Par défaut
    Sauf erreur de ma part, si tu es sous Windows et si tu as modifié le fichier hosts comme indiqué dans le tutoriel :

    - http://jobeet.localhost renvoie à 127.0.0.1, donc à la racine web déclarée par XAMP.

    - http://jobeet.localhost:8080 renvoie au virtual host déclaré sous 127.0.0.1:8080, donc ayant pour racine web :
    DocumentRoot : /home/sfprojects/jobeet/web

    Or ce dernier chemin n'existe pas sur ton poste si tu es sous Windows. Il faut donc renseigner DocumentRoot et Directory avec les bons chemins après quoi, une fois Apache rebooté, tu devrais pouvoir accéder à
    http://jobeet.localhost:8080.

    Pour ne pas avoir à taper le port dans l'url, j'avoue ne pas connaître la manipulation.

  10. #10
    Rédacteur

    Homme Profil pro
    Technical Lead Salesforce
    Inscrit en
    Février 2009
    Messages
    563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Technical Lead Salesforce

    Informations forums :
    Inscription : Février 2009
    Messages : 563
    Par défaut
    Effectivement, je viens de remplacer la ligne
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
     DocumentRoot "/home/sfprojects/jobeet/web"
      DirectoryIndex index.php
      <Directory "/home/sfprojects/jobeet/web">
    par
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
     DocumentRoot "C:\development\sfprojects\jobeet\web"
      DirectoryIndex index.php
      <Directory "C:\development\sfprojects\jobeet\web">
    Maintenant, j'essaie de relancer Apache (qui ne veut pas) et je regarde.
    - Mes articles
    - Consultant technique Salesforce
    - Salesforce Certified Administrator
    - Salesforce Certified Platform App Builder
    - Salesforce Certified Developper I
    - Salesforce Certified Sales Cloud
    - Salesforce Certified Service Cloud

  11. #11
    Rédacteur

    Homme Profil pro
    Technical Lead Salesforce
    Inscrit en
    Février 2009
    Messages
    563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Technical Lead Salesforce

    Informations forums :
    Inscription : Février 2009
    Messages : 563
    Par défaut
    Désolé pour le double post mais voilà ce que j'obtient après redémarrage d'apche:


    Comme je ne vois pas d'image, je vais aller faire comme il est dit, configurer mon serveur web mais mis à part ça, c'est normal ce que j'obtiens?
    - Mes articles
    - Consultant technique Salesforce
    - Salesforce Certified Administrator
    - Salesforce Certified Platform App Builder
    - Salesforce Certified Developper I
    - Salesforce Certified Sales Cloud
    - Salesforce Certified Service Cloud

  12. #12
    Membre émérite Avatar de Herode
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2005
    Messages
    825
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Mars 2005
    Messages : 825
    Par défaut
    Les images qui te manquent ont des urls du style :
    http://127.0.0.1:8081/sf/sf_default/...icons/ok48.png

    Or, le chemin C:\development\sfprojects\jobeet\web\sf n'existe pas sur ton disque. Il faut donc qu'Apache sache où aller chercher cela, c'est probablement ta directive Alias qui est mal configurée : mauvais chemin d'accès, alias /sf non déclaré ?

  13. #13
    Rédacteur

    Homme Profil pro
    Technical Lead Salesforce
    Inscrit en
    Février 2009
    Messages
    563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Technical Lead Salesforce

    Informations forums :
    Inscription : Février 2009
    Messages : 563
    Par défaut
    Ca y est, ca fonctionne, j'obtiens bien la même page que dans le tutoriel.

    Maintenant va falloir comprendre son fonctionnement..

    Merci à vous en tout cas.
    - Mes articles
    - Consultant technique Salesforce
    - Salesforce Certified Administrator
    - Salesforce Certified Platform App Builder
    - Salesforce Certified Developper I
    - Salesforce Certified Sales Cloud
    - Salesforce Certified Service Cloud

  14. #14
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    6
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Janvier 2008
    Messages : 6
    Par défaut Problème configuration pour sf 1.4.x et WAMP
    Bonjour à tous,

    Tout d'abord je ne sais pas si l'usage veut que je crée un nouveau topic étant donné que ma question porte sur symfony 1.4 et non sur le 1.2 (ce qui change pas mal de choses niveau config d'après ce que j'ai pu voir). À priori je serai tenté de poursuivre sur celui-ci vu qu'il est très récent et que j'ai utilisé certaines des réponses pour essayer de corriger mon problème, mais n'hésitez pas à me dire s'il vaut mieux que je crée un nouveau thread.


    Infos config :
    - Windows XP Pro SP3
    - Firefox 3.5.7
    - Symfony 1.4.x
    - WAMP avec PHP 5.2.9-1 et Apache 2.2.11


    Exposé du problème :
    Je n'ai jusqu'à présent jamais utilisé aucun framework et j'ai jeté mon dévolu sur symfony. Travaillant depuis plus de trois ans via wamp en local, j'ai donc naturellement voulu mixer les deux (pour info mon wamp fonctionne parfaitement, mais à noter le fait que j'ai changé le port en 8080 pour laisser le 80 à Skype).
    Ça fait deux jours que je me prends la tête avec tout ça, mixant divers tutos trouvés à droite, à gauche sur le net, les adaptant (différences de confi/chemin d'accès selon sf 1.2 ou 1.4, selon les versions de wamp et php) et cherchant à chaque fois que je bloquais des solutions sur le net.
    À priori, j'ai réglé la plupart des choses à faire à savoir l'installation de pear puis de symfony, les modifs sur les variables d'environnement, etc... et tout fonctionne, même en ligne de commande, sauf que...

    Je me retrouve bloqué par le problème des images qui ne s'affichent pas.

    Project setup successful
    This project uses the symfony libraries. If you see no image in this page, you may need to configure your web server so that it gains access to the symfony_data/web/sf/ directory.
    J'ai testé diverses méthodes pour régler ce problème mais sans succès. Si je modifie le fichier httpd.conf en rajoutant les lignes à la fin, apache ne fonctionne plus du tout donc j'ai modifié le fichier httpd-vhosts.conf (dans le sous répertoire extra) comme lu je ne sais plus où.

    Voici le contenu de ce fichier :

    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
    #
    # Virtual Hosts
    #
    # If you want to maintain multiple domains/hostnames on your
    # machine you can setup VirtualHost containers for them. Most configurations
    # use only name-based virtual hosts so the server doesn't need to worry about
    # IP addresses. This is indicated by the asterisks in the directives below.
    #
    # Please see the documentation at 
    # <URL:http://httpd.apache.org/docs/2.2/vhosts/>
    # for further details before you try to setup virtual hosts.
    #
    # You may use the command line option '-S' to verify your virtual host
    # configuration.
     
    #
    # Use name-based virtual hosting.
    #
    NameVirtualHost *:8080
     
    #
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for all requests that do not
    # match a ServerName or ServerAlias in any <VirtualHost> block.
    #
    # Soyez sûr d'avoir seulement cette ligne une fois dans votre configuration
    NameVirtualHost 127.0.0.1:8080
     
    # C'est la configuration pour votre projet
    Listen 127.0.0.1:8080
     
    <VirtualHost 127.0.0.1:8080>
      DocumentRoot "C:\wamp\www\sfprojects\jobeet\web"
      DirectoryIndex index.php
      <Directory "C:\wamp\www\sfprojects\jobeet\web">
        AllowOverride All
        Allow from All
      </Directory>
     
      Alias /sf C:\wamp\www\sfprojects\jobeet\lib\vendor\symfony\data\web\sf
      <Directory "C:\wamp\www\sfprojects\jobeet\web">
        AllowOverride All
        Allow from All
      </Directory>
    </VirtualHost>
    J'ai indiqué le port 8080 qui est celui avec lequel fonctionne wamp normalement (chez moi) et les chemins d'accès sont à priori correct.
    Mon but est de travailler sur le tutoriel jobeet du site officiel que j'ai adapté selon ma configuration en plaçant sfprojects dans le www de WAMP.

    Edit : Je viens de réessayer la stupid way indiquée en méthode 3 sur ce site en copiant le contenu de C:\wamp\bin\php\php5.2.9-1\data\symfony\web\sf dans C:\wamp\www\sfprojects\jobeet\web et ça fonctionne (quand j'avais essayé la nuit dernière j'avais doublé le dossier sf sans faire attention) mais bon... j'aimerais que la méthode "propre" fonctionne aussi si possible et je ne vois pas où trouver d'autres infos donc j'espère trouver un spécialiste ici-même.

    Je vous donne la config de mon http.conf des fois que :
    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
    #
    # This is the main Apache HTTP server configuration file.  It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
    # In particular, see 
    # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    #
    # Do NOT simply read the instructions in here without understanding
    # what they do.  They're here only as hints or reminders.  If you are unsure
    # consult the online docs. You have been warned.  
    #
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path.  If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    # with ServerRoot set to "C:/Program Files/Apache Software Foundation/Apache2.2" will be interpreted by the
    # server as "C:/Program Files/Apache Software Foundation/Apache2.2/logs/foo.log".
    #
    # NOTE: Where filenames are specified, you must use forward slashes
    # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    # If a drive letter is omitted, the drive on which Apache.exe is located
    # will be used by default.  It is recommended that you always supply
    # an explicit drive letter in absolute paths to avoid confusion.
     
    #
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    #
    # Do not add a slash at the end of the directory path.  If you point
    # ServerRoot at a non-local disk, be sure to point the LockFile directive
    # at a local disk.  If you wish to share the same ServerRoot for multiple
    # httpd daemons, you will need to change at least LockFile and PidFile.
    #
    ServerRoot "c:/wamp/bin/apache/apache2.2.11"
     
    #
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    #
    # Change this to Listen on specific IP addresses as shown below to 
    # prevent Apache from glomming onto all bound IP addresses.
    #
    #Listen 12.34.56.78:80
    Listen 8080
     
    #
    # Dynamic Shared Object (DSO) Support
    #
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    #
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    #
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule authn_alias_module modules/mod_authn_alias.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_host_module modules/mod_authz_host.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    LoadModule cgi_module modules/mod_cgi.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule dav_module modules/mod_dav.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule deflate_module modules/mod_deflate.so
    LoadModule dir_module modules/mod_dir.so
    #LoadModule disk_cache_module modules/mod_disk_cache.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    LoadModule env_module modules/mod_env.so
    #LoadModule expires_module modules/mod_expires.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule filter_module modules/mod_filter.so
    #LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule include_module modules/mod_include.so
    #LoadModule info_module modules/mod_info.so
    LoadModule isapi_module modules/mod_isapi.so
    #LoadModule ldap_module modules/mod_ldap.so
    #LoadModule logio_module modules/mod_logio.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule mem_cache_module modules/mod_mem_cache.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    LoadModule negotiation_module modules/mod_negotiation.so
    #LoadModule proxy_module modules/mod_proxy.so
    #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    #LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule setenvif_module modules/mod_setenvif.so
    #LoadModule speling_module modules/mod_speling.so
    #LoadModule ssl_module modules/mod_ssl.so
    #LoadModule status_module modules/mod_status.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    #LoadModule userdir_module modules/mod_userdir.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule version_module modules/mod_version.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule php5_module "c:/wamp/bin/php/php5.2.9-1/php5apache2_2.dll"
     
    <IfModule !mpm_netware_module>
    <IfModule !mpm_winnt_module>
    #
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.  
    #
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    #
    User daemon
    Group daemon
     
    </IfModule>
    </IfModule>
     
    # 'Main' server configuration
    #
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition.  These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    #
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    #
     
    #
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed.  This address appears on some server-generated pages, such
    # as error documents.  e.g. admin@your-domain.com
    #
    ServerAdmin admin@localhost
     
    #
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    #
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #
    ServerName localhost:8080
     
    #
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    #
    DocumentRoot "c:/wamp/www/"
     
    #
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories). 
    #
    # First, we configure the "default" to be a very restrictive set of 
    # features.  
    #
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    </Directory>
     
    #
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    #
     
    #
    # This should be changed to whatever you set DocumentRoot to.
    #
    <Directory "c:/wamp/www/">
        #
        # Possible values for the Options directive are "None", "All",
        # or any combination of:
        #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
        #
        # Note that "MultiViews" must be named *explicitly* --- "Options All"
        # doesn't give it to you.
        #
        # The Options directive is both complicated and important.  Please see
        # http://httpd.apache.org/docs/2.2/mod/core.html#options
        # for more information.
        #
        Options Indexes FollowSymLinks
     
        #
        # AllowOverride controls what directives may be placed in .htaccess files.
        # It can be "All", "None", or any combination of the keywords:
        #   Options FileInfo AuthConfig Limit
        #
        AllowOverride all
     
        #
        # Controls who can get stuff from this server.
        #
     
    #   onlineoffline tag - don't remove
        Order Allow,Deny
        Allow from all
     
    </Directory>
     
    #
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    #
    <IfModule dir_module>
        DirectoryIndex index.php index.php3 index.html index.htm
    </IfModule>
     
    #
    # The following lines prevent .htaccess and .htpasswd files from being 
    # viewed by Web clients. 
    #
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
        Satisfy All
    </FilesMatch>
     
    #
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here.  If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    #
    ErrorLog "c:/wamp/logs/apache_error.log"
     
    #
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    #
    LogLevel warn
     
    <IfModule log_config_module>
        #
        # The following directives define some format nicknames for use with
        # a CustomLog directive (see below).
        #
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
     
        <IfModule logio_module>
          # You need to enable mod_logio.c to use %I and %O
          LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
        </IfModule>
     
        #
        # The location and format of the access logfile (Common Logfile Format).
        # If you do not define any access logfiles within a <VirtualHost>
        # container, they will be logged here.  Contrariwise, if you *do*
        # define per-<VirtualHost> access logfiles, transactions will be
        # logged therein and *not* in this file.
        #
        CustomLog "c:/wamp/logs/access.log" common
     
        #
        # If you prefer a logfile with access, agent, and referer information
        # (Combined Logfile Format) you can use the following directive.
        #
        #CustomLog "logs/access.log" combined
    </IfModule>
     
    <IfModule alias_module>
        #
        # Redirect: Allows you to tell clients about documents that used to 
        # exist in your server's namespace, but do not anymore. The client 
        # will make a new request for the document at its new location.
        # Example:
        # Redirect permanent /foo http://localhost/bar
     
        #
        # Alias: Maps web paths into filesystem paths and is used to
        # access content that does not live under the DocumentRoot.
        # Example:
        # Alias /webpath /full/filesystem/path
        #
        # If you include a trailing / on /webpath then the server will
        # require it to be present in the URL.  You will also likely
        # need to provide a <Directory> section to allow access to
        # the filesystem path.
     
        #
        # ScriptAlias: This controls which directories contain server scripts. 
        # ScriptAliases are essentially the same as Aliases, except that
        # documents in the target directory are treated as applications and
        # run by the server when requested rather than as documents sent to the
        # client.  The same rules about trailing "/" apply to ScriptAlias
        # directives as to Alias.
        #
        ScriptAlias /cgi-bin/ "cgi-bin/"
     
    </IfModule>
     
    <IfModule cgid_module>
        #
        # ScriptSock: On threaded servers, designate the path to the UNIX
        # socket used to communicate with the CGI daemon of mod_cgid.
        #
        #Scriptsock logs/cgisock
    </IfModule>
     
    #
    # "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    #
    <Directory "cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
     
    #
    # DefaultType: the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value.  If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    #
    DefaultType text/plain
     
    <IfModule mime_module>
        #
        # TypesConfig points to the file containing the list of mappings from
        # filename extension to MIME-type.
        #
        TypesConfig conf/mime.types
     
        #
        # AddType allows you to add to or override the MIME configuration
        # file specified in TypesConfig for specific file types.
        #
        #AddType application/x-gzip .tgz
        #
        # AddEncoding allows you to have certain browsers uncompress
        # information on the fly. Note: Not all browsers support this.
        #
        #AddEncoding x-compress .Z
        #AddEncoding x-gzip .gz .tgz
        #
        # If the AddEncoding directives above are commented-out, then you
        # probably should define those extensions to indicate media types:
        #
        AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
        AddType application/x-httpd-php .php
        AddType application/x-httpd-php .php3
     
        #
        # AddHandler allows you to map certain file extensions to "handlers":
        # actions unrelated to filetype. These can be either built into the server
        # or added with the Action directive (see below)
        #
        # To use CGI scripts outside of ScriptAliased directories:
        # (You will also need to add "ExecCGI" to the "Options" directive.)
        #
        #AddHandler cgi-script .cgi
     
        # For type maps (negotiated resources):
        #AddHandler type-map var
     
        #
        # Filters allow you to process content before it is sent to the client.
        #
        # To parse .shtml files for server-side includes (SSI):
        # (You will also need to add "Includes" to the "Options" directive.)
        #
        #AddType text/html .shtml
        #AddOutputFilter INCLUDES .shtml
    </IfModule>
     
    #
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type.  The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #
    #MIMEMagicFile conf/magic
     
    #
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    #
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://localhost/subscription_info.html
    #
     
    #
    # EnableMMAP and EnableSendfile: On systems that support it, 
    # memory-mapping or the sendfile syscall is used to deliver
    # files.  This usually improves server performance, but must
    # be turned off when serving from networked-mounted 
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    #
    #EnableMMAP off
    #EnableSendfile off
     
    # Supplemental configuration
    #
    # The configuration files in the conf/extra/ directory can be 
    # included to add extra features or to modify the default configuration of 
    # the server, or you may simply copy their contents here and change as 
    # necessary.
     
    # Server-pool management (MPM specific)
    #Include conf/extra/httpd-mpm.conf
     
    # Multi-language error messages
    #Include conf/extra/httpd-multilang-errordoc.conf
     
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
     
    # Language settings
    #Include conf/extra/httpd-languages.conf
     
    # User home directories
    #Include conf/extra/httpd-userdir.conf
     
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
     
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
     
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
     
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
     
    # Various default settings
    #Include conf/extra/httpd-default.conf
     
    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf
    #
    # Note: The following must must be present to support
    #       starting without SSL on platforms with no /dev/random equivalent
    #       but a statically compiled-in mod_ssl.
    #
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
     
    Include "c:/wamp/alias/*"

    Je pourrais ajouter celle de php.ini (même si c'est à priori un problème apache, mais je ne m'y connais pas sufffisamment) si nécessaire :



    En espérant que quelqu'un pourra trouver ce que j'ai fait de mal...

  15. #15
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    58
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 58
    Par défaut
    @Zoldickun:
    J'ai la même config que toi et j'ai pas mal galéré aussi. J'ai fait ce tuto (XP, wamp2, symfony 1.4.x), j'espère qu'il te sera utile :
    http://www.hybridnocorp.com/dotclear...sans-le-casser

  16. #16
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    6
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Janvier 2008
    Messages : 6
    Par défaut
    Merci, ton tuto m'a été utile pour comprendre certaines choses.

    J'ai réussi à faire fonctionner symfony sous wamp de façon "propre", ce qui était mon but premier, et au passage je me suis un peu amélioré niveau configuration apache.

    Je reste malgré tout confronté pour l'instant au problème que tu avais rencontré avant de faire ton tuto puisque même en configurant le "localhost opérationnel" comme tu l'as fait, mon localhost me renvoit désormais sur la page d'accueil de mon projet symfony (et du coup je n'ai plus accès aux projets que j'avais créé en local sous WAMP)
    Je me suis amusé à créer d'autres vhosts (pour un de mes anciens projets développés avec wamp) et, bon gré mal gré, les adresses des trois serveurs (l'ancien sous wamp exclusivement, celui avec symfony, et le localhost [censé renvoyer sur la page d'accueil wamp]) me renvoit toujours à un seul de ces endroits (différent selon le test mais toujours le même entre deux redémarrage en somme).

    Bref, c'est rapidement dit donc je n'explique pas très bien et dans tous les cas :
    - Je vais continuer à bidouiller pour essayer de comprendre ce qui cloche.
    - Ce n'est plus un problème de fonctionnement,configuration de symfony mais bien un problème de configuration de vhost sous apache, donc ça n'a plus trop sa place ici.
    - Il faudra que je m'en occupe à l'occasion mais ce n'est pas ma priorité actuelle.

    Là quoi qu'il en soit je peux désormais travailler sous sympfony, donc je vais me relancer dans le tuto jobeet.

  17. #17
    Expert confirmé
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 62
    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
    Par défaut
    En fait, le premier vhost configuré est le vhost "par défaut". Donc si tu l'envoie sur un site qui n'existe pas dans les autres vhost, il va prendre le premier qu'il rencontre.

    La solution a ton problème est simple, il suffit de créer un premier vhost qui renvoie sur la page d'origine de wamp.

    Un truc dans ce genre rempli parfaitement cet office.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    <VirtualHost *:80>
    	DocumentRoot "c:\Program Files\wamp\www"
    </VirtualHost>
    En premier dans la liste pour que cela marche.

  18. #18
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    6
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Janvier 2008
    Messages : 6
    Par défaut
    Merci mimi.

    Je testerai ce soir en rentrant chez moi mais mon vhost "général" est le dernier dans ma liste donc je suppose que ça doit être ça car de mémoire je crois qu'effectivement il me prenais à chaque fois le premier de la liste.

  19. #19
    Expert confirmé
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 62
    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
    Par défaut
    En tout cas, c'est ce que dit la doc d'appache !

  20. #20
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    6
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Janvier 2008
    Messages : 6
    Par défaut
    Je crois qu'il va falloir que je reprenne tout ça à zéro à tête reposée car effectivement si je met le "localhost normal" en premier, il me redirige vers l'accueil wamp, mais il redirige les deux autres vhosts vers l'accueil wamp aussi.

    Et ainsi de suite si j'alterne l'ordre, il redirige toujours vers le premier de la liste dans tous les cas (ce qui prouve que chacun des vhosts fonctionne en soit (en étant seul, ou premier de la liste).

    C'est effectivement précisé que le premier vhost sera utilisé pour toutes les requêtes qui ne correspondent pas à un cas où le servername/serveralias est précisé dans le block virtualhost, mais dans mon cas c'est bien précisé à priori.

    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
    #
    NameVirtualHost 127.0.0.1:8080
     
    #
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for all requests that do not
    # match a ServerName or ServerAlias in any <VirtualHost> block.
     
     
     
    #lLocalhost opérationnel
    <VirtualHost *:8080>
        DocumentRoot "C:\wamp\www"
        ServerName localhost
        ServerAlias localhost
    </VirtualHost>
     
    #Site zoldi
    <VirtualHost *:8080>
       ServerAdmin zoldickun@***
       DocumentRoot "C:\wamp\www\zoldi"
        DirectoryIndex index.php
        ServerName zoldi
        ServerAlias zoldi
        ErrorLog "logs/zoldi-error.log"
        CustomLog "logs/zoldi-error.log" common
    </VirtualHost>
     
     
    #Jobeet via symfony
    <VirtualHost *:8080>
        ServerAdmin admin@***
        DocumentRoot "C:\wamp\www\sfprojects\jobeet\web"
        DirectoryIndex index.php
          <Directory "C:\wamp\www\sfprojects\jobeet\web">
        AllowOverride All
     Allow from All
    	</Directory>
        ServerName jobeet.local
        ServerAlias jobeet.local
        ErrorLog "logs/jobeet.localhost-error.log"
        CustomLog "logs/jobeet.localhost-error.log" common
        Alias /sf C:\wamp\www\sfprojects\jobeet\lib\vendor\symfony\data\web\sf
          <Directory "C:\wamp\www\sfprojects\jobeet\lib\vendor\symfony\data\web\sf">
        AllowOverride All
        Allow from All
    	</Directory>
    </VirtualHost>
    Je n'arrive pas à comprendre ce qui peut faire interférence... je vais relire quelques tutos Apache dans la soirée.



    Edit : J'ai réussi à régler le problème. En fait ma très grosse boulette c'est que j'avais laissé l'adresse (127.0.0.1) dans NameVirtualHost, et que j'avais mis des astérisques (*) dans les VirtualHost.
    Or il faut évidemment soit mettre les * partout, soit mettre l'adresse IP partout.
    C'est souvent sur les fautes d'inattention les plus bêtes qu'on perd le plus de temps... Merci à tous ceux qui m'ont aidé !

Discussions similaires

  1. [1.x] Problème installation symfony sur mutualisé
    Par triskell59000 dans le forum Symfony
    Réponses: 0
    Dernier message: 14/03/2012, 20h50
  2. [2.x] Problème de l'installation Symfony 2
    Par made in morocco dans le forum Symfony
    Réponses: 5
    Dernier message: 08/12/2011, 08h57
  3. [1.x] problème installation symfony ERROR: commit failed
    Par john anderta dans le forum Symfony
    Réponses: 1
    Dernier message: 12/06/2009, 11h05
  4. [1.x] Problème installation symfony
    Par Nout dans le forum Symfony
    Réponses: 3
    Dernier message: 27/05/2007, 22h26
  5. [TOMCAT] Problème install
    Par stailer dans le forum Tomcat et TomEE
    Réponses: 3
    Dernier message: 18/12/2003, 18h34

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