ejm
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Upgrading from Legacy 2.0.11 to 2.8.xAUGH!!!!
What a shame that I didn’t see this post http://wordpress.org/support/topic/292715 yesterday! I have just upgraded from 2.0.11 to 2.8.4. In one fell swoop. Mostly it went well. Just a few glitches that had to be ironed out and I thought I was back on track.
After wandering around in these forums to find out how to get rid of the sudden appearance of random Âs throughout my recently upgraded wordpress (from the legacy 2.0.11 to 2.8.4), it looks like figaro’s assessment at http://wordpress.org/support/topic/235662 is correct. And perhaps songdogtech’s advice here http://wordpress.org/support/topic/310158 as well.
I have several different character sets in the wordpress database. I have stared at figaro’s post and at the wordpress codex as well.
http://codex.wordpress.org/Converting_Database_Character_Sets
Why on earth is there not a big huge red banner on the wordpress “upgrading from earlier installations” guide alerting people to this problem with the character sets? And a note that “links” are going to be changed into “bookmarks” AND renumbered?? And a strong recommendation to upgrade gradually?
Forum: Fixing WordPress
In reply to: Godaddy free hosting – Dashboard / Admin brokenHow exactly are you modifying the script, Stefano?
Forum: Fixing WordPress
In reply to: adding just one link category to sidebarExcuse me for replying to myself.
Further scouring these forums and google, I found the answer here
http://wordpress.org/support/topic/115423?replies=6in 2.1 the post categories and link categories are merged in one single categories table, so they get renumbered…
Wow. I would never have guessed this!
It turns out that this is the coding I should be using now in order to show only the links in the category now numbered 52. I thought I’d post the answer here too just in case there are others who have waited as long as I to upgrade from the legacy version.
<?php wp_list_bookmarks('category=52'); ?>Forum: Fixing WordPress
In reply to: how to retrieve pingbacks deleted by spam karmaI have started a new thread WITHOUT using “Spam Karma” in the heading in hopes of receiving a reply: http://wordpress.org/support/topic/277579
Forum administrators, can you please lock this particular thread from further replies. Thank you.
Forum: Fixing WordPress
In reply to: BIG issue with redirectingPerhaps the WP-CMS Post Control plugin will help.
AND/OR you might try disabling the automatic redirect on the dashboard. I was being sent to a blank page by the wordpress automatic redirect when logging in. I don’t know if this is related or not but it might be worth a shot. Here’s how to do this.
1. First, make a copy of wp-admin/index.php and set it aside in a backup folder on your desktop. Now open the actual wp-admin/index.php in a text editor.
2. Find wp_enqueue_script( ‘dashboard’ ); and “remove” the line by prefacing it with two slash marks:
// wp_enqueue_script( 'dashboard' );
3. Save the file and upload it via ASCII to your wp-admin folder.As far as I can tell, the wordpress works in every other way.
Forum: Installing WordPress
In reply to: Why upgradeThank you. The official WordPress Blog has the information I was seeking summarized. It’s too bad that a link to this blog entry is not included on the latest stable download page at http://wordpress.org/download/
http://wordpress.org/development/2009/02/wordpress-271/
The link to the list of fixed tickets on the wordpress blog is particularly useful.
Forum: Installing WordPress
In reply to: Why upgradeIs there a page that lists the changes made between 2.7 and 2.7.1? It would be nice to know if the changes are cosmetic or security fixes.
Forum: Fixing WordPress
In reply to: how to disable or alter auto-update?Thank you, mohanarun. But I have installed the plugin; I ran into major problems when I tried to disable autosave manually on a wordpress hosted on a server that has several aspects of php disabled.
Forum: Fixing WordPress
In reply to: “Comments Off”For people who have some posts that allow comments and some that do not, here’s how to change “Comments Off”:
Line 720 of wp-includes/comment-template.php has the words ‘Comments Off’ as the value of the variable $none (in the comments_popup_link function)
wordpress codex: FAQ working with wordpress
To completely remove “comments off”, open wp-icludes/comment-template.php in a text editor (notepad).
look for:
function comments_popup_link( $zero = 'No Comments', $one = '1 Comment', $more = '% Comments', $css_class = '', $none = 'Comments Off' )Change it to:
//change $none = 'Comments Off' to $none = '' function comments_popup_link( $zero = 'No Comments', $one = '1 Comment', $more = '% Comments', $css_class = '', $none = '' )This will make it so that nothing at all appears on posts that have comments disabled. For posts that have comments enabled, the usual message can still appear.
Forum: Fixing WordPress
In reply to: how to disable or alter auto-update?I agree that the plugin might well be the best solution. I will definitely take that under advisement. Thank you, GSB.
Forum: Fixing WordPress
In reply to: how to disable or alter auto-update?I just discovered that it’s also necessary to place
//beforewp_enqueue_script('autosave');in wp-admin/page.php and wp-admin/page-new.phpForum: Fixing WordPress
In reply to: how to disable or alter auto-update?Thank you, all. This is great. Disabling the auto-save is essentially what I wanted to do in the first place. Your fix has done the trick, Shane.
Forum: Fixing WordPress
In reply to: RSS Feed Page Not FoundIt’s possible that your plugin(s) are conflicting. I just changed permalink settings from the default to “Month and name” and suddenly I too was getting 404 page when trying to access the rssfeed. Try putting the permalink setting back to the default:
http://yoursite/wordpress/?p=123It might not look pretty but it seems to get rid of the 404 page for the feed. It’s a better alternative than having to eliminate a wanted and used plugin.
ejm, WP2.7
Forum: Fixing WordPress
In reply to: 2.7 problems toggling between HTML/VisualI have once again completely re-uploaded the js folder in wp-includes and can now toggle between visual and HTML.
The whole problem was due to an error I made in uploading the updated version of the wp-includes folder (It’s pretty remarkable that the blog worked at all, considering the number of files that were missing!)
I am somewhat embarrassed to admit that the problem is simply user error. But very relieved that things are now working correctly. No need to disable any plugins….
-E Morris
(In my search for the solution, I did come across the rather useful plugin “WP-Tuner” and ascertained that there is nothing wrong with my custom theme. Yay.)
Forum: Fixing WordPress
In reply to: cannot edit publishing status, visibility, timeI have re-uploaded wp-includes folder and can now edit publishing status, visibility, time AND toggle between visual and HTML.
The whole problem was due to an error I made in uploading the updated version of the wp-includes folder (It’s pretty remarkable that the blog worked at all, considering the number of files that were missing!)
I am somewhat embarrassed to admit that the problem is simply user error. But very relieved that things are now working correctly.