4/1/2008 ↓

FAQ on WordPress 2.5 91comments

Thanks for visiting! If you're new here, you may want to subscribe to our RSS feed. This blog posts regular Wordpress news, updates of themes, plugins, ideas, hacks, quick fixes and everything about blogging, especially about Wordpress. Go ahead, subscribe to our feed! You can also receive updates from this blog via email.

[I did not write this post. It was written with great care and in great detail by MichaelH on the news section and is reproduced verbatim here. For those of you that do not know Michael's work, his work on the Codex and his help with WordPress and its documentation makes him a legend in my books. Thank you Michael!]

These questions and answers were gleaned from the wp-hackers and wp-testers e-mail lists over that last several weeks.

Q. How can I find the Post ID or Page ID?
A. If your browser shows the URL in the status bar, when you mouse over a link, you can see the ID in the as part of the URL displayed in the browser status bar. In FireFox you can show the status bar by checking the Status bar choice under View. A more complicated method to finding the ID is to use something like phpMyAdmin to look at the database table wp_posts–look down the column of post_title to find your Post or Page Title. The ID field on that row will be your Post (or Page) ID.

Q. How do I find the Category ID?
A. In Manage->Categories, place your mouse over the Category Name you are trying to find the ID for and the ‘cat_ID’ will show as part of the URL displayed in the browser status bar. In FireFox you can show the status bar by checking the Status bar choice under View. A more complicated method to finding the Category ID is to use something like phpMyAdmin to look at the database table wp_terms and find the row where name column is your Category Description. The term_id on that row will be your Category ID.

Q. How can I edit my Post slug or my Page slug?
A. The Post (or Page) slug is now displayed as the Permalink under the Title field in writing or editing a Post or Page. If you are using the “Default” Peramlink Settings you will not see and can’t edit the Permalink. Only if you are using a ‘pretty Permalink’ (e.g. Month and name) in Settings->Permalinks will the Permalink be available for edit. When creating a new Post or Page, the Permalink field won’t show up until you complete the Title.

Q. Where are my Post Categories and Tags when writing a Post?
A. Scroll down below the Post content box.

Q. How do I rearrange the order Advanced Options boxes like Custom Fields and Excerpt?
A. This is no longer possible.

Q. I don’t see a link to edit a user’s name.
A. In the table of Users, click on the name (represented as a link), to edit that user’s information.

Q. What happened to my Import Links ability?
A. Export Links is displayed under the Related section on the Write->Link screen

Q. Where’s the menu tab to access the Dashboard?
A. The link to the Dashboard is in the dark border at the top left of the screen.

Q. What happened to my child categories? I had the Category Ford both as a Child of New Cars, and as a Child of Old Car, but I can’t do that any longer?
A. Duplicate Category (and Tag) names are not longer allowed.

Q. I can’t upload certain file types and get message “File type does not meet security guidelines. Try another”
A. Unknown file extensions are ‘blocked from uploading’. New extensions and their icons can be added via changes to the functions wp_check_filetype and wp_ext2type in wp-includes/functions.php.

Q. How can I change that red banner in the Dashboard?
A. Change to the ‘Classic’ Admin Color Schemes in Users->Your Profile.

Q. What happened to my Options choices?
A. Options are now called Settings and that menu tab is to the right on your menu next to Plugins and Users.

Q. How do I edit a Category Description?
A. Under Manage->Categories, click on the Category Name you wish to edit.

Q. How do I edit a Comment?
A. Under Comments, click on the name of the comment author and then you will be placed in ‘Edit Comment’ mode.

Q. Where is the WordPress Bookmarklet?
A. It’s gone for now but will likely be available in Version 2.6 but see Dion Hulce’s suggestion in the Forums.

Q. When in the Media Library, what is this error — Fatal error: Call to undefined function: wp_get_attachment_image() in /home/public_html/wp-includes/post-template.php on line 384
A. This is usually caused by a PHP file not being correctly uploaded. Make sure wp-includes/media.php and wp-settings.php are intact (reupload them).

Q. When trying to upload media files I get the message “Are you sure you want to do that?” with a link telling me to try again. Clicking “Please try again” simply reloads the dashboard into the frame.
A. You may need to disable your plugins one-by-one to find the ‘problem’ plugin. Some older plugins, such as Ryan Duff’s old WP-Contact plugin, have been reported to cause this problem, so check under the Plugins tab to see if your Plugins need updating.

Q. Has the option to enable/disable Gzip compression been removed from 2.5?
A Yes, the option is gone. WordPress now leaves compression as a decision for the server.

Q. Why can’t I add media in Manage->Media Library?
A. This was planned for 2.5 but didn’t make it into code so this will be included in a future release.

Q. How do I add links to my Blogroll?
A. A new menu choice, Write->Link, allows creation of new Links. In Manage->Links, there is an “add new” link to the right of the Manage Links heading. Also remember the new Manage->Link Categories to add and maintain Link Categories.

Q. What happened to the Post Timestamp box? How do I change the Post Timestamp?
A. In Write->Post, in the Publish Status area, click on the Edit button to the right of Publish immediately. When editing a Post, there is a similar edit button in the Publish Status area next to the Published on date and time.

Q. My screen is using 1280×960 pixels and I notice that admin screens are left aligned, not centered or stretched 100%.
A. This is the intended design. Viper007bond has Remove Max Width Plugin to change this.

Q. The collation set in “wp-config.php” (DB_COLLATE) is not being used in searches.
A. This will be likely be fixed in 2.5.1 but see this thread at wp-testers for a suggested fix.

Q. I get a “403 Forbidden” error when uploading files. I am also using the Bad Behavior plugin.
A. May need to delete the “Shockwave Flash” from the Bad Behavior blacklist file. See Rick Beckman’s post for a detailed description.

Q. I just tried to upload several media file and my browser crashed when it got to the “Crunching” part.
A. It is possible your system doesn’t support the Flash uploader or needs an upgrade to your Flash Player. Dion Hulse also wrote the the No Flash Uploader plugin to disable the Flash uploader.

Q. I can’t edit the Post slug/permalink and I’m sure I’m using pretty permalinks
A. To help debug the problem, answer these questions. What is your permalink structure? Can you provide the permalink for a post that does not show the Permalink field in the editor? Do you get any JS errors in the console? If you have plugins activated, does the problem persist if they are deactivated?

Q. The Change button (beside the Remove button) in Design->Widgets isn’t working. When I click change (beside remove button) it doesn’t save the changes to the widget.
A. Clicking Change doesn’t actually do a save and reload. You have to click “Save Changes” at the bottom to make the changes stick.

Q. In older versions, below widgets we had the option to select how many ‘Text’ widgets we want to use, but I don’t see that in 2.5.
A. The option is no longer needed. Widgets that allow multiple instances (e.g. Text widget) can be added as many times as you like by just clicking on the Add button. Remember to “Save Changes” when done adding the widgets.

Q. Can I revert from Version 2.5 to Version 2.3.3?
A. The best way is to restore your 2.3.3 database and files. If that is not possible, then any user that accessed the 2.5 blog or was added in 2.5 would need the MD5 password reset in the user table.

Q. I have several production blogs using Version 2.3.3 and I just upgraded to Version 2.5 on one of those blog. All the blogs share a common user table for the user names and passwords, but when I login to the Version 2.5 blog with a user, why can’t I use that same user to login to the 2.3.3 blogs.
A. Version 2.5 has enhance the password authentication so the passwords created/used for a 2.5 blog will not work on a 2.3.3 blog. Ryan wrote MD5 Password Hashes plugin to use the old password hashing (like what is used in Version 2.3.3) in a Version 2.5 blog.

Q. How do I add a youtube video to a 2.5 Post?
A. In the HTML mode, paste the youtube URL (youtube tells you this) into the post. In the Visual mode, paste the youtube URL into the popup activated when you click on the “Insert/edit embedded media” icon on the 2nd toolbar row.

In addition to these questions and the provided answers, if you have any new ones that you would like to add, please leave us a comment and we will add them to the list.

3/31/2008 ↓

Phenomenal WordCamp Dallas 2008 6comments

Author: Mark Ghosh Category: Blogging News, WordPress

So we had a really good time and wished that all of you were there. The presentations were all top notch and audience participation was very good. In his keynote Matt mentioned that attendees would get the most from this conference if they mingled and connected with each other as much as they paid attention to the people up on stage and I noticed a lot of mingling going on. :) It was wonderful to finally meet a whole bunch of people. I have all the pictures that I took (I should have taken the D70) on my Flickr account with the agreed upon WordCampDallas2008 tag. If you have any questions, have any media from the event that you would like to share or have any questions for any of the events/presenters, please let us know.

