Title: jbrewlet's Replies | WordPress.org

---

# jbrewlet

  [  ](https://wordpress.org/support/users/jbrewlet/)

 *   [Profile](https://wordpress.org/support/users/jbrewlet/)
 *   [Topics Started](https://wordpress.org/support/users/jbrewlet/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jbrewlet/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jbrewlet/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jbrewlet/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jbrewlet/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jbrewlet/favorites/)

 Search replies:

## Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Options Framework] My site seems to be broken](https://wordpress.org/support/topic/my-site-seems-to-be-broken/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/my-site-seems-to-be-broken/#post-4424031)
 * Devin,
    Thanks for your help. The theme developer suggested to remove the support
   module and that fixed it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Options Framework] My site seems to be broken](https://wordpress.org/support/topic/my-site-seems-to-be-broken/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/my-site-seems-to-be-broken/#post-4424004)
 * Hey Devin,
    Sorry I wasn’t very clear in my first post. None of my embedded [hero images](http://i.imgur.com/zVU9Ukc.png)
   will load. I’m really not sure what’s causing it other than it started when I
   updated to 3.8.
 * I have a feeling it’s the Options Framework because WordPress seems confused 
   about it:
 * [Dashboard](http://i.imgur.com/YivNSxJ.png)
 * When I try to install it, it says it’s [updated](http://i.imgur.com/PgArZrh.png)…
   Mysterious.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Options Framework] Slider and slides are invisible](https://wordpress.org/support/topic/slider-and-slides-are-invisible/)
 *  [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/slider-and-slides-are-invisible/#post-4422169)
 * I am having the same problem since updating to WordPress 3.8.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Migrated Servers, Now Static Front Page getting 500 Error](https://wordpress.org/support/topic/migrated-servers-now-static-front-page-getting-500-error/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/migrated-servers-now-static-front-page-getting-500-error/#post-3100245)
 * Good finds. I’m getting somewhere. Now no 500 Error just a blank white page.
 * Here’s where I’m at:
 *     ```
       <?php
       /*
       Template Name: No Sidebar
       /*
       ?>
       <!-- item -->
       <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
   
       <div id="what">
       <?php the_content('\
       \pard\pardeftab720\sl360\sa360\ql\qnatural
       \cf2 Read the rest of this page \'bb</p>'); ?>
       <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
       <?php endwhile; else: ?>
       </div>
       <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
       <?php endif; ?>
       </div>
       ```
   
 * The entire intent of this page is to load up some simple HTML that serves as 
   a splash. See a [cached](http://webcache.googleusercontent.com/search?q=cache:uLdZh73mTr4J:makecollab.com/+&cd=1&hl=en&ct=clnk&gl=us)
   version.
    Thus I don’t want the blog header or footer loaded in.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Migrated Servers, Now Static Front Page getting 500 Error](https://wordpress.org/support/topic/migrated-servers-now-static-front-page-getting-500-error/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/migrated-servers-now-static-front-page-getting-500-error/#post-3100243)
 * I have narrowed down my problems to residing within a server problem related 
   to a Page Template. My static page works when I switch to my Default Template.
   My static home template I modified from the Default and for some reason with 
   this new server it gives me a 500 Error. Below is the code of my **Default Page
   Template for reference**:
 *     ```
       <?php get_header(); ?>
         <div id="bd" class="yui-navset">
   
           <div id="yui-main">
       		<div class="yui-b" >
       			<div class="yui-g">
   
       <!-- item -->
       		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
       		<div class="item entry" id="post-<?php the_ID(); ?>">
       				 <div class="itemhead">
       				          <h3><?php the_title(); ?></h3>
       				 </div>
       				 <div class="storycontent">
   
       				<?php the_content(); ?>
   
       				<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
       			</div>
       		</div>
       	<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
       <!-- end item -->
   
       		<?php endwhile; ?>
       	<?php endif; ?>
       <!-- end content -->
       <!-- 2nd sidebar -->
   
       <!-- end 2nd sidebar -->
       			</div>
       		</div>
       	</div>
       	<div class="yui-b" id="secondary">
   
       <?php get_sidebar(); ?>
   
       	</div>
         </div>
       <?php get_footer(); ?>
       ```
   
 * Here is my **No-Sidebar or Static Home Template**:
 *     ```
       <head>
       <meta name="google-site-verification" content="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" />
       <script type="text/javascript">
   
         var _gaq = _gaq || [];
         _gaq.push(['_setAccount', 'UA-xxxxxxxxx-x']);
         _gaq.push(['_trackPageview']);
   
         (function() {
           var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
           ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
           var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
         })();
   
       </script>
       </head>
   
       <?php\
       /*\
       Template Name: No Sidebar
       /*\
       ?>
       <center>
       <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
       <div id="what">
   
       <?php the_content(); ?>
       <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
       <?php endwhile; else: ?>
   
       <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
       <?php endif; ?>
       </center>
       ```
   
 * I’m really not knowledgeable enough to know what is wrong here with the PHP code
   or relation to my server setup that’s causing it to not even throw a 404. Literally
   everything is else on my site is working perfectly and faster since the migration.
 * I would really appreciate any help.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Migrated Servers, Now Static Front Page getting 500 Error](https://wordpress.org/support/topic/migrated-servers-now-static-front-page-getting-500-error/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/migrated-servers-now-static-front-page-getting-500-error/#post-3100230)
 * Thanks for the suggestion. I had not reset permalinks. I tried to reset them 
   but it proved no different results when loading the static page.
 * I also checked both URL for SiteURL and Home and they are correct.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Visual Editor Not Working](https://wordpress.org/support/topic/visual-editor-not-working-21/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/visual-editor-not-working-21/#post-2466954)
 * It was at first, I corrected it, which is here also:
    [http://i.imgur.com/oyze2.png](http://i.imgur.com/oyze2.png)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Visual Editor Not Working](https://wordpress.org/support/topic/visual-editor-not-working-21/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/visual-editor-not-working-21/#post-2466952)
 * Less, with some missing from the FAQ app that is malfunctioning.
 * [http://i.imgur.com/oyze2.png](http://i.imgur.com/oyze2.png)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Visual Editor Not Working](https://wordpress.org/support/topic/visual-editor-not-working-21/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/visual-editor-not-working-21/#post-2466949)
 * Kevin,
    I had done that previously but I tried it again for hope of a miracle
   and nothing. Same problems.
 * Maybe this weekend I’ll get some time to tear things down. Do you use that guide
   I posted previous?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Visual Editor Not Working](https://wordpress.org/support/topic/visual-editor-not-working-21/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/visual-editor-not-working-21/#post-2466947)
 * Kevin,
    Thanks for the suggestions. I looked up how to manually reinstall wordpress
   and at this moment I don’t have time to fix a major mistake in reinstalling properly(
   do you use this [guide](http://codex.wordpress.org/Upgrading_WordPress_Extended)?)
   which I feel is probable haha.
 * I cleared cache however and yes it happens on every page. I am at a loss though,
   I feel like I need to reinstall wordpress but I’m afraid of doing that at this
   moment.
 * I seem to have lots of [errors ](http://i.imgur.com/NhTIQ.png)related to jQuery
   and a FAQ plugin (this was a recent addition and was having the other problems
   before).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SFN Easy FAQ Manager] [Plugin: FAQ Manager] FAQ's Not Collapsed by Default](https://wordpress.org/support/topic/plugin-faq-manager-faqs-not-collapsed-by-default/)
 *  Thread Starter [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-faq-manager-faqs-not-collapsed-by-default/#post-2478307)
 * Hate to be a dullard but what would I be looking for in the code? I can’t seem
   to find the actual word jQuery anywhere so I’m assuming it’s something else.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Customer Reviews] [Plugin: WP Customer Reviews] "Click here to submit review button" now doesn't work](https://wordpress.org/support/topic/plugin-wp-customer-reviews-click-here-to-submit-review-button-now-doesnt-work/)
 *  [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-customer-reviews-click-here-to-submit-review-button-now-doesnt-work/#post-2477032)
 * I have the same issue.
 * Thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Help! Page navigation for wordpress stuck on the first page](https://wordpress.org/support/topic/help-page-navigation-for-wordpress-stuck-on-the-first-page/)
 *  [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/help-page-navigation-for-wordpress-stuck-on-the-first-page/#post-2177069)
 * I have found the problem. It was the plugin, Plimus creating a bunch of pages
   on it’s own and corrupting things. Thanks anyway.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Help! Page navigation for wordpress stuck on the first page](https://wordpress.org/support/topic/help-page-navigation-for-wordpress-stuck-on-the-first-page/)
 *  [jbrewlet](https://wordpress.org/support/users/jbrewlet/)
 * (@jbrewlet)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/help-page-navigation-for-wordpress-stuck-on-the-first-page/#post-2177068)
 * I also have this same problem. Our site has been working great and now it seems
   to stick on the landing page. The URL changes but won’t go anywhere. I can’t 
   seem to apply the fix you provided for ratnalaurentina to my situation.
 * See: [http://makecollab.com](http://makecollab.com)
 * Here’s the code of the Page Template
    [http://pastebin.com/yUeDwJ8Y](http://pastebin.com/yUeDwJ8Y)
 * Thanks for any help.

Viewing 14 replies - 1 through 14 (of 14 total)