Salut a tous,
voilà je débute avec le PHP et j'ai sous la main un site entièrement PHP que je m'attèle a modifier mais voilà que je n'arrive plus a accéder a la page index du site.
Je tourne en local avec Wamp server et lorsque je clique sur le site voilà ce que j'obtiens:



Voici le code source de ma page index.php:

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
<?php get_header(); ?>
 
 
  <div id="container">
 
	    <div id="leftnav">
	  <?php get_sidebar(); ?>
    </div>
    <div id="rightnav">
	  <?php include (TEMPLATEPATH . '/sidebar2.php'); ?>
</div>
 
 
    <div id="content">
	<?php if (have_posts()) : ?>
 
		<?php while (have_posts()) : the_post(); ?>
 
			<div class="post" id="post-<?php the_ID(); ?>">
 
<div class="date"> <?php the_time('d') ?><br/>
				<?php the_time('M') ?> </div>
				<h3 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
 
 
				<div class="entry">
					<?php the_content('Continue Reading &raquo;'); ?>
				</div>
				<div class="roundcont">
   <div class="roundtop">
	 <img src="<?php bloginfo('template_url'); ?>/img/tr.png" alt="" 
	 width="5" height="5" class="corner" 
	 style="display: none" />
   </div><p class="postmetadata">Posted in <?php the_category(', ') ?> by: <?php the_author() ?><?php edit_post_link('Edit',' ',''); ?> <br/> <?php comments_popup_link('No Hot Comments', '1 Hot Comment', '% Hot Comments'); ?></p> <div class="roundbottom">
	 <img src="<?php bloginfo('template_url'); ?>/img/bl.png" alt="" 
	 width="5" height="5" class="corner" 
	 style="display: none" />
   </div>
</div>	
				</div>
 
 
 
		<?php endwhile; ?>
 
		<div class="navigation">
			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
		</div>
 
	<?php else : ?>
 
		<h2 class="center">Not Found</h2>
		<p class="center">Sorry, but you are looking for something that isn't here.</p>
		<?php include (TEMPLATEPATH . "/searchform.php"); ?>
 
	<?php endif; ?>
    </div>
 
<?php get_footer(); ?>
</div>
</div>
</body>
</html>