Special thanks to Charles for organizing the event and to John for being a terrific host.

3/26/2008 ↓

The Twenty-Five Most Valuable Blogs 11comments

The Twenty-Five Most Valuable Blogs: At first I thought this was linkbait but a read through the article and the other content on the blog changed my mind. There is some analysis of each blog/blogging company with details about the company, guesses on revenues and page views, future prospects, operating margins and employees, advertising statistics and finally a comment on property valuation as multiples of revenue or multiples of operating profits. From my quick glance I would say that the revenue numbers are not perfectly on the money but since these figures are almost never publicly discussed (except on make money online blogs) I guess there is some error built into the valuation. Daniel’s excellent Daily Blog Tips($1.8M) makes it into the list at number 18. The Gawker properties tops the list at a value of $150 million and other big names include TechCrunch($36M), Mashable($10M), GigaOm($8.4M) and RWW($5M).

A few things surprised me about the entry. I try to keep a very short list of reads and trim and add to them all the time. The fact that the top twenty blogs were on my reading list was a strange surprise. Another surprise was that there was not a single link on the original linked post. (Not one link. I wonder if that was done by choice since their other articles contain links.) I was also surprised by the detailed reasoning for the valuations and the stream of numbers that were presented. Considering that the blog in question is on Wall Street and finance, I should not be surprised but I am not used to seeing this level of financial proficiency on blog valuations.

