Jump to content

Syntax error (for PHP and Wordpress experts!)


marioclep

Recommended Posts

Hi guys!

 

I'm new to this forum. Can anyone please help me solve this PHP error in my Wordpress blog?

 

Here's the error:

 

Parse error: syntax error, unexpected T_ENDIF in C:\Inetpub\www.marioclep.com.ar\wp-content\themes\default\index.php on line 5

 

Here is the PHP code for the index.php file:

 

<?php get_header(); ?>

 

<div id="content" class="narrowcolumn">

 

<?php if (have_posts()) : ?>

 

<?php while (have_posts()) : the_post(); ?>

 

<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">

<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>

<small><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- by <?php the_author() ?> --></small>

 

<div class="entry">

<?php the_content(__('Read the rest of this entry »', 'kubrick')); ?>

</div>

 

<p class="postmetadata"><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p>

</div>

 

<?php endwhile; ?>

 

<div class="navigation">

<div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')) ?></div>

<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')) ?></div>

</div>

 

<?php else : ?>

 

<h2 class="center"><?php _e('Not Found', 'kubrick'); ?></h2>

<p class="center"><?php _e('Sorry, but you are looking for something that isn&#8217;t here.', 'kubrick'); ?></p>

<?php include (TEMPLATEPATH . "/searchform.php"); ?>

 

<?php endif; ?>

 

</div>

 

<?php get_sidebar(); ?>

 

<?php get_footer(); ?>

 

 

Thanks in advance!!!

 

Mario

please use code or php tags when displaying a script here .. just makes it easier to diagnose.

 

if this

<?php include (TEMPLATEPATH . "/searchform.php"); ?>

is being accessed, you issue could lie in there .. what part of the script is being accessed when you get this error?

Thanks in advance mrMarcus,

 

but as I said, this is my firts time, asking for help in this kind of forums, and don´t know how to do it. What do I have to do to print my php code in an easier way?

 

 

no worries.

 

either wrap your code with [ php ] or [ code ] (no spaces between brackets and word) .. wrapping with [ php ] gives some nice colour-coding.

 

as for your problem .. please refer to my last post.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.