lars
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP converts characters – how to turn off?I use remove_filter() in
myhacks.phpForum: Fixing WordPress
In reply to: rss problemsI’m still getting a 500 error for my feeds:
http://wordpress.org/support/6/2947#post-6
(try e.g. http://larsholst.info/blog/feed/rss2/)
I tried looking through the cvs logs to see what’s changed since the pre-February 1 versions of the feed and blog-header files, seeing as they work fine, but it didn’t help.
Any of the admins know?
Has anyone else experienced this?Forum: Fixing WordPress
In reply to: Add update services errorForum: Fixing WordPress
In reply to: RSS feeds break in 2004-02-28 nightlyWP 2004-04-15 nightly:
The problem persists. No access to error log on server, and I’ve forgotten how to make a custom log.
No error on my local copy though, just a “You have chosen to open wp-rss2.php”…
What I do know is it’s wp-blog-header.php AND the feed files (wp-rss2, wp-atom, etc).
If I use pre-February 1 versions of these files, it works.Forum: Everything else WordPress
In reply to: how to sort the_category()?this is what I use:
list_cats(0,'',name);
0 sets the option_all (show all categories) to false, replace it with a 1 or ” if you want that option on.Forum: Everything else WordPress
In reply to: how to sort the_category()?Dominik, you don’t need a hack to sort categories by name, which is what I asusme you want. Visit the WordPress Wiki and select “Template Tags” and scroll down to the “list_cats” function.
Forum: Fixing WordPress
In reply to: RSS feeds break in 2004-02-28 nightly…although the actual cause of the error seems to be in wp-blog-header.php.
this isn’t very helpful but I don’t have time for more in-depth testing right now, sorry.Forum: Fixing WordPress
In reply to: RSS feeds break in 2004-02-28 nightlyI didn’t take a closer look at the 500 error message, but Anonymous’ tip did the trick. Thanks.
Forum: Fixing WordPress
In reply to: Header error in single post search results*bump* and a recap:
Warning: Cannot modify header information – headers already sent by (output started at index.php:20) inwp-blog-header.phpon line 359
URI: larsholst.info/blog – try searching for “bloggies”or “propaganda” (both terms only appear in one post).Forum: Plugins
In reply to: Photo Matt’s better archivingI’ve got it to work replacing
single_month_titlewith this:
<pre>
date(‘F Y’, mktime(0, 0, 0, $monthnum, 1, $year))
</pre>
F is the full textual representation of a month, e.g. “January”.
I’m still not sure why single_month_title doesn’t work though (note also that single_month_title includes the year, which I don’t think it should).Forum: Plugins
In reply to: Photo Matt’s better archivingWhen the archived posts are shown, I’m trying to display the month and category as a heading, but for some reason the month won’t show.
This is what I have in index.php, just after the “in archives?” check from PhotMatt Wiki:
<pre>
<?php if(empty($cat)){single_month_title(‘ ’);} else {single_cat_title();} ?>
</pre>
This works on my local copy, and the only difference is I don’t use permalinks there.
My php skills are pathetic, so if anyone has any idea it’d be much appreciated.Forum: Fixing WordPress
In reply to: table_prefix hardcoded in template-functions.phpGreat, thanks Dougal!
Forum: Fixing WordPress
In reply to: Header error in single post search resultsoops, sorry about the long line.
the file name is code>wp-blog-header.php, if anyone wonders.Forum: Fixing WordPress
In reply to: comments / kses.php bug?Looks like it was
template-functions.php. Not sure if any other file was updated as well.Forum: Fixing WordPress
In reply to: comments / kses.php bug?Sourceforge seems to be unavailable at the moment, but as I recall there was another file that needed updating. Could it be
functions, orvars?
I’ll let you know if I find out. I’m using the Jan 9 nightly mysefl, so I don’t think there’s a bug.