All in all it was a pleasure to read and compare.

3/18/2008 ↓

WordPress 2.5 RC1 Released 34comments

Author: Mark Ghosh Category: Blogging News, WordPress

WordPress Development Blog: 2.5 Sneak Peek  I love the staccato description Matt uses to start the post: A customizable dashboard, multi-file upload, built-in galleries, one-click plugin upgrades, tag management, built-in Gravatars, full text feeds, and faster load times sound interesting? The first Release Candidate for WordPress 2.5 is out for those that have been waiting patiently to try out the new features. Matt details out the updates and the new features of 2.5 on the development blog and the good news is spreading in the WordPress circles.

In addition to many underlying changes and updates to the code, the administration back end of WordPress gets a major rework in this version. The release candidate is not for everyone and can be downloaded for testing and bug searching.

If you make frequent backups and you’re interested in helping us out with development by testing the new code, download and install Release Candidate 1 of WordPress 2.5, and join our testers mailing list to report any bugs you find in the code.

We’re also interested in feedback on the new interface and would love to hear your opinions, thoughts, rants, raves, and anything in between. We created a special email address just for the occasion: 2.5-feedback@wordpress.org.

3/10/2008 ↓

WordPress 2.5 Delayed a Week 89comments

Author: Mark Ghosh Category: Blogging News, WordPress

WordPress 2.5 Delayed a Week: According to this milestone in the WordPress Trac, 2.5 is delayed by a week or even more. There is a lot of work being done on styling, bug fixes and open tickets and even though the milestone is delayed to 3/17/08, a well polished release will be more appreciated and will be better for the community than a rush to release.

In the meantime, Lorelle is tapping her feet waiting for the new release and Six Apart is trying to make waves in the wake of WordPress 2.5. Ozh is happy to have the chance to fix some more plugins, Tadd provides some sage advice to people complaining about the wait. I am very excited about this release and what it brings to the table and will be upgrading as soon as I can.

