Title: Scriptrunner (Doug Sparling)'s Replies - page 23 | WordPress.org

---

# Scriptrunner (Doug Sparling)

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 331 through 345 (of 520 total)

[←](https://wordpress.org/support/users/scriptrunner/replies/page/22/?output_format=md)
[1](https://wordpress.org/support/users/scriptrunner/replies/?output_format=md) 
[2](https://wordpress.org/support/users/scriptrunner/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/scriptrunner/replies/page/3/?output_format=md)…
[22](https://wordpress.org/support/users/scriptrunner/replies/page/22/?output_format=md)
23 [24](https://wordpress.org/support/users/scriptrunner/replies/page/24/?output_format=md)…
[33](https://wordpress.org/support/users/scriptrunner/replies/page/33/?output_format=md)
[34](https://wordpress.org/support/users/scriptrunner/replies/page/34/?output_format=md)
[35](https://wordpress.org/support/users/scriptrunner/replies/page/35/?output_format=md)
[→](https://wordpress.org/support/users/scriptrunner/replies/page/24/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [SEO, changing HTML site to WordPress](https://wordpress.org/support/topic/seo-changing-html-site-to-wordpress/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/seo-changing-html-site-to-wordpress/#post-4171951)
 * If you only have a few pages to redirect, then using Redirect in .htaccess will
   work great. If you have considerably more, and particularly if they follow a 
   pattern, then using mod_rewrite rules will make it happen in far fewer lines (
   maybe even just one or two), but there coming up with the rule isn’t always easy.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [500 server error](https://wordpress.org/support/topic/500-server-error-17/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/500-server-error-17/#post-4170362)
 * That’s an exploit/hack on WordPress and has effected your site. You’re going 
   to need to do a restore from a backup.
 * See Codex: [FAQ My site was hacked](http://codex.wordpress.org/FAQ_My_site_was_hacked)
 * [Fix for $zend_framework WordPress Hack](http://www.perfilev.com/post/52851047670/fix-for-zend-framework-wordpress-hack)
 * [$zend_framework WordPress Hacks](http://www.justbeck.com/zend_framework-wordpress-hacks/)
 * Or just Google “wordpress zend framework hack”
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [What is this code called?: %username%](https://wordpress.org/support/topic/what-is-this-code-called-username/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/what-is-this-code-called-username/#post-4171481)
 * Though I don’t believe this one is part of WordPress core, variables like %category%
   are used as a placeholder and replaced dynamically at run time with another value.(
   think of it as a template variable)
 * In the case of %category%, it’s used to generate permalinks at runtime by replacing%
   category% with the actual category name based on the category id.
 * So that allows WordPress to go from:
 * `http://example.com/?cat=17`
 * to
 * `http://localhost/test-category/`
 * by internally replacing %category% with “test-category” when the category id 
   is 17. (in my case)
 * Not sure I explained it very well. Just think of them as template variables that
   get replaced with data dynamically at runtime.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [xcache](https://wordpress.org/support/topic/xcache-1/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/xcache-1/#post-4170671)
 * I’ve often had luck using [DB Cache Reloaded Fix](http://wordpress.org/plugins/db-cache-reloaded-fix/)
   when the normal page caching plugins didn’t work as well as I liked.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Keep page title from displaying on static home page](https://wordpress.org/support/topic/keep-page-title-from-displaying-on-static-home-page/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/keep-page-title-from-displaying-on-static-home-page/#post-4171419)
 * This may vary by what theme you’re using, but testing with the default twentytwelve
   theme, I had to update `content-page.php`.
 * I changed:
 *     ```
       <h1 class="entry-title"><?php the_title(); ?></h1>
       ```
   
 * to:
 *     ```
       <?php if ( !is_front_page() ) : ?>
           <h1 class="entry-title"><?php the_title(); ?></h1>
       <?php endif; ?>
       ```
   
 * If you don’t know what file to edit, install the [What The File](http://wordpress.org/plugins/what-the-file/)
   plugin and it should tell you exactly which template to edit. It may be under“
   Template Parts.”
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Keep page title from displaying on static home page](https://wordpress.org/support/topic/keep-page-title-from-displaying-on-static-home-page/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/keep-page-title-from-displaying-on-static-home-page/#post-4171402)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [need EPP code](https://wordpress.org/support/topic/need-epp-code/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/need-epp-code/#post-4171393)
 * You’d have to get it from your current registrar.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [xcache](https://wordpress.org/support/topic/xcache-1/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/xcache-1/#post-4170665)
 * You can generally install xcache in your home directory and update php.ini to
   point to is, but not all hosts allow it (and you need shell access), while on
   the other hand, so hosts provide it as an option (I’m pretty sure DreamHost does,
   but you have to ask for it). That said, I’ve not done this (only APC, and not
   on a shared host).
 * If you’re worried about performance, don’t use a shared host and/or look at WordPress
   caching plugins and other [WordPress performance optimizations](http://codex.wordpress.org/WordPress_Optimization/WordPress_Performance).
 * Also, I’d venture to guess that this request is outside the scope of this forum…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Fatal Error Cannot after trying to Install Mobile CSS Plugin](https://wordpress.org/support/topic/fatal-error-cannot-after-trying-to-install-mobile-css-plugin/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/fatal-error-cannot-after-trying-to-install-mobile-css-plugin/#post-4170655)
 * The error message means that the Mobile_Detect class has already been declared,
   most likely in another plugin. If you have Mobile CSS activated, deactivate it
   first. The author should check if this class is already defined and/or remame
   his class.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [menus/navigation ending in a 404](https://wordpress.org/support/topic/menusnavigation-ending-in-a-404/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/menusnavigation-ending-in-a-404/#post-4170257)
 * You need to set your permalinks in
 * `Settings->Permalinks` in the admin dashboard.
 * Your site is working fine, it’s just that the links on the site are going to 
   the default links:
 * [http://moto-projectbike.com/?page_id=103](http://moto-projectbike.com/?page_id=103)
 * for example instead of:
 * [http://moto-projectbike.com/pictures-videos/](http://moto-projectbike.com/pictures-videos/)
 * From the look of the links you’d like to have, you probably need to set permalinks
   to “`Post name`.”
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Use html page as homepage instead of index.php, how?](https://wordpress.org/support/topic/use-html-page-as-homepage-instead-of-indexphp-how/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/use-html-page-as-homepage-instead-of-indexphp-how/#post-4169649)
 * I’m sure you may have your reasons for wanting to do this, but I’m going to throw
   this out there. Wouldn’t it make more sense to set WordPress to use a static 
   page for the Front Page (via Settings->Reading) and putting your html there (
   obviously with a little conversion) and then set a different page to be your 
   blog (also via Settings->Reading)?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Feed not validating AGAIN](https://wordpress.org/support/topic/feed-not-validating-again/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/feed-not-validating-again/#post-4169261)
 * The feed appears to be completely empty. I can’t help much with the info given,
   but you may start by disabling all plugins and switching to a default WordPress
   theme (twentytwelve or twentythirteen for example).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Feed not validating AGAIN](https://wordpress.org/support/topic/feed-not-validating-again/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/feed-not-validating-again/#post-4169259)
 * A quick Google found the correct domain:
 * [http://www.invitationsbydragonflydesigns.com/](http://www.invitationsbydragonflydesigns.com/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to make page visible in the menu only if staying at that page?](https://wordpress.org/support/topic/how-to-make-page-visible-in-the-menu-only-if-staying-at-that-page/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/how-to-make-page-visible-in-the-menu-only-if-staying-at-that-page/page/2/#post-4160031)
 * Awesome, glad we got that figured out!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Wont connect to the WORLDWEB site when I want to search for a plug in?????](https://wordpress.org/support/topic/wont-connect-to-the-worldweb-site-when-i-want-to-search-for-a-plug-in/)
 *  [Scriptrunner (Doug Sparling)](https://wordpress.org/support/users/scriptrunner/)
 * (@scriptrunner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/wont-connect-to-the-worldweb-site-when-i-want-to-search-for-a-plug-in/#post-4169236)
 * Are you on a host? Some hosts won’t allow outbound connections.

Viewing 15 replies - 331 through 345 (of 520 total)

[←](https://wordpress.org/support/users/scriptrunner/replies/page/22/?output_format=md)
[1](https://wordpress.org/support/users/scriptrunner/replies/?output_format=md) 
[2](https://wordpress.org/support/users/scriptrunner/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/scriptrunner/replies/page/3/?output_format=md)…
[22](https://wordpress.org/support/users/scriptrunner/replies/page/22/?output_format=md)
23 [24](https://wordpress.org/support/users/scriptrunner/replies/page/24/?output_format=md)…
[33](https://wordpress.org/support/users/scriptrunner/replies/page/33/?output_format=md)
[34](https://wordpress.org/support/users/scriptrunner/replies/page/34/?output_format=md)
[35](https://wordpress.org/support/users/scriptrunner/replies/page/35/?output_format=md)
[→](https://wordpress.org/support/users/scriptrunner/replies/page/24/?output_format=md)