hvordan installerer jeg et blog-script i php?
jeg har oploaded siderne ( janmejer.dk/blog ) men får en fejlmeddelse.
Theme Name: Coffee Club
Theme URI:
http://www.freetemplatesonline.com
sådan ser index.php ud: ( eller er det css der skal rettes? )
<?php
get_header();
?>
<table width="285" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" height="5"><img src="<?php
bloginfo('stylesheet_directory'); ?>/images/welcome_top.gif"
alt="welcome_top"></td>
</tr>
<tr>
<td valign="top" class="right_bg">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3 class="storytitle"><img src="<?php
bloginfo('stylesheet_directory'); ?>/images/post.gif" alt="post"> <a
href="<?php the_permalink() ?>" rel="bookmark"><?php the_title();
?></a></h3>
<h2><?php the_time('F jS, Y') ?></h2>
<div class="meta"><?php _e("Filed under:"); ?> <?php
the_category(',') ?> — <?php the_author() ?> @ <?php the_time()
?></div>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
<div class="feedback">
<?php wp_link_pages(); ?><?php
comments_popup_link(('Read Comments (0)'),('Read Comments (1)'), ('Read
Comments (%)'),'read_post_link'); ?> <?php edit_post_link('Post your
own','<span class="edit_post_link">','</span>'); ?>
</div>
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</td>
</tr>
<tr>
<td valign="top"><img src="<?php bloginfo('stylesheet_directory');
?>/images/history_bottom.gif" alt="history_bottom"></td>
</tr>
<tr>
<td valign="top"></td>
</tr>
</table>
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page
»')); ?>
<?php get_footer(); ?>