scip
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feedFinally this fixed the issue. To make it clear: Technoratibot accessed the url “/blog”. Because my main website is driven by a wiki (PodWiki in fact), this url triggered the wiki engine.
Since I changed the rewriting so that it adds the trailing slash, the Bot now still accesses the url “/blog/” but it seems to fetch the FEED urls from the META tags and, afterwards fetches the feeds correctly:
209.237.230.104 - - [29/Jun/2005:16:08:43 +0200] "GET /blog/ HTTP/1.0" 200 11802 "-" "Technoratibot/0.7"
209.237.230.104 - - [29/Jun/2005:16:08:45 +0200] "GET /blog/feed/ HTTP/1.0" 200 6932 "-" "Technoratibot/0.7"
209.237.230.104 - - [29/Jun/2005:16:08:50 +0200] "GET /blog/feed/rss/ HTTP/1.0" 200 2421 "-" "Technoratibot/0.7"
209.237.230.104 - - [29/Jun/2005:16:08:51 +0200] "GET /blog/feed/atom/ HTTP/1.0" 200 6894 "-" "Technoratibot/0.7"
– scip
Forum: Installing WordPress
In reply to: www links–
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feedI reconfigured the url settings and added trailing slashes. However, Technoratibot is still accessing the url without trailing slash (which didn’t work in my case), today I modified the apache config so that the url works without the trailing slash too.
But I would still like to know, why technorati doesn’t use the feed url but the blog url instead.
– scip
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feedno idea?
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feed> Are your blog URLs set correctly in Options/General?
I think so. There are 2 urls:
WordPress-Adresse (URL): http://www.daemon.de/blog
Blog-Adresse (URL): http://www.daemon.de/blogThis seems to be ok, because I am correctly listed on blogg.de (for example).
– scip
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feedfinally, I found a workaround, I added the following 2 lines to my apache config:
RewriteCond %{HTTP_USER_AGENT} ^Technoratibot*
RewriteRule ^/blog /blog/index.php?feed=feed
this forces the technorati bot to receive the feed when it accesses the blog directly.
– scip
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feedHowever, Technorati still accesses the wrong url:
209.237.230.104 - - [27/Jun/2005:21:17:39 +0200] "GET /blog HTTP/1.0" 200 6908 "-" "Technoratibot/0.7"
Any ideas?
– scip
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feedWell, the file latest.tar.gz decompressed in a subdirectory wordpress/ which I didn’t notice. Very sorry ’bout this. So now I’ve got 1.5.1.2 running, and: feed works 🙂
– scip
PS: a suggestion for future updates: the user has to execute wp-admin/upgrade.php after unpacking. You could tell the user from which version to which version the upgrade is going. In my case it would have read “upgrade from 1.5.1 to 1.5.1” or something 🙂
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feedWell, I applied this patch to wp-blog-header.php, now the feed works (1.5.2 didn’t fix this bug ?)
However, I don’t think technorati works now.
– scip
Forum: Fixing WordPress
In reply to: Technoratibot doesn’t fetch feedBeside, I just found out, that my feed is completely empty, for whatever reason.
I updated to version 1.5.2, but the feed is still empty.
Please Help !
– scip
Forum: Fixing WordPress
In reply to: “read more” link doesn’t work in konquerorAhem – after fixing all errors I re-added the tags to the read-more links, now it looks again like in the default template:
<?php the_content('<strong>Weiterlesen »</strong>
'); ?>While the link works, it is invalid xhtml now (as I already mentioned in my first post), the w3c validator doesn’t like it ( inside ).
I used the default-deutsch theme as base, which is a translation of kubric: http://www.journal.kylaloo.net/2005-02/wp-kubrick-template-in-deutsch
, it contains the error too.
Forum: Fixing WordPress
In reply to: “read more” link doesn’t work in konquerorFinally I changed the dtd (xhtml 1.0 now) and fixed all errors, now the page validates to be correct, and – guess – the more link (with the tags) works now as expected in konqueror too.
Thanks for the hint,
scip
Forum: Fixing WordPress
In reply to: no graphics in category viewThanks a lot, this fixed it!
– scip