Search found 9 matches

by chris_at
Fri Nov 04, 2005 9:58 pm
Forum: Plugins
Topic: Contact Form "Reply-to"
Replies: 2
Views: 2439

Ups :(
by chris_at
Thu Nov 03, 2005 8:53 pm
Forum: Plugins
Topic: Contact Form "Reply-to"
Replies: 2
Views: 2439

Contact Form "Reply-to"

Microbug: The Reply-to header contains the correct e-mail address, but the wrong name (blog's name instead of the sender's name belonging to the e-mail).

diff -u
--- serendipity_event_contactform.php.old 2006-10-14 12:39:05.459739080 +0200
+++ serendipity_event_contactform.php 2005-11-03 20:40:51 ...
by chris_at
Thu Nov 03, 2005 8:32 pm
Forum: General discussions
Topic: Google has multiple "Danger Will Robinson" results
Replies: 3
Views: 2740

The robots.txt file can only exclude directories (which is weird. If a robot has enough juice to spider my entire site, it should be able to parse a simple regexp...)

I'll drop a line to Google feedback if the problem persists...

Thanks for the info though

Christian
by chris_at
Tue Nov 01, 2005 6:22 pm
Forum: General discussions
Topic: Google has multiple "Danger Will Robinson" results
Replies: 3
Views: 2740

I just did a quick search for "type=trackback" in my web server log, and indeed, Googlebot is trying to crawl this URL.

Anything I can do to prevent this?
by chris_at
Tue Nov 01, 2005 5:06 am
Forum: General discussions
Topic: Google has multiple "Danger Will Robinson" results
Replies: 3
Views: 2740

Google has multiple "Danger Will Robinson" results

I googled for my website today, and I saw that that Google hat quite a few results for "Danger Will Robinson" pages. Apparently, Google tried to follow the trackback URLs.

I have been using 0.8.4 until I upgraded to 0.9 when it was released, and in 0.9, the trackback URLs have "nofollow" attributes ...
by chris_at
Mon Oct 31, 2005 5:30 pm
Forum: Bugs
Topic: Draft entries included in category count
Replies: 5
Views: 4206

Draft entries included in category count

Minor detail: I noticed that when the "Show number of entries per category" option in the category plugin configuration is set to True, entries with a "Draft" status get counted as well.

Christian
by chris_at
Tue Oct 18, 2005 9:33 pm
Forum: Bugs
Topic: Case-insensitive Quicksearch
Replies: 4
Views: 3155

Actually, I think it should be slower. Matching a regexp is definitely more complex than the standard LIKE matching, but I'm not familiar with how the internals deals with them, or optimizes matching.

As soon as I have a bit more data in my DB, I'll run some comparisons and report them.

Chris
by chris_at
Tue Oct 18, 2005 6:00 pm
Forum: Bugs
Topic: Case-insensitive Quicksearch
Replies: 4
Views: 3155

Great!

All you have to do is replace the "~" operator with the "~*" (tilde-star) operator.

These operators match regular expressions, though. If all you're looking for is a plain text match, then you should probably be using the "LIKE" or the "ILIKE" (for case-insensitive matches) operator ...
by chris_at
Tue Oct 18, 2005 4:13 pm
Forum: Bugs
Topic: Case-insensitive Quicksearch
Replies: 4
Views: 3155

Case-insensitive Quicksearch

This is not a bug per se. I noticed that virtually all of my visitors use the Quicksearch with lower caps, which makes most searches fail. Example: I have quite a few entries concerning Firefox, but searching for "firefox" fails.

I'd be grateful if you could tell me where the code for the ...