While we are on the subject, in reading through the comments left on Jeff’s post yesterday, we hope we did not cause any added confusion to the impending release. WordPress has gotten more complex since the 1.2 days but that is expected of code reaching a higher level of maturity. However, along with the complexity, WordPress has also gained much anticipated features, has been keeping up and in many cases, leading publishing technology and has become a beacon of success in the blogging and Open Source communities. A lot of the technology that is in 2.5 never existed back when WordPress was forked out of b2 and much of the code and many of the advances have come about due to the hard work of the developers, contributors and supporters of WordPress. Hundreds of developers, contributors and well wishers help shape WordPress and the community is in a very large part responsible for the wonderful peice of software it is today.

The WordPress developers have a feel for their code and they will know when they are ready to put it into production/release. This model creates some confusion because of the nature of the development cycle, but the delaying of the release date and the tweaking and fixing till a comfort level is reached, is not a bad thing at all. On the contrary, if followed with due diligence and with care, this development model can help put together some really good code and it works well in the Open Source (or any shared development) environment. Strict deadlines are more detrimental than a constant update model which has been proven to be more productive and easier to manage.

I have observed and participated in WordPress development from close and afar for many years and though the development cycle might seem disconcerting, I can safely tell you that this effort will bear delicious fruit for sure.

Thanks for being a user and a supporter of WordPress. Here is to a successful WordPress 2.5 in the coming weeks!

2/19/2008 ↓

FeedBurner: No more all time feed stats 15comments

Author: Mark Ghosh Category: Blogging News

FeedBurner Quietly Kills All-Time RSS Feed Stats: I know I have looked at my all time feed stats in the past but since it would take forever to generate and timed out the last time I tried it, I am not sure this is a big loss for me. However, worthy of note is the fact that FeedBurner has languished quite a bit since being purchased by Google and they seem to have rested their laurels after making the Pro features free for everyone. In all honesty, I am quite satisfied with their (now free) service, their uptime record (knock on wood) and their feature set, so I am not as peeved about their lack of updates or lack of new features.

[EDIT] FeedBurner claims the lack of all time feed stats were unintentional and things are or should be back to normal soon. Now we might never know what really happened and whether these apologies are a cause of a knee jerk reaction to all the negative publicity or a real bug. Thanks to the heads up in the comments.

Extremely Easy Podcasting with Cinch 5comments

Cinch is a very easy way for a blogger to create interesting Podcasts with no equipment of any kind except for a phone. Follow the instructions below (or as on their website) to test it out quickly for yourself.

  • Call (646) 200-0000 from any phone (You have to know the number/callerID of this phone, Skype would probably not work)
  • Thats it! BlogTalkRadio puts out a podcast feed with an MP3 at a pre-defined URI. Just visit http://cinch.blogtalkradio.com/number_you_called_from   (replace number_you_called_from with your phone number)
  • Use some sort of a plugin for WordPress to import the said feed into your blog and you be podcastin’!

The only major drawback I see is the phone number at the end of the RSS URI. Since this would probably be exposed over the web, if I were concerned about my phone number, this method would not work for me. However if you import the RSS feed (and import the MP3 generated), you should be fine.
Thanks to a post from Dave Winer.

2/18/2008 ↓

WordPress.com as OpenCourseWare 12comments

WordPress.com as OpenCourseWare: Link to and discussion of using WordPress.com and consequently WordPress, as a platform for low cost, highly searchable and taggable OpenCourseWare type applications. The example blog is about blogs, wikis and such and might be an interesting read by itself. I have personally used the various iteration of educational CMSs such as WebBoard and WebCT and they have left enough to be desired that I have come running back to my beloved WordPress and bbPress to setup private blogs and forums for use by my classmates. Thanksgoes out to the work done by various educators around the world who are making good use of WordPress and thanks to Stephen for the news.

2/4/2008 ↓

Utterz: Post from anywhere 7comments

Utterz: is a Web-based service that posts to all of the above, from anywhere, even by phone, whether it’s text, photos, video, voice, or a mash-up of all the above. Same with PCs. You can just e-mail or SMS the posts to Utterz, or make a phone call to leave a voice record. After the content is received, it’s forwarded to the blog or blogs you specify in about 10 minutes. This online tools brings us one step closer to having a personal Twitter. If you setup your own WordPress blog (hosted or on WordPress.com) and use the Prologue theme (new zipped release by popular request, thanks Joseph Scott), you can have many of the flexible posting features of Twitter on your own platform. Since Utterz is a remotely hosted service, I am not sure the benefit of a “personal” Twitter are realized quite as well, but it is definitely a start and provides much broader flexibility and control than Twitter. I am quite hooked on Prologue and have started to use it on wltc.net. I have left registration open for authors on wltc.net for those that are interested (probably a bad idea, time will tell).

