index.php has redirect loop
-
No idea what happened.. I swear!!
All browsers (chrome, firefox, safari) show some sort of issue with the index page having a redirect loop.
Actual message from chrome:
This webpage has a redirect loop.
The webpage at https://itsmemary.com/ has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
Here are some suggestions:
Reload this web page later.
Learn more about this problem.
More information on this errorI haven’t modified any files. I was editing/deleting plugins (specifically twitter tools because it has stopped working) that i didnt think i was using, and poof! redirect loop error from hell.
As you can see here:
https://itsmemary.com/football-season-is-definitely-here/I can view other pages of my site and they work fine. So I’m not sure what to do at this point.
Here is my index.php page in its entirety:
<?php /** * @package WordPress * @subpackage Default_Theme */ get_header(); ?> <?php include (TEMPLATEPATH . '/leftbar.php'); ?> <div id="content" class="narrowcolumn" role="main"> <?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="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small><br /><br /> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></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 get_search_form(); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <div style="clear:both"> </div> <?php get_footer(); ?>
- The topic ‘index.php has redirect loop’ is closed to new replies.