Michael Bishop
Forum Replies Created
-
Forum: Installing WordPress
In reply to: server and domain changedid you change the domain in the WordPress address and site address in the options table?
If not, see the Codex – Changing Site URL
Forum: Fixing WordPress
In reply to: Previews Not Working & 500 error when postedso back to the question, have you modified your .htaccess file recently? I’ve found that 500 internal server errors with WordPress almost always go back to that.
Forum: Fixing WordPress
In reply to: Multiple DB’s – beyond the blogYou might want to look at custom post types and your own custom taxonomies
Forum: Fixing WordPress
In reply to: Disable Word CountYou can disable the script that does the word count by adding to your functions.php file in your theme:
function my_init_method() { wp_deregister_script( 'word-count' ); } add_action('init', 'my_init_method');Forum: Fixing WordPress
In reply to: Previews Not Working & 500 error when postedI’ve found that generally is related to permalinks.
Have you recently edited your .htaccess file?
Sometimes, just re-saving the permalinks will do the trick. Not sure if that’s something you’ve already tried or not.
Forum: Fixing WordPress
In reply to: Editors or authors can't set featured imageThat doesn’t sound normal, so just to confirm, do you have the latest version of WordPress installed (3.1.3 at time of writing)?
Forum: Plugins
In reply to: SVN Commit FailedForum: Plugins
In reply to: Cannot Access SVN Repository of my recently approved pluginForum: Fixing WordPress
In reply to: Database import impossible using phpmyadminI concur, make sure you are selecting the sql file, and not the export file from the WordPress Tools->Export which would be XML.
Forum: Fixing WordPress
In reply to: terminology for top menuOddly enough, I remember that theme, and those tabs are a hard coded unordered list in header.php
You would need to edit that file to add tabs.
Forum: Plugins
In reply to: Password Plugin QuestionAre you referring to administration over SSL?
Forum: Requests and Feedback
In reply to: bug?A contributor would be able to write draft posts and edit their profile.
As to the posting of comments, do you require users to be logged in to comment?
Forum: Everything else WordPress
In reply to: Commit FaledForum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with linksFor future reference, for v.4.1.1 I added that after line 368
$global_meta['blogid'] = $org_blog_id = $wpdb->blogid; // org_blog_idForum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with linkscool, sorry I didn’t get back sooner. And thanks Ron on the heads up of the rewriting, I was working off a dev version still.