2/1/2008 ↓

  • Instapaper: Easy, Personal Bookmarking

    Instapaper: I came across this service via Techeme and was impressed with the ease of use. Although I barely ever have to “read something later”, one could use Instapaper to quickly and easily bookmark sites, blogs or news items for later reading which could then be cleaned up. Signup is incredibly easy and they provide you with a bookmarket to use. Would you use something like Instapaper? I wonder how they would monetize it? (13)

1/31/2008 ↓

Prologue Undergoes Updates 4comments

Author: Jeff Chandler Category: Blogging News, WordPress

Prologue, the WordPress.com theme that mimics Twitter like functionality has undergone a series of updates. The updates are as follows:

  • The front page now shows a stream of recent updates instead of one update per user
  • Pages now have their own template and look much better
  • Avatars are only shown once for sequential posts by the same author (front page and tag pages)
  • Post titles are no longer empty, they are generated based on the beginning of each post
  • Works out of the box for WordPress.org 2.3.2

Probably the biggest update is the fact that Prologue now works out of the box for WordPress 2.3.2. It didn’t work before because of a function that was used within the author template which wasn’t available in 2.3.2. Because of these updates, Prologue which is now at version 1.2, will have the changes reflected in Subversion (for self hosted WordPress.org blogs) and is available through the Theme selector in WordPress.com

1/30/2008 ↓

The Life Cycle of a Blog Post 11comments

The Life Cycle of a Blog Post, From Servers to Spiders to Suits — to You:

You compose a new post. You click Publish and lean back to admire your work. Imperceptibly and all but instantaneously, your post slips into a vast and recursive network of software agents, where it is crawled, indexed, mined, scraped, republished, and propagated throughout the Web. Within minutes, if you’ve written about a timely and noteworthy topic, a small army of bots will get the word out to anyone remotely interested, from fellow bloggers to corporate marketers.

I could not have described this post (on Wired) better. It is a flash animation that follows a blog post as it makes its way through the Interweb. If you ever wondered how all these disparate peices fit into the blogosphere, this is the food for thought.

1/23/2008 ↓

Fantastico 2.10.4 Released 12comments

Author: Jeff Chandler Category: Blogging News, WordPress

Netenberg has released version 2.10.4 r12 of their popular one click install package called Fantastico De Luxe. Fantastico De Luxe is the most widely used application installer throughout the webhosting industry. One of the reasons why it is so popular is that it gives users the ability to skip the process of uploading files and configuring databases and instead, replaces the process with a much simpler one step process.

Many WordPress installations have been performed through Fantastico. However, there are a few disadvantages when installing WordPress in this fashion. First, when WordPress releases an update, the folks at Netenberg have to go through the update and add it into the new version of Fantastico. The amount of time this takes can vary, but I believe if the release contains significant security patches, the Netenberg team tries their best to get the update out as soon as possible. Another disadvantage is the time it takes from when the new version of Fastastico is released to when your web host upgrades. Not all web hosts are on the same time frame. But I know that Fantastico does have a central server that dedicated webhosting servers can hook up to in order to pull down the latest upgrades.

At any rate, the new release of Fantastico contains an update script to take your WordPress install from 2.3.1 to 2.3.2. So be sure to check out your own Cpanel to see if the upgrade is available.

1/22/2008 ↓

WordCamp Dallas 14comments

Author: Jeff Chandler Category: Blogging News, WordPress

As January inches to a close, WordCamp Dallas is approaching from right around the corner. WordCamp Dallas is managed by Charles Stricklin who is known as being the host of the popular podcast, (The WordPress Podcast). The event will begin on Saturday, March 29th, 2008 from 9:30 AM-5:00 PM and on Sunday, March 30th, 2008 from 9:30 AM-4:00PM. WordCamp Dallas will be held at the Frisco City Hall which is located at 6101 Frisco Square Blvd Frisco, Texas 75034.

