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

Apache Discussion :

Problème réécriture d'url avec date en timestamp


Sujet :

Apache

  1. #1
    Membre régulier
    Homme Profil pro
    Consultant E-Business
    Inscrit en
    Août 2010
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Consultant E-Business

    Informations forums :
    Inscription : Août 2010
    Messages : 216
    Points : 96
    Points
    96
    Par défaut Problème réécriture d'url avec date en timestamp
    Bonjour à tous,

    Je rencontre un problème dans ma réécriture d'url dans un menu qui me permet de sélectionner des dates au format timestamp.

    Le lien n'est pas reconnu comme juste et me renvoi sur une 404.
    Je ne comprends pas pourquoi ça ne fonctionne pas.

    Voici mon code de réécriture d'url :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    RewriteRule ^(.+)/(.+)\.html$   /n63show.php?link=$1&showdate=$2 [L]
    Voici le code du menu :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    href="/agenda/<? echo($num_day_1) ?>.html">
    Mon url non redirigé est du type : n63show.php?link=agenda&showdate=1283378400

    <? echo($num_day_1) ?> correspond à ma date en timestamp.

    Sur ma page j'ai une variable GET qui récupère la date en timestamp :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    // Variable Get 
    if ( strlen($_GET['showdate']) > 15 )  { 
    // si l'id n'est pas passée en variable  
    	setErrorMessage(L_ERROR_AGENDA);
    	?>
    	<script>
    		window.location = '../n63show.php';
    	</script>
    <?	exit(); 	 
    } else {  
    	 if ( isset($_GET['showdate']) && is_numeric($_GET['showdate']) ){
    	 	$nbrAgendaDate = $_GET['showdate']; 
    	 }
    }
    Je ne sais pas d'où vient l'erreur car à priori mon site doit avoir accès à la bonne url du type : n63show.php?link=agenda&showdate=1283378400 grâce à la redirection.

    Quelqu'un peut m'aider ?

    Merci par avance,

    Aurélien
    Salutations à tous les amis du forum Développez

    Monsieur GRrr, bulletins tranchants pour adultes consentants !

  2. #2
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Le fichier .htaccess que tu donnes se trouve dans quel répertoire ? Dans quel répertoire se trouve le script n63show.php ?

    Du détail, du détail, du détail !!!
    Revenons à la source : lisons la documentation et les fichiers de trace, la réponse à notre problème s'y trouve sans doute

  3. #3
    Membre régulier
    Homme Profil pro
    Consultant E-Business
    Inscrit en
    Août 2010
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Consultant E-Business

    Informations forums :
    Inscription : Août 2010
    Messages : 216
    Points : 96
    Points
    96
    Par défaut
    Bonjour Mac,

    Mon fichier .htaccess et le script n63show se trouve tous les deux dans mon répertoire www.

    Tout fonctionne à merveille pour les autres réécriture sauf pour cette règle là.

    Merci de ton aide,

    Aurélien
    Salutations à tous les amis du forum Développez

    Monsieur GRrr, bulletins tranchants pour adultes consentants !

  4. #4
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Etrange. Le répertoire agenda existe aussi ? Y a un .htaccess dedans ?

    Tu peux donner un exemple de code HTML généré pour l'URL avec la date ? href="/agenda/???.html"

    Du détail, du détail, du détail !!!
    Revenons à la source : lisons la documentation et les fichiers de trace, la réponse à notre problème s'y trouve sans doute

  5. #5
    Membre régulier
    Homme Profil pro
    Consultant E-Business
    Inscrit en
    Août 2010
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Consultant E-Business

    Informations forums :
    Inscription : Août 2010
    Messages : 216
    Points : 96
    Points
    96
    Par défaut
    Non il n'existe pas de répertoire agenda.
    Tout est placé à la source.

    Voici le code de ma page agenda :
    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
    <?
     
    /*-----------------------------------
     *			Includes						
     -------------------------------------*/
    /**/ require_once("./includes/inc_newsFunctions.php");
     
     
    /*************************************
    		PARAMS' DEFAULT VALUES
     *************************************/
    $choixagenda = "";
    $nbrSoireeAffiche = 0;
    $nbrAgendaDate = $nbrTodayNewsDate;
     
    /*************************************
    		       VARIABLE
     *************************************/
     
    // Variable Get 
    if ( strlen($_GET['showdate']) > 15 )  { 
    // si l'id n'est pas passée en variable  
    	setErrorMessage(L_ERROR_AGENDA);
    	?>
    	<script>
    		window.location = '../n63show.php';
    	</script>
    <?	exit(); 	 
    } else {  
    	 if ( isset($_GET['showdate']) && is_numeric($_GET['showdate']) ){
    	 	$nbrAgendaDate = $_GET['showdate']; 
    	 }
    }	
     
    /*************************************
    		Constante de date
     *************************************/
     
    $jour  			= date( "d", $nbrAgendaDate 					);
    $mois  			= date( "m", $nbrAgendaDate 					);
    $moisagenda  	= translateDate( date( "M", $nbrAgendaDate)  	);
    $annee 			= date( "Y", $nbrAgendaDate 					);
     
    $selection		= 0;
    $titredate2 	= $jour.' '.$moisagenda.' '.$annee;
     
    ?>
    <table width="580" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr> 
        <td colspan="2">
    	 <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
            <tr> 
              <td width="280" align="left" valign="top"><p>
                <?  //on insert les news 					
    				include ("./includes/inc_news.php"); 
    			?>
     
              <div align="left"> </p>
                <p><br />
                </p>
              </td>
              <td width="300" align="right" valign="top"> 
                <table border="1" cellpadding="0" cellspacing="0" bordercolor="#66CCFF">
                  <tr> 
                    <td> 
                      <?	
    					//on insert la Pub IMU 					
    					include ("./includes/inc_imu.php"); 
    				?>
                    </td>
                  </tr>
                </table></td>
            </tr>
            <tr> 
              <td height="20" colspan="2" valign="top"><hr /></td>
            </tr>
            <tr> 
              <td height="20" colspan="2" valign="top"> <?
    		include("./includes/inc_menu_agenda.php");
    		?> </td>
            </tr>
            <tr valign="middle"> 
              <td colspan="2"><hr /></td>
            </tr>
            <tr valign="middle"> 
              <td colspan="2">&nbsp;</td>
            </tr>
            <tr valign="top"> 
              <td colspan="2" valign="middle"> 
                    <? $sqlQuery =
    					" SELECT EVENEMENT_TYPE_LABEL " .
    					" FROM EVENEMENT_TYPE".
    					" ORDER BY EVENEMENT_TYPE_LABEL ASC"; 
    				$req = mysql_query($sqlQuery);
    				checkSqlError($sqlQuery);
    				$nbreTypeSoiree = mysql_num_rows($req);
    				$evenementListe = mysql_fetch_array($req); ?>
                    </td>
            </tr>
          </table>
          <fieldset> 	
          		<legend class="legend"><? echo($stg_day) ?> 
                    <? echo($titredate2) ?> - <?  echo(getVilleFromId($idSecteur)) ?>&nbsp;</legend>
    				<br>
    	  <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><p>
                  <?
    //début de la boucle d'affichage des cadres d'événements
    	for ($boucleSoireeType = 1; $boucleSoireeType <= $nbreTypeSoiree ; $boucleSoireeType++) 
    	{
    		//recherche le type de la selection en cours
    		$sqlQuery =
    			" SELECT EVENEMENT_TYPE_LABEL ".
    			" FROM EVENEMENT_TYPE ".
    			" WHERE EVENEMENT_TYPE_ID = '$boucleSoireeType'". 
    			" ORDER BY EVENEMENT_TYPE_ID DESC LIMIT 0,1"; 
    			$req = mysql_query($sqlQuery);
    			checkSqlError($sqlQuery);
    			$soireeType = mysql_fetch_array($req);
     
     
    		//recherche les valeurs des soirées de la selection en cours 			
    		$sqlQuery =
    			" SELECT SOIREE_ID , EVENEMENT_TYPE_LABEL , SOIREE_TITLE , SOIREE_DESCRIPTION , SOIREE_DATE , SOIREE_DATE_FIN , SOIREE_LIEU , SOIREE_PRIX , SOIREE_HEURE" .
    			" FROM SOIREE ".
    			" 	INNER JOIN EVENEMENT_TYPE ON EVENEMENT_TYPE.EVENEMENT_TYPE_ID = SOIREE_TYPE". 
    			" 	WHERE ( SOIREE_SECTEUR = '$idSecteur' AND EVENEMENT_TYPE_ID = '$boucleSoireeType' AND UNIX_TIMESTAMP(SOIREE_DATE) = $nbrAgendaDate )".
    			" 	OR ( EVENEMENT_TYPE_ID LIKE '$boucleSoireeType' AND UNIX_TIMESTAMP(SOIREE_DATE) < '$nbrAgendaDate' AND UNIX_TIMESTAMP(SOIREE_DATE_FIN) >='$nbrAgendaDate' AND SOIREE_SECTEUR = '$idSecteur') ".
    			" ORDER BY SOIREE_ID DESC "; 
    			$req = mysql_query($sqlQuery);
    			checkSqlError($sqlQuery);
    			$nbreligne = mysql_num_rows($req);		
     
    				//si pas de réponse on affiche pas le code 	 
    				if ( $nbreligne ) 
    				{ ?>
                </p>
                <table width="95%%" border="0" align="center" cellspacing="0">
                  <tr> 
                    <td valign="bottom"> <p><strong> <? echo($soireeType['EVENEMENT_TYPE_LABEL']) ?></strong></p></td>
                  </tr>
                </table>
                <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0" class="agenda_center">
                  <tr> 
                    <td> 
                      <?
    					// boucle d'affichage des soir&eacute;es
    					while($data = mysql_fetch_array($req))
    					{					
    						$nbrSoireeAffiche ++ ;
    						$agendadatefin=$data['SOIREE_DATE_FIN'];?>
                      <table width="95%" border="0" align="center" cellspacing="0">
                        <tr valign="bottom"> 
                          <td colspan="2"></td>
                        </tr>
                        <tr> 
                          <td width="69%" valign="top"><blockquote> 
                              <p><a class="agenda" href="n63show.php?link=agendadetail&amp;idAgendaDetail=<? echo($data['SOIREE_ID']) ?>"><? echo($data['SOIREE_TITLE']) ?></a> 
                                <br />
                                Lieu:  <? if ( isPlace($data['SOIREE_LIEU']) ) 
    		   		{ ?>
                  <a href="n63show.php?link=detail&idDetail=<? echo(isPlace($data['SOIREE_LIEU'])) ?>" class="messagedate"><? echo($data['SOIREE_LIEU'] )?></a> 
                  <? } else {				 
    				   	echo($data['SOIREE_LIEU']);
    				}?><br />
                              </p>
                            </blockquote></td>
                          <td width="31%" valign="top"><ul>
                              <li>Tarifs: 
                                <? if  ( $data['SOIREE_PRIX'] == 0) { ?>
                                Gratuit 
                                <? } if  ( $data['SOIREE_PRIX'] > 0 && $data['SOIREE_PRIX'] < 999) { ?>
                                <? echo($data['SOIREE_PRIX']) ?> &euro; 
                                <? }  if  ( $data['SOIREE_PRIX'] == 999) { ?>
                                Nc 
                                <? } ?>
                                <br />
                                [<a class="messagelink" href="n63show.php?link=agendadetail&amp;idAgendaDetail=<? echo($data['SOIREE_ID']) ?>">+ 
                                de d&eacute;tails</a>]</li>
                            </ul></td>
                        </tr>
                      </table>
                      <? } ?>
                    </td>
                  </tr>
                </table>
                <br> <p>&nbsp;</p>
                <p> 
                  <? //fin du test 		
    	}
     
    }
     
    if ( $nbrSoireeAffiche == 0 ) {
    ?>
                </p>
                <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0" class="agenda_center">
                  <tr> 
                    <td><br /> <hr width="90%" /> <p align="center">!!! Aucune activit&eacute; 
                        ce soir !!!<br />
                      </p>
                      <hr width="90%" /> <br /></td>
                  </tr>
                </table>
                <p align="left"> 
                  <?         
    }?>
                </p>
                <p>&nbsp;</p></td>
            </tr>
          </table>
    	  </fieldset>
          <p>&nbsp; </p>
        </td>
      </tr>
    </table>
    Merci pour ton aide,

    Aurélien
    Salutations à tous les amis du forum Développez

    Monsieur GRrr, bulletins tranchants pour adultes consentants !

  6. #6
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Ce n'est pas le code PHP de la page qui m'intéresse mais le code HTML reçu par le navigateur, résultat de l'exécution.

    A tout hasard, ajoute
    dans le .htaccess.

    Du détail, du détail, du détail !!!
    Revenons à la source : lisons la documentation et les fichiers de trace, la réponse à notre problème s'y trouve sans doute

  7. #7
    Membre régulier
    Homme Profil pro
    Consultant E-Business
    Inscrit en
    Août 2010
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Consultant E-Business

    Informations forums :
    Inscription : Août 2010
    Messages : 216
    Points : 96
    Points
    96
    Par défaut
    J'ai essayé de l'ajouter mais ca ne change rien.

    Voici le code :
    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
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> 
     
    <head> 
    <!-- Titre de la page --> 
    <title>Sans titre</title> 
    <meta name="keywords" content="Sans titre"> 
     
     
     
    <meta name="Author" content="Nightfever.fr"> 
     
    <meta name="Description" content="Nightfever.fr Clermont-Ferrand : le guide des sorties et des loisirs : spectacles, concerts, theatre, restaurants, cinéma, soirees, discothèque, Clermont-Ferrand "> 
    <meta name="Identifier-URL" content=""> 
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    <!-- icone dans le titre  --> 
    <link rel="SHORTCUT ICON" href="/images/night.bmp"> 
    <!-- feuille de style --> 
    <link rel="stylesheet" href="/CSS/genshell_style.css" type="text/css"> 
    <link rel="stylesheet" href="/CSS/agenda_style.css" type="text/css"> 
    <link rel="stylesheet" href="/CSS/membres_style.css" type="text/css"> 
    <link rel="stylesheet" href="/CSS/menu_style.css" type="text/css"> 
      <!--[if IE]><style type="text/css" media="screen">@import url(/css/ie.css);</style><![endif]--> 
      <!--[if lte IE 6]><style type="text/css" media="screen">@import url(/css/ie6.css);</style><![endif]--> 
     
     
    <!-- Generated by OpenX 2.8.5 --> 
    <script type='text/javascript' src='http://www.nightfever.fr/openx-2.8.5/www/delivery/spcjs.php?id=1'></script> 
     
    <!-- Flux RSS --> 
    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.nightfever.fr/Rss/agendarss.xml" /> 
    </head> 
    <body> 
     
    <!-- tableau général --> 
    <table width="950" border="0" align="center" cellpadding="0" cellspacing="0" class="genshell"> 
      <tr> 
        <td height="147" background="/images/entete20062.jpg"><table width="100%" height="100%" border="0" cellspacing="0"> 
            <tr> 
              <td width="180">&nbsp;</td> 
              <td height="41">&nbsp;</td> 
            </tr> 
     
            <tr> 
              <td width="180" align="center" valign="middle" nowrap>&nbsp;</td> 
              <td width="84%" align="right" valign="top" nowrap> <p align="center"><br> 
                <div id="cat-nav" class="clear"> 
        <ul class="nav"> 
          <li><a href="/Clermont-Ferrand/accueil.html">Accueil </a></li> 
          <li><a href="/Clermont-Ferrand/magazine.html">Magazine</a> 
              <ul class="nav"><li><a href="/Clermont-Ferrand/magazine/actualite.html">Actualité</a></li> 
              	<li><a href="/Clermont-Ferrand/magazine/interview.html">Interview</a></li> 
              	<li><a href="/Clermont-Ferrand/magazine/reportage.html">Reportage</a></li></ul> 
          </li> 
          <li><a href="/Clermont-Ferrand/agenda.html">Agenda</a> 
             <ul class="nav"><li><a href="/Clermont-Ferrand/agenda/agenda_concert.html">Concert</a></li> 
              	<li><a href="/Clermont-Ferrand/agenda/agenda_spectacle.html">Théatre et spectacle</a></li> 
             	<li><a href="/Clermont-Ferrand/agenda/agenda_clubbing.html">Clubbing et soirée</a></li> 
              	<li><a href="/Clermont-Ferrand/agenda/agenda.html">Agenda par date</span></a></li> 
              	<li><a href="/Clermont-Ferrand/agenda/agendacatconcert.html">Agenda par catégorie</a></li></ul> 
          </li> 
          <li><a href="/Clermont-Ferrand/adresse_accueil.html">Adresses</a> 
          <ul class="nav"><li><a href="/Clermont-Ferrand/adresse/salle_de_spectacle.html">Salle de spectacle</a></li> 
          <li><a href="/Clermont-Ferrand/adresse/theatre.html">Théâtre</a></li> 
          <li><a href="/Clermont-Ferrand/adresse/adresse.html">Toutes les adresses</a></li></ul> 
          </li> 
          <li><a href="/Clermont-Ferrand/membres.html">Communauté</a></li> 
        </ul> 
      </div> 
     
                </p>          </td> 
            </tr> 
        </table></td> 
      </tr> 
      <tr> 
        <td height="30" valign="middle"><table width="950" border="0" align="center" cellpadding="0" cellspacing="0"> 
          <tr> 
            <td height="20" align="left"><span class="gentitle">Votre ville : </span>Clermont-Ferrand&nbsp;| <a href="/bienvenue">Changer de ville</a> </td> 
            <td width="176" height="20" valign="bottom"><form id="form1" name="form1" method="post" action="../n63show.php?link=recherche" class="accueil"> 
                <input name="find" type="text" id="find" value="Rechercher" size="15" maxlength="20" class="accueil"/> 
                <input type="submit" name="Submit" value="OK" class="accueil"/> 
            </form></td> 
          </tr> 
        </table></td> 
      </tr> 
      <tr> 
        <td align="center" valign="top"> 
    	<table width="100%"  border="0" cellspacing="0" cellpadding="0"> 
            <tr> 
              <td width="600" align="center" valign="top" class="center"> 
     
    		  <table width="100%" border="0" cellspacing="0"> 
                  <tr> 
                    <td width="150" align="left" valign="top"><table width="160" border="0" cellspacing="0" class="calendar"> 
      <tr> 
        <td scope="col"><table width="100%" height="69" border="0" align="center" cellspacing="0"> 
            <tr> 
              <td colspan="7"><div align="center"><strong> 
                                Septembre              <a href="/n63show.php?&link=agenda&amp;mois=10&amp;annee=2010">&gt;&gt;</a></strong> 
                  <hr /> 
                </div></td> 
            </tr> 
            <tr> 
              <td width="14%"><div align="center" class="agenda_day">Lun</div></td> 
              <td width="14%"><div align="center" class="agenda_day">Mar</div></td> 
              <td width="14%"><div align="center" class="agenda_day">Mer</div></td> 
              <td width="14%"><div align="center" class="agenda_day">Jeu</div></td> 
              <td width="14%"><div align="center" class="agenda_day">Ven</div></td> 
              <td width="14%"><div align="center" class="agenda_day">Sam</div></td> 
              <td width="14%"><div align="center" class="agenda_day">Dim</div></td> 
            </tr> 
            <tr> 
              <td><hr /></td> 
              <td><hr /></td> 
              <td><hr /></td> 
              <td><hr /></td> 
              <td><hr /></td> 
              <td><hr /></td> 
              <td><hr /></td> 
            </tr> 
            <tr> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                            <a class="agenda" href="/n63show.php?&link=agenda&showdate=1283292000">1</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1283378400" class="live_agenda">2</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1283464800" class="live_agenda">3</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1283551200" class="live_agenda">4</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1283637600" class="live_agenda">5</a> 
                          </td> 
                      </tr> 
            <tr> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1283724000" class="live_agenda">6</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1283810400" class="live_agenda">7</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1283896800" class="live_agenda">8</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1283983200" class="live_agenda">9</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284069600" class="live_agenda">10</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284156000" class="live_agenda">11</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284242400" class="live_agenda">12</a> 
                          </td> 
                      </tr> 
            <tr> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284328800" class="live_agenda">13</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284415200" class="live_agenda">14</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284501600" class="live_agenda">15</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284588000" class="live_agenda">16</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284674400" class="live_agenda">17</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284760800" class="live_agenda">18</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284847200" class="live_agenda">19</a> 
                          </td> 
                      </tr> 
            <tr> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1284933600" class="live_agenda">20</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285020000" class="live_agenda">21</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285106400" class="live_agenda">22</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285192800" class="live_agenda">23</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285279200" class="live_agenda">24</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285365600" class="live_agenda">25</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285452000" class="live_agenda">26</a> 
                          </td> 
                      </tr> 
            <tr> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285538400" class="live_agenda">27</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285624800" class="live_agenda">28</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285711200" class="live_agenda">29</a> 
                          </td> 
                        <td align="center"> 
                            <a href="/n63show.php?&link=agenda&showdate=1285797600" class="live_agenda">30</a> 
                          </td> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                      </tr> 
            <tr> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                        <td align="center"> 
                          </td> 
                      </tr> 
            <tr> 
                      </tr> 
          </table> 
          <p align="left"><strong><em>Ce soir : <br> 
            </em></strong> 
                    <img src="/images/img_fleche.gif" width="12" height="12" align="absmiddle"> 
            <a class="live_agenda" href="n63show.php?link=agendadetail&idAgendaDetail=7735">KEREN ANN +...</a> 
            <br> 
                  <div align="center"><br /> 
            [</span><a href="n63show.php?&link=agenda" class="live_agenda">+ 
            de soir&eacute;es</a>]</div> 
                <p>&nbsp;</p></td> 
      </tr> 
    </table> 
                      <br> 
                      <br> 
                      <!-- verification du formulaire--> 
     
    <script type="text/javascript"> 
     
     
    function ilFautRemplir(nomDuChamp){
    		alert('Il faut remplir le champ nommé: ' + nomDuChamp);
    		return false;
    }
     
    function verifMembresForm(formulaire){	
     
    	//verification sur le champ mot de pass.
    	if (formulaire.LOGIN.value.length == 0) return ilFautRemplir("pseudo");
     
    	//verification sur le champ Ville.
    	if (formulaire.PASSWORD.value.length == 0) return ilFautRemplir("Password");	
     
    	//si on arrive jusqu'ici, c'est que tout s'est bien passé, on peut soumettre le formulaire
    	return true;
    }
    </script> 
     
    <!-- verification du formulaire--> 
    <table width="160"  border="0" align="center" cellspacing="0" class="calendar"> 
      <tr> 
        <td><table width="98%" border="0" align="center" cellpadding="0" cellspacing="0"> 
            <tr> 
              <td align="center"> 
                <br /> 
                                        Bienvenue @urelien </p> 
                <table width="100%" border="0" cellspacing="0" cellpadding="0"> 
                  <tr> 
                    <td> 
     
    				 <a href="/n63show.php?link=membres&link2=message" class="live_agenda">&gt; 
    				 Messages</a> 
                      <br> 
                      <a href="/n63show.php?link=membres" class="live_agenda">&gt; Mes amis</a> <br> 
                      <a href="/n63show.php?link=membres" class="live_agenda">&gt; Mon profil</a> <br> 
                    <a href="../loginProcessor.php?destroy=true" class="live_agenda">&gt; Deconnection</a>                </td> 
                  </tr> 
                </table> 
                            <br>          </td> 
            </tr> 
          </table></td> 
      </tr> 
    </table> 
                      <br> 
                      <br> 
                       <!-- module listing membres --> 
    <table width="160"  border="0" align="center" cellspacing="0" class="calendar"> 
      <tr> 
        <td align="center">1 connect&eacute; <br /> 
        <br /></td> 
      </tr> 
      <tr> 
        <td align="left"> 
     
    		<li> 
    		  <a class="Mod" href="../n63show.php?link=membres&amp;link2=showprofile&amp;membreid=10">@urelien</a>		</li> 
     
            	&nbsp;<br /> 
    	<br /></td> 
      </tr> 
    </table> 
    <br /> 
                      <br> 
                    <br>                </td> 
                    <td width="580" align="right" valign="top"> 
                 <table width="580" border="0" align="center" cellpadding="0" cellspacing="0"> 
      <tr> 
        <td align="center" valign="top"> 
                </p> 
    	</td> 
      </tr> 
    </table> 
    <table width="580" border="0" align="center" cellpadding="0" cellspacing="0"> 
      <tr> 
        <td colspan="2"> 
    	 <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> 
            <tr> 
              <td width="280" align="left" valign="top"><p> 
                <img src="/images/img_fleche_agenda.gif" width="15" height="15" align="absmiddle" /><strong> News a la Une :</strong><br /> 
                    <br /> 
                                  <table width="100%" border="0" cellspacing="0"> 
                    <tr> 
                      <td width="57" align="left" scope="col"><a class="thumbnail" href="/Clermont-Ferrand/article/david_guetta_10176.html"><img class="thumbnail" src="/coope/David-Guetta-090507_petit.jpg" width="55" height="55" border="1" title="DAVID GUETTA" /></a></td> 
                      <td width="301" align="left" scope="col"><a href="/Clermont-Ferrand/article/david_guetta_10176.html" class="news"><strong>DAVID GUETTA</strong><br /> 
                        </a> David Guetta sera au B.Box Club le vendredi 1 juin !!! Immanquable... 
                        <br> 
                        <a href="/Clermont-Ferrand/article/david_guetta_10176.html">lire 
                        la suite</a></td> 
                    </tr> 
                    <tr> 
                      <td colspan="2" align="left" scope="col">&nbsp;</td> 
                    </tr> 
                  </table> 
                                  <table width="100%" border="0" cellspacing="0"> 
                    <tr> 
                      <td width="57" align="left" scope="col"><a class="thumbnail" href="/Clermont-Ferrand/article/afterwork_10175.html"><img class="thumbnail" src="/coope/EuropaVox_07_070507_report.jpg" width="55" height="55" border="1" title="AFTERWORK" /></a></td> 
                      <td width="301" align="left" scope="col"><a href="/Clermont-Ferrand/article/afterwork_10175.html" class="news"><strong>AFTERWORK</strong><br /> 
                        </a> Afterwork Europ?en mercredi 30 mai pour lancer Europavox place du 1er... 
                        <br> 
                        <a href="/Clermont-Ferrand/article/afterwork_10175.html">lire 
                        la suite</a></td> 
                    </tr> 
                    <tr> 
                      <td colspan="2" align="left" scope="col">&nbsp;</td> 
                    </tr> 
                  </table> 
                                  <table width="100%" border="0" cellspacing="0"> 
                    <tr> 
                      <td width="57" align="left" scope="col"><a class="thumbnail" href="/Clermont-Ferrand/article/pirates_des_caraibes_10174.html"><img class="thumbnail" src="/coope/pirates3_0507_petit.jpg" width="55" height="55" border="1" title="PIRATES DES CARAIBES, JUSQU`AU BOUT DU MONDE" /></a></td> 
                      <td width="301" align="left" scope="col"><a href="/Clermont-Ferrand/article/pirates_des_caraibes_10174.html" class="news"><strong>PIRATES DES CARAIBES, JUSQU`AU BOUT DU MONDE</strong><br /> 
                        </a> Le troisi?me volet de la d?sormais incontournable saga des pirates... 
                        <br> 
                        <a href="/Clermont-Ferrand/article/pirates_des_caraibes_10174.html">lire 
                        la suite</a></td> 
                    </tr> 
                    <tr> 
                      <td colspan="2" align="left" scope="col">&nbsp;</td> 
                    </tr> 
                  </table> 
     
              <div align="left"> </p> 
                <p><br /> 
                </p> 
              </td> 
              <td width="300" align="right" valign="top"> 
                <table border="1" cellpadding="0" cellspacing="0" bordercolor="#66CCFF"> 
                  <tr> 
                    <td> 
                      <!-- TAG DFP IMU --> 
     
     
     
     
    <!-- /TAG DFP IMU -->                </td> 
                  </tr> 
                </table></td> 
            </tr> 
            <tr> 
              <td height="20" colspan="2" valign="top"><hr /></td> 
            </tr> 
            <tr> 
              <td height="20" colspan="2" valign="top"> 
    <table width="90%" border="0" align="center" cellspacing="0"> 
      <tr> 
        <td width="75" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/agenda/1283292000.html">mercredi 01</a></strong></li> 
        </ul></td> 
        <td align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283378400">jeudi 02</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283464800">vendredi 03</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle" ><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283551200">samedi 04</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283637600">dimanche 05</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image"  href="/n63show.php?link=agenda&showdate=1283724000">lundi 06</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283810400">mardi 07</a></strong></li> 
        </ul></td> 
      </tr> 
    </table> 
     </td> 
            </tr> 
            <tr valign="middle"> 
              <td colspan="2"><hr /></td> 
            </tr> 
            <tr valign="middle"> 
              <td colspan="2">&nbsp;</td> 
            </tr> 
            <tr valign="top"> 
              <td colspan="2" valign="middle"> 
                                    </td> 
            </tr> 
          </table> 
          <fieldset> 	
          		<legend class="legend">mercredi 
                    01 septembre 2010 - Clermont-Ferrand&nbsp;</legend> 
    				<br> 
    	  <table width="100%" border="0" cellspacing="0" cellpadding="0"> 
            <tr> 
              <td><p> 
                              </p> 
                <table width="95%%" border="0" align="center" cellspacing="0"> 
                  <tr> 
                    <td valign="bottom"> <p><strong> Concerts</strong></p></td> 
                  </tr> 
                </table> 
                <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0" class="agenda_center"> 
                  <tr> 
                    <td> 
                                        <table width="95%" border="0" align="center" cellspacing="0"> 
                        <tr valign="bottom"> 
                          <td colspan="2"></td> 
                        </tr> 
                        <tr> 
                          <td width="69%" valign="top"><blockquote> 
                              <p><a class="agenda" href="n63show.php?link=agendadetail&amp;idAgendaDetail=7735">KEREN ANN + SOKO</a> 
                                <br /> 
                                Lieu:  La Coopérative de Mai<br /> 
                              </p> 
                            </blockquote></td> 
                          <td width="31%" valign="top"><ul> 
                              <li>Tarifs: 
                                                            21 &euro; 
                                                            <br /> 
                                [<a class="messagelink" href="n63show.php?link=agendadetail&amp;idAgendaDetail=7735">+ 
                                de d&eacute;tails</a>]</li> 
                            </ul></td> 
                        </tr> 
                      </table> 
                                      </td> 
                  </tr> 
                </table> 
                <br> <p>&nbsp;</p> 
                <p> 
                              </p> 
                <table width="95%%" border="0" align="center" cellspacing="0"> 
                  <tr> 
                    <td valign="bottom"> <p><strong> Théâtre et spectacles</strong></p></td> 
                  </tr> 
                </table> 
                <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0" class="agenda_center"> 
                  <tr> 
                    <td> 
                                        <table width="95%" border="0" align="center" cellspacing="0"> 
                        <tr valign="bottom"> 
                          <td colspan="2"></td> 
                        </tr> 
                        <tr> 
                          <td width="69%" valign="top"><blockquote> 
                              <p><a class="agenda" href="n63show.php?link=agendadetail&amp;idAgendaDetail=8066">Love Letters</a> 
                                <br /> 
                                Lieu:  Le Valet de Coeur<br /> 
                              </p> 
                            </blockquote></td> 
                          <td width="31%" valign="top"><ul> 
                              <li>Tarifs: 
                                                            Gratuit 
                                                            <br /> 
                                [<a class="messagelink" href="n63show.php?link=agendadetail&amp;idAgendaDetail=8066">+ 
                                de d&eacute;tails</a>]</li> 
                            </ul></td> 
                        </tr> 
                      </table> 
                                        <table width="95%" border="0" align="center" cellspacing="0"> 
                        <tr valign="bottom"> 
                          <td colspan="2"></td> 
                        </tr> 
                        <tr> 
                          <td width="69%" valign="top"><blockquote> 
                              <p><a class="agenda" href="n63show.php?link=agendadetail&amp;idAgendaDetail=7906">Les Etoiles du Cirque de Pekin dans Jungua</a> 
                                <br /> 
                                Lieu:  Patinoire Bordeaux M?riadeck<br /> 
                              </p> 
                            </blockquote></td> 
                          <td width="31%" valign="top"><ul> 
                              <li>Tarifs: 
                                                            30 &euro; 
                                                            <br /> 
                                [<a class="messagelink" href="n63show.php?link=agendadetail&amp;idAgendaDetail=7906">+ 
                                de d&eacute;tails</a>]</li> 
                            </ul></td> 
                        </tr> 
                      </table> 
                                      </td> 
                  </tr> 
                </table> 
                <br> <p>&nbsp;</p> 
                <p> 
                              </p> 
                <p>&nbsp;</p></td> 
            </tr> 
          </table> 
    	  </fieldset> 
          <p>&nbsp; </p> 
        </td> 
      </tr> 
    </table> 
    				</td> 
                    <td width="160" align="left" valign="top"> 
     
                     <table width="160" border="0" cellspacing="0" class="calendar"> 
      <tr> 
        <td align="center" valign="top" scope="col"> 
    		<br> 
     
    <!--/* OpenX Javascript Tag v2.8.5 */--> 
     
    <!--/** L'image de sauvegarde de cette balise a été générée pour être utilisée sur une page 	* non-SSL. Ci cette balise doit être placée sur une page SSL, changez le 	*   'http://www.nightfever.fr/openx-2.8.5/www/delivery/...' 	* par 	*   'https://www.nightfever.fr/openx-2.8.5/www/delivery/...' 	*
      * This noscript section of this tag only shows image banners. There
      * is no width or height in these banners, so if you want these tags to
      * allocate space for the ad before it shows, you will need to add this
      * information to the <img> tag.
      *
      * If you do not want to deal with the intricities of the noscript
      * section, delete the tag (from <noscript>... to </noscript>). On
      * average, the noscript tag is called from less than 1% of internet
      * users.
      */--> 
     
    <script type='text/javascript'><!--//<![CDATA[
       var m3_u = (location.protocol=='https:'?'https://www.nightfever.fr/openx-2.8.5/www/delivery/ajs.php':'http://www.nightfever.fr/openx-2.8.5/www/delivery/ajs.php');
       var m3_r = Math.floor(Math.random()*99999999999);
       if (!document.MAX_used) document.MAX_used = ',';
       document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
       document.write ("?zoneid=2");
       document.write ('&amp;cb=' + m3_r);
       if (document.MAX_used != ',') document.write ("&amp;exclude=" + document.MAX_used);
       document.write (document.charset ? '&amp;charset='+document.charset : (document.characterSet ? '&amp;charset='+document.characterSet : ''));
       document.write ("&amp;loc=" + escape(window.location));
       if (document.referrer) document.write ("&amp;referer=" + escape(document.referrer));
       if (document.context) document.write ("&context=" + escape(document.context));
       if (document.mmm_fo) document.write ("&amp;mmm_fo=1");
       document.write ("'><\/scr"+"ipt>");
    //]]>--></script><noscript><a href='http://www.nightfever.fr/openx-2.8.5/www/delivery/ck.php?n=a00c8d7a&amp;cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://www.nightfever.fr/openx-2.8.5/www/delivery/avw.php?zoneid=2&amp;cb=INSERT_RANDOM_NUMBER_HERE&amp;n=a00c8d7a' border='0' alt='' /></a></noscript> 
     
     
    	         <br> 
    		<br> 
        </td> 
      </tr> 
    </table>                  
    				  <br> 
                      <br> 
                      <table width="160" border="0" cellspacing="0" class="calendar"> 
      <tr> 
        <td align="center" valign="top" scope="col"> 
    	Partenaires<br /> 
    	<br> 
     
    			<img src="/images/pub/logo_scoop.jpg" width="150" height="129" /> 
     
    		<br> 
        </td> 
      </tr> 
    </table>                  <br> 
                    <br></td> 
                  </tr> 
                </table>		  </td> 
            </tr> 
          </table>	  </td> 
      </tr> 
      <tr align="center"> 
        <td> 
     
     
     
                  <div id="sitemap1" class="clear"> 
                  <strong><P align="left" class="sitemap2">Plan du site :</P></strong> 
                        <ul> 
     
     
    						<div class="sitemap"> 
     
    		<ul> 
     
            <li><strong>Magazine</strong> 
     
            <li><a href="/Clermont-Ferrand/magazine.html">Accueil magazine</a></li> 
     
            <li><a href="/Clermont-Ferrand/magazine/actualite.html">Actualité</a></li> 
     
              	<li><a href="/Clermont-Ferrand/magazine/interview.html">Interview</a></li> 
     
              	<li><a href="/Clermont-Ferrand/magazine/reportage.html">Reportage</a></li> 
     
           </li>     </ul> 
     </div> 
     
    						<div class="sitemap"> 
     
     
     
    		 <ul> 
     
             <li><strong>Agenda</strong> 
     
             <li><a href="/Clermont-Ferrand/agenda.html">Accueil agenda</a></li> 
     
             <li><a href="/Clermont-Ferrand/agenda/agenda_concert.html">Concert</a></li> 
     
              	<li><a href="/Clermont-Ferrand/agenda/agenda_spectacle.html">Théatre et spectacle</a></li> 
     
             	<li><a href="/Clermont-Ferrand/agenda/agenda_clubbing.html">Clubbing et soirée</a></li> 
     
              	<li><a href="/Clermont-Ferrand/agenda/agenda.html">Agenda par date</span></a></li> 
     
              	<li><a href="/Clermont-Ferrand/agenda/agendacatconcert.html">Agenda par catégorie</a></li> 
     
               </li> </ul> 
     
    						 </div> 
     
    						<div class="sitemap"> 
     
     
    		 <ul> 
     
             <li><strong>Adresse</strong> 
     
              <li><a href="/Clermont-Ferrand/adresse_accueil.html">Accueil adresse</a></li> 
     
             <li><a href="/Clermont-Ferrand/adresse/salle_de_spectacle.html">Salle de spectacle</a></li> 
     
          <li><a href="/Clermont-Ferrand/adresse/theatre.html">Théâtre</a></li> 
     
          <li><a href="/Clermont-Ferrand/adresse/adresse.html">Toutes les adresses</a></li> 
     
        </li>  </ul> 
    						 </div> 
     
    						<div class="sitemap"> 
     
     
    		<ul> 
     
            <li><strong>Communauté</strong> 
     
              <li><a href="/Clermont-Ferrand/membres.html">Accueil communauté</a></li> 
     
    		<li><a href="/Clermont-Ferrand/membres.html">Communauté</a></li> 
     
    	</li> 	</ul> 
     
    						</div> 
     
    					</ul> </div> 
    </td> 
      </tr> 
      <tr align="center"> 
        <td class="center"> <p class="gentitle">|<a href="n63show.php?link=presse"> Presse </a>|<a href="n63show.php?link=liens"> Liens</a> | <a href="n63show.php?link=membres&link2=showprofile&membreid=2">webmaster</a> | 
          <a href="http://www.nightfever63.com/admin">Admin</a>    </p> 
         <p><span class="gentitle"><a href="http://www.nightfever.fr/RSS/agendarss.xml" target="_blank"><img src="/RSS/logo-rss.png" width="36" height="14" border="0" align="absbottom"></a> 
            [ <a href="n63show.php?link=cgu">Mentions l&eacute;gales</a></span><span class="gentitle">] 
            </span></p> 
            <p class="gentitle">© Copyright Nightfever.fr 2003-2010 - Tous droits réservés </p></td> 
      </tr> 
    </table> 
    <!-- Fin du tableau général --> 
     
     
     
    </body> 
    </html>
    Pour gagner un peu de temps voici le menu qui me pose problème dans la page en question :
    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
    <table width="90%" border="0" align="center" cellspacing="0"> 
      <tr> 
        <td width="75" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/agenda/1283292000.html">mercredi 01</a></strong></li> 
        </ul></td> 
        <td align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283378400">jeudi 02</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283464800">vendredi 03</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle" ><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283551200">samedi 04</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283637600">dimanche 05</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image"  href="/n63show.php?link=agenda&showdate=1283724000">lundi 06</a></strong></li> 
        </ul></td> 
        <td height="25" align="center" valign="middle">&nbsp;</td> 
        <td width="75" height="25" align="center" valign="middle"><ul id="menu"> 
          <li><strong><a class="agenda_image" href="/n63show.php?link=agenda&showdate=1283810400">mardi 07</a></strong></li> 
        </ul></td> 
      </tr> 
    </table>
    Qu'en penses-tu ?

    Aurélien
    Salutations à tous les amis du forum Développez

    Monsieur GRrr, bulletins tranchants pour adultes consentants !

  8. #8
    Rédacteur
    Avatar de _Mac_
    Profil pro
    Inscrit en
    Août 2005
    Messages
    9 601
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2005
    Messages : 9 601
    Points : 12 977
    Points
    12 977
    Par défaut
    Citation Envoyé par AurelienNF Voir le message
    Voici mon code de réécriture d'url :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    RewriteRule ^(.+)/(.+)\.html$   /n63show.php?link=$1&showdate=$2 [L]
    Ton .htaccess ne contient que cette seule ligne ? J'en doute car le masque ^(.+)/(.+)\.html$ est beaucoup trop générique. J'aurais plutôt vu un truc du genre ^agenda/([0-9]+)\.html$. Je soupçonne donc un conflit entre règles.

    Du détail, du détail, du détail !!!
    Revenons à la source : lisons la documentation et les fichiers de trace, la réponse à notre problème s'y trouve sans doute

  9. #9
    Membre régulier
    Homme Profil pro
    Consultant E-Business
    Inscrit en
    Août 2010
    Messages
    216
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Consultant E-Business

    Informations forums :
    Inscription : Août 2010
    Messages : 216
    Points : 96
    Points
    96
    Par défaut
    Effectivement, après maintes manip j'ai, enfin, réussi !!!

    Merci beaucoup Mac, sans toi je serais encore en train de galérer !!!

    Aurélien
    Salutations à tous les amis du forum Développez

    Monsieur GRrr, bulletins tranchants pour adultes consentants !

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

Discussions similaires

  1. Réécriture d'url avec dossier
    Par paterson dans le forum Apache
    Réponses: 4
    Dernier message: 20/06/2008, 18h42
  2. [AJAX] encodage-decodage URL avec Java et Javascript
    Par alfreedd dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 05/06/2007, 13h45
  3. Problème encodage-decodage URL avec Java et Javascript
    Par alfreedd dans le forum Servlets/JSP
    Réponses: 6
    Dernier message: 27/04/2007, 12h11
  4. Réponses: 2
    Dernier message: 18/04/2007, 18h18
  5. La réécriture d'URL avec Apache
    Par agencep dans le forum Langage
    Réponses: 3
    Dernier message: 25/04/2006, 16h37

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