marioclep Posted April 14, 2009 Share Posted April 14, 2009 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 »', 'kubrick'), __('1 Comment »', 'kubrick'), __('% Comments »', '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’t here.', 'kubrick'); ?></p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?> Thanks in advance!!! Mario Link to comment https://forums.phpfreaks.com/topic/154030-syntax-error-for-php-and-wordpress-experts/ Share on other sites More sharing options...
mrMarcus Posted April 14, 2009 Share Posted April 14, 2009 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? Link to comment https://forums.phpfreaks.com/topic/154030-syntax-error-for-php-and-wordpress-experts/#findComment-809680 Share on other sites More sharing options...
marioclep Posted April 14, 2009 Author Share Posted April 14, 2009 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? Link to comment https://forums.phpfreaks.com/topic/154030-syntax-error-for-php-and-wordpress-experts/#findComment-809926 Share on other sites More sharing options...
mrMarcus Posted April 14, 2009 Share Posted April 14, 2009 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. Link to comment https://forums.phpfreaks.com/topic/154030-syntax-error-for-php-and-wordpress-experts/#findComment-809929 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.