Ryan Boren
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search results duplicated if in more than one category (2.1)What plugins are you using? There is a compatibility problem between WP 2.1 and certain plugins that will result in duplicate posts.
Forum: Installing WordPress
In reply to: accessing wp-admin on temporary domain?You can add the following line to your wp-config.php file:
define('RELOCATE', true);With that defined, visit wp-login.php via ~username/blah… WP will reset the “siteurl” in the database and all links should use the new address. Remove the RELOCATE line from wp-config.php when you are done. To switch the siteurl back once you setup DNS, add the RELOCATE line back in and visit wp-login.php via the public URL. Remove RELOCATE again once you are done.
Forum: Fixing WordPress
In reply to: TinyMCE More… button problemI can’t reproduce the problem. What browser are you using?
Forum: Themes and Templates
In reply to: is_home in 2.1 not workingThere is some debate over what is_home() should return if you have set a static page to be the front page.
Forum: Alpha/Beta/RC
In reply to: 2.1 RC1 – Adding QuicktagsI just reverted it. The change will be in RC2 or you can get it from svn right now.
Forum: Alpha/Beta/RC
In reply to: 2.1 RC1 – Adding QuicktagsWe now load quicktags.compressed.js instead of quicktags.js. I forgot that many people customize that file, so we might revert the compression.
Forum: Alpha/Beta/RC
In reply to: Warning: ob_start(): output handler ‘ob_gzhandler’Using php 5.2? It changes how output buffers are handled during shutdown.
Forum: Alpha/Beta/RC
In reply to: WP 2.1 RC1 – some code in my functions.php stopped working.Devs our monitoring this forum now that the RC is out. It is a beta forum, right?
sadish, post_type is indeed what you want. Check for post_type = ‘page’.
Forum: Installing WordPress
In reply to: Upgrade! WP 2.0.4 is outWe had a bad 2.0.4 package up for a few minutes. You were unlucky enough to grab the bad one. You can download the package again or grab a corrected wp-db.php.
Forum: Fixing WordPress
In reply to: How to make comments safe?WP uses kses to filter comments. Users that have the unfiltered_html capability (Editors and Administrators) are not filtered. They are considered trusted.
Forum: Plugins
In reply to: Plugin Request: Flickr-like access control for friends and familySuch a plugin is on my todo list. It’ll probably involve allowing each user to define XFN style relationships with other users. Posts and pages can then be tagged by the author as being viewable by friends, family, anyone, etc.
Forum: Fixing WordPress
In reply to: 404 after save or publish a postrdsmes, your debugging and testing was very helpful. Thanks.
Forum: Fixing WordPress
In reply to: 404 after save or publish a postThis change might help. You can either apply that diff, or download a new classes.php file here. Replace your existing wp-includes/classes.php with that one.
If you’re a subversion user, that fix and some others are available from the 2.0 branch.
Let us know if that change helps.
Forum: Fixing WordPress
In reply to: PATH_INFO and greedy regexThis will be fixed in 2.0.1.