davidmeade
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Feed showing summary despite setting set to show full article …I may be on to something … I think my htaccess was somehow forcing everyone to the RSS .9 version ??
Forum: Fixing WordPress
In reply to: Feed showing summary despite setting set to show full article …Thank you for the reply (and sorry for the lag in response).
Yes, I have disabled all plugins and moved to the default theme, but it’s still not showing the entire post.
Forum: Plugins
In reply to: [Plugin: Auto XFN-ify] Add “microformat” and “microformats” tagGreat idea! This has been completed. Thank you.
Forum: Plugins
In reply to: [Plugin: Auto XFN-ify] Can’t disable iconsFixed in version 1.2. Thanks for the help.
Forum: Plugins
In reply to: [Plugin: Auto XFN-ify] Doesn’t work if link has an IDFixed in version 1.2. Thanks for the help.
Forum: Plugins
In reply to: Fatal Error / Parse error in Yaris.php when WP-OpenID activatedI tried blueyed’s fix, and I got the plugin to activate, but it doesn’t actually work ??
Anyone know how to get a php4 friendly install going?
Forum: Fixing WordPress
In reply to: Category Links not workingI’ve tried it with many different themes and its not working with any of them.
The posts are members of both the category and the parent category. They will show up in a listing of the parent category, but not of the child.
:-((
Forum: Fixing WordPress
In reply to: Permalink writing in .htaccess causes 403 errorI should also note that I’ve just realized it SEEMS to be that only categories that contain the string ‘blog’ are failing (such as ‘blog’, ‘audio blog’, ‘video blog’, etc). They get 404s. but categories that do not contain the string blog seem to work ok.
Also the .htaccess file never gets changed by wordpress…should it? WordPress seems to tack on some blank lines, but it never changes the content above.
Forum: Fixing WordPress
In reply to: Can’t update permalink structureI dunno, I have a fresh install of 2.0 and the permalink/category-based-url thing isn’t working … and I have no plugins activated.
I have WP2.0 installed to /blog/
When I have the category based url set to ‘tags’ such that a link should be https://www.myserver.com/blog/tags/category …. only categories that do not contain the string ‘blog’ seem to work … all others get a 404.Also the .htaccess file never changes … some blank lines get appended when ever wordpress would likely be altering it, but the file remains always with just:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php
</IfModule># END WordPress
???
Forum: Fixing WordPress
In reply to: Permalink writing in .htaccess causes 403 errorThat’s exactly that I have in mine and I get 404 errors if I use anything but the default structure, and category based urls dont work at all.
:-((
Forum: Alpha/Beta/RC
In reply to: Import via RSS in 2.0Thanks I’ve added it to the trac system.
Forum: Fixing WordPress
In reply to: Enclosures Not Being CreatedI was having a problem like this where my files were hosted on a server that gave me a permalink which in turn issued a 302 redirect to the actual media file.
I just wrote up a little modifcation of the code to allow word press to check the file behind a redirect. I tested it and it works with Libsyn …
To allow this, you need to make 2 small changes to the wp-includes/functions.php file.
FIND:
for ( $i = 0; $i < $count; $i++) {
$key = strtolower($matches[1][$i]);
$headers["$key"] = $matches[2][$i];
}
(the above should be around line line 818)AFTER ADD:
$headers['status_code'] = substr($response,0,strpos( $response, "\r\n", 0));
FIND:
if ( $headers = wp_get_http_headers( $url) ) {
(the above should be around line 783)AFTER ADD:
if ($headers['status_code'] == 'HTTP/1.1 302 Found' )
{
$headers = wp_get_http_headers($headers['location']);
}