At the time of this writing, there were 261 tickets remaining. Each ticket costs $20.00 and nets you the following:

  • coffee and munchies both mornings
  • lunch both days
  • t-shirts to take home (or to wear one or both days!)

So far, the list of confirmed speakers are as follows:

Thats right folks, your very own Mark Ghosh will be in attendance as a speaker. I actually purchased my admission ticket the other night. Now all I have to do is work out the logistics. I’m looking forward to meeting Mark in person for the first time and it will be interesting to see all of these people who make WordPress what it is, outside of the blogosphere. I’m also looking forward to meeting Ronald Huereca as he will also be in attendance. You can see a full list of attendees that have registered thus far by clicking here. If you plan on going, please register as soon as possible so Charles has a good head count as to the amount of people that will be attending the event.

 

1/19/2008 ↓

1/17/2008 ↓

WordPress/Automattic Publisher Blog 9comments

Author: Mark Ghosh Category: Blogging News, WordPress

WordPress Publisher Blog is (going to be) written by various team members at Automattic and their goal is to help all publishers get the most out of WordPress. They will cover features that are often overlooked, highlight plugins that extend WordPress functionality and showcase interesting sites being built with WordPress. They are looking for publishers working on innovative projects using WordPress and would like to field questions from users. From the comment that Raanan left on PressedWords, it would appear that they want to focus on large WordPress installations that are doing lots of custom work and help publishers find the proper resources.

A definite daily read!

1/14/2008 ↓

  • CoverItlive.com: Liveblog any event

    CoverItlive.com is a free (for now) service that allows you to live blog events and publish items directly to any publishing platform. Now this is pretty commonplace and can easily be done with WordPress (and a few extra plugins) but CoverItLive makes it easier and quicker to embed a variety of media and interact with your readers in real time. There is also an instant replay function, which as inane as that might be, might become handy at some point. Now I barely ever liveblog anything, but I can see a lot of use for this at conferences. Have you liveblogged anything before? (10)

1/11/2008 ↓

  • NewsGator Makes Client Apps Free

    NewsGator Makes Client Apps Free: NetNewsWire 3.1, FeedDemon 2.6, and NewsGator Go! for Windows Mobile 2.0. and NewsGator Inbox 3.0 are now free to download and use. FeedDemon is a desktop news aggregator that I helped beta test and I have used off and on and Bradbury is a tremendous developer. If you were looking for a powerful desktop aggregator that is easy to use, FeedDemon might be the ticket. (6)

1/4/2008 ↓

Best Blog Typography - Performancing Awards 2007 7comments

Author: Mark Ghosh Category: Blogging News

Best Blog Typography - Performancing Awards 2007 Reader’s Choice Poll WeblogToolsCollection.com has been chosen to be one of the contenders for the Best Blog Typography Award from Performancing.com. The blog with the most number of votes by January 10, 2007 wins the 2007 Reader’s Choice award. They define typography as “design and arrangement of fonts”. We are in some tremendous company (ALA, Freeland Switch etc.), but please vote for us if you feel that we deserve the honor. Check out and vote for contestants in the rest of Performancing Awards. Thanks Performancing

[EDIT] How could I forget the original designer? Thanks João

2.4 Skipped 2.5 Is Next 92comments

Author: Jeff Chandler Category: Blogging News, WordPress

As discussed in the developer mailing list, the next release of WordPress will be in March instead of January because of the holidays and the amount of changes that will take place in the codebase as well as the admin section. The decision was made to consider 2.4 a skipped December release and move straight on to 2.5. The reasons for the change in the schedule include some good things cooking in the oven and the developers do not want this to become a rushed release.

So to sum things up. There will be no 2.4. Instead, we will see 2.5 which is scheduled for release in March. Various official docs and roadmaps will be updated in due course.

Translate

Translate to German Translate to Spanish Translate to French Translate to Italian Translate to Portuguese Translate to Japanese Translate to Korean Translate to Russian Translate to Chinese

Latest Videos

Latest WordPress Jobs

S2