Ryan Boren
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Php-cgi vs Php as an Apache moduleThe use of SCRIPT_NAME in 1.5.1 was a mistake. It’ll be gone in 1.5.1.1.
Forum: Fixing WordPress
In reply to: Trackback does not send custom url.Forum: Requests and Feedback
In reply to: Private vs. Public posts and pagesPrivate posts behaved like this once upon a time and then get broken. Now they are fixed depending on your definition of fixed. 🙂
Forum: Requests and Feedback
In reply to: Private vs. Public posts and pagesIf you are logged in, you should see your private posts. If you are not logged in, you shouldn’t see them.
Forum: Plugins
In reply to: WP doesn’t pass my own URI parametersI may be misinterpreting the question, but can’t you use
$_GET['fontsize']?Forum: Requests and Feedback
In reply to: Why not release an official 1.5.1 RSS fix?1.5.1.1 will be the next release. You can join the testers list and give feedback on the nightly builds.
You will trip over this bug if you are having database connection problems. You can simply remove line 304 of wp-db.php, which looks like this:
header( 'Content-Type: ' . get_bloginfo('html_type') . '; charset=' . get_bloginfo('charset') );With that line gone you will be able to see the real error message. Details here.
Forum: Everything else WordPress
In reply to: Private Posts not working in v1.5.1If you are logged in, you should see your own private posts.
Forum: Fixing WordPress
In reply to: daylight savings timeRead the thread.
Forum: Requests and Feedback
In reply to: Bug in wp-rss*.php, handling GMT offsetI’m with dougal, I don’t see a problem with regard to 1.5.1. We’re sending out the time in UTC, and the time seems to be correct. The patches mentioned in this thread are for 1.5, not 1.5.1.
Forum: Requests and Feedback
In reply to: 1.5.1 cvs tag missing?Forum: Fixing WordPress
In reply to: 1.5.1 prev – next links issueYou can also try using
$_SERVER['PHP_SELF']instead of$_SERVER['SCRIPT_NAME'].Forum: Fixing WordPress
In reply to: 1.5.1 prev – next links issueIn the get_pagenum_link() function, try replacing this:
$index = $_SERVER['SCRIPT_NAME'];with this:
$index = 'index.php';This will break paging in the edit posts page, but should fix paging elsewhere. This is just a workaround while I figure out how best to workaround environments where SCRIPT_NAME is populated with the PHP executable name.
Forum: Fixing WordPress
In reply to: Requested theme does not exist.You seem to be tripping over this change. I’m not sure why. I’m not seeing the problem with any of the dozens of themes I have installed for testing purposes. Please write a bug.
Forum: Requests and Feedback
In reply to: Should get_header be inside The Loop by default?The Loop is just an interface on top of the global $wp_query object, which is created before templates are loaded. If a query resolves to a single post, page, category, or author, the object for that single entity can be obtained with $wp_query->get_queried_object(). For a single post query, this will return the equivalent of $post. Or, you can use $wp_query->post.