Ryan Boren
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Upgrade Problem in RC3The usermeta error is benign and can be ignored. This is fixed in svn.
Forum: Alpha/Beta/RC
In reply to: .htaccess Blocking Real DirectoriesWP shouldn’t attempt to rewrite directories or files that exist in the filesystem. I’ll give it a look.
Forum: Alpha/Beta/RC
In reply to: Thoughts on what may cause new comments to stopUsing MySQL 5 in strict mode by chance? We had a bug with MySQL 5 and comment posting that I fixed yesterday.
Write a bug, and we’ll put it back.
Forum: Alpha/Beta/RC
In reply to: [2.0 RC1] Deleting a user doesn’t delete his usermeta dataForum: Alpha/Beta/RC
In reply to: [2.0 Beta 2 Bug] Deleting comment in moderation reduces comment countForum: Alpha/Beta/RC
In reply to: Akismet ProblemI’ve seen this caused by having the plugin installed twice. Once in plugins/ and once in plugins/akismet/?
Forum: Alpha/Beta/RC
In reply to: Permalink, / and index.phpI need some debug information. Install and activate this plugin. After activating, visit http://calcox.de/ and save the page source. Do the same for http://calcox.de/index.php. Deactivate the plugin when you’re done. Send me the source for both pages. ryan -at- boren -dot- nu
Forum: Alpha/Beta/RC
In reply to: WP 2.0 RC1 Upgrade FeedbackThe import, Akismet, and plugin problems should be fixed in the SVN repository. Please write bugs for any remaining issues so that we don’t lose track of them.
Forum: Alpha/Beta/RC
In reply to: WP 2.0 – Features?Themes should work fine unless they are doing some extreme digging in WP internals. Such themes are rare.
2.0 should run on IIS. I haven’t heard any complaints.
Forum: Alpha/Beta/RC
In reply to: Retrieve User ID in 2.0 RC1if ( current_user_can('edit_files') )Replace edit_files with the capability you are interested in querying. A list of capabilities can be found in upgrade-schema.php. If you want to see if a user has the equivalent to the old level 9 privs:
if ( current_user_can('level_9') )Each role has capabilities that map to the old user level system.
No, but I have an idea of what could cause it. I’ll look into it. I may hit you up for testing. 🙂
Forum: Alpha/Beta/RC
In reply to: Error in Beta2 when new installationOpen it against 1.6 and set the Milestone to 2.0.
Forum: Alpha/Beta/RC
In reply to: How to perform URL redirection using mod_rewrite in 2.0 betaPreferably, plugins shouldn’t write directly to .htaccess. Instead, they should write to WP’s internal rewrite structure and let WP handle it.
The Feed director plugin provides a simple example of how to do this.