Search found 10 matches
- Thu Dec 28, 2006 5:58 pm
- Forum: Bugs
- Topic: Full-text search doesn't work for multi-byte languages
- Replies: 2
- Views: 2689
Re: Full-text search doesn't work for multi-byte languages
Maybe the better solution is to just switch to postgres and use tsearch2, which can do multibyte free text search.
- Thu Dec 28, 2006 5:50 pm
- Forum: General discussions
- Topic: errors after entry-saving
- Replies: 3
- Views: 1876
re: Post subject: errors after entry-saving
The problem is that the above is using non-standard sql (or at least it looks invalid, not sure without seeing the table definitions). Try adding the additional columns you are selecting into your group by clause... something like:
SELECT max(v.version) AS maxVer,
v.id,
a.realname,
v.version ...
SELECT max(v.version) AS maxVer,
v.id,
a.realname,
v.version ...
- Tue Aug 29, 2006 7:33 pm
- Forum: Bugs
- Topic: Improper pubDate for feed in rss2.0
- Replies: 11
- Views: 10566
- Tue Aug 29, 2006 5:00 pm
- Forum: Bugs
- Topic: Improper pubDate for feed in rss2.0
- Replies: 11
- Views: 10566
- Sat Aug 19, 2006 4:26 pm
- Forum: Bugs
- Topic: Improper pubDate for feed in rss2.0
- Replies: 11
- Views: 10566
- Fri Aug 18, 2006 9:12 pm
- Forum: Bugs
- Topic: 1 Article, Multiple Cats, Counted Multiple Timesin Archive
- Replies: 7
- Views: 5351
- Fri Aug 18, 2006 9:09 pm
- Forum: Bugs
- Topic: Improper pubDate for feed in rss2.0
- Replies: 11
- Views: 10566
- Thu Aug 17, 2006 4:23 pm
- Forum: Bugs
- Topic: 1 Article, Multiple Cats, Counted Multiple Timesin Archive
- Replies: 7
- Views: 5351
I glanced at this yesterday whilst waiting for a reply on my bug and istm the problem is that the archives code does a $serendipity['GET']['category'] before doing the count, which afaict isn't neccesary. (I think this causes the join to categories which you shouldn't really ever want to do in the ...
- Thu Aug 17, 2006 4:06 pm
- Forum: Bugs
- Topic: Improper pubDate for feed in rss2.0
- Replies: 11
- Views: 10566
This is using s9y 1.0.
I actually did try to modify the entry to update the last_modified date, but for some reason it didnt change the last_modified date at all. Unless there is some logic in the code the checks the amount of change before updating last modified, this probably means there is some ...
I actually did try to modify the entry to update the last_modified date, but for some reason it didnt change the last_modified date at all. Unless there is some logic in the code the checks the amount of change before updating last modified, this probably means there is some ...
- Wed Aug 16, 2006 5:31 pm
- Forum: Bugs
- Topic: Improper pubDate for feed in rss2.0
- Replies: 11
- Views: 10566
Improper pubDate for feed in rss2.0
My scenario is that I wrote a blog post about 2 weeks ago but left it as draft. I published a few articles since then. When I went to publish it yesterday, I updated the time to be the current date so that it would be the latest entry. On my website, it is the first entry, and when I look in my rss ...