Scriptrunner (Doug Sparling)
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: SEO, changing HTML site to WordPressIf 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
In reply to: 500 server errorThat’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
Fix for $zend_framework WordPress Hack
$zend_framework WordPress Hacks
Or just Google “wordpress zend framework hack”
Forum: Fixing WordPress
In reply to: What is this code called?: %username%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=17to
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
In reply to: xcacheI’ve often had luck using DB Cache Reloaded Fix when the normal page caching plugins didn’t work as well as I liked.
Forum: Fixing WordPress
In reply to: Keep page title from displaying on static home pageThis 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 plugin and it should tell you exactly which template to edit. It may be under “Template Parts.”
Forum: Fixing WordPress
In reply to: Keep page title from displaying on static home pageForum: Fixing WordPress
In reply to: need EPP codeYou’d have to get it from your current registrar.
Forum: Fixing WordPress
In reply to: xcacheYou 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.
Also, I’d venture to guess that this request is outside the scope of this forum…
Forum: Fixing WordPress
In reply to: Fatal Error Cannot after trying to Install Mobile CSS PluginThe 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
In reply to: menus/navigation ending in a 404You need to set your permalinks in
Settings->Permalinksin 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
for example instead of:
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
In reply to: Use html page as homepage instead of index.php, how?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
In reply to: Feed not validating AGAINThe 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
In reply to: Feed not validating AGAINA quick Google found the correct domain:
Forum: Fixing WordPress
In reply to: How to make page visible in the menu only if staying at that page?Awesome, glad we got that figured out!
Are you on a host? Some hosts won’t allow outbound connections.