Ryan Boren
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post IDs SkippingIDs are incremented whenever a post, page, or attachment is created. If you’ve created pages, they will get an ID and create gaps between posts. If you save a draft post, it will also take an ID. If you then delete that draft, you don’t get that ID back. The ID is strictly incrementing.
Forum: Fixing WordPress
In reply to: WordPress ignoring permalink structureMarc, do you have any other plugins that change rewrite rules? WP doesn’t write rules like that by default or with my plugin.
Forum: Installing WordPress
In reply to: Blank page when updating to 2.0Hmmm, the cache flusher requires some compatibility functions for PHP versions older then 4.3. Maybe that code is broken. Is the server Windows?
Forum: Requests and Feedback
In reply to: WordPress 2.0 XMLRPC issue….Yes, it’s the same problem. I’ll try to make a replacement xmlrpc.php available that you can drop in over your current one.
Forum: Installing WordPress
In reply to: Blank page when updating to 2.0BTW, for those seeing blank pages during/after upgrade, I have some questions. What version of php are you using? Do you have a wp-content/cache/ directory? What are the file permissions on your wp-content/ directory?
Forum: Fixing WordPress
In reply to: How do I upload a photo?You need to change the permissions for the wp-content directory so that it can be written to.
Forum: Installing WordPress
In reply to: Blank page when updating to 2.0You can leave 3382 in. It’s in the WP repository and will be part of the next release.
Forum: Installing WordPress
In reply to: Blank page when updating to 2.0I have no idea why that happens with the cache. I’m investigating. You don’t need the cache, so turn it off and forget about it.
Forum: Fixing WordPress
In reply to: Login doesn’t stickIf using Firefox, make sure it’s not overriding the expiration.
Got to Edit->Preferences in Firefox. Click on “Privacy”. Go down to “Cookies”. “Keep Cookies:” should say “until they expire”.
If that is set correctly, click “View Cookies”. Scroll down until you see the name of your site. Look for a cookie named “wordpresspass_*” where * is a bunch of hex digits. Click on that cookie. The “Expires” field should be set to a date about a year from now.
Forum: Fixing WordPress
In reply to: making admin post/page writing right-to-left oriented?If no one chimes in here, send an email to the i18n list. I think some teams have RTL in the WYSIWYG editor working.
Forum: Fixing WordPress
In reply to: WordPress ignoring permalink structureIn that case, WP isn’t even being run. The server is issuing the 404, not WP. Is this with htaccess? Try this plugin that reverts back to the long-form rewrite rules. Activate the plugin, visit Options->Permalink to update .htaccess, and then visit a page. Any better?
Forum: Requests and Feedback
In reply to: WordPress 2.0 XMLRPC issue….I didn’t notice that he pointed to an older version of xmlrpc.php. That version will not work as is because it has the obsolete check for use_fileupload. Commenting out that check is fine.
Forum: Installing WordPress
In reply to: Blank page when updating to 2.0Curious. Does disabling the cache make a difference? Look for the following in wp-settings.php.
// For now, disable persistent caching by default. To enable, comment out
// the following line.
//define('DISABLE_CACHE', true);Change that last line to:
define('DISABLE_CACHE', true);Any difference?
Forum: Fixing WordPress
In reply to: WordPress ignoring permalink structureTo help us debug, download, install, and activate the Dump Env plugin. Visit a page that is giving a 404. Save the page source for that page. Forward the page source to ryan at boren dot nu. Deactivate the plugin when finished.
Forum: Requests and Feedback
In reply to: WordPress 2.0 XMLRPC issue….You have to be an Editor or Administrator to upload files. Authors can’t upload files. You can promote the Author to an Editor or use the Role Manager Plugin to give Authors the ‘upload_files’ capability.