I had some time today to look into the plugin's code... and to learn some more PHP as well :-)
To get it working like I want I actually just needed to change one line:
serendipity_event_multilingual.php, line 423-425
if (empty($this->showlang)) {
return;
}
Patched to:
if (empty($this ...
Search found 17 matches
- Wed Aug 09, 2006 4:47 pm
- Forum: Plugins
- Topic: Multilingual plugin & browser's language
- Replies: 12
- Views: 6444
- Mon Aug 07, 2006 1:51 pm
- Forum: Plugins
- Topic: Multilingual plugin & browser's language
- Replies: 12
- Views: 6444
- Sun Aug 06, 2006 7:49 pm
- Forum: Plugins
- Topic: Multilingual plugin & browser's language
- Replies: 12
- Views: 6444
Multilingual plugin & browser's language
I maintain a German blog and I now want to make use of the multilingual plugin to translate some articles into English. Ideally I don't want a language selection footer or drop down box in the sidebar but have the language shown accordingly to the browser's setting. I've seen this working perfectly ...
- Wed Jul 05, 2006 4:45 pm
- Forum: Plugins
- Topic: remoterss encoding problem
- Replies: 9
- Views: 4774
- Wed Jul 05, 2006 3:28 pm
- Forum: Plugins
- Topic: remoterss encoding problem
- Replies: 9
- Views: 4774
- Wed Jul 05, 2006 2:44 pm
- Forum: Plugins
- Topic: remoterss encoding problem
- Replies: 9
- Views: 4774
- Wed Jul 05, 2006 1:24 pm
- Forum: Plugins
- Topic: remoterss encoding problem
- Replies: 9
- Views: 4774
- Wed Jul 05, 2006 12:56 pm
- Forum: Plugins
- Topic: remoterss encoding problem
- Replies: 9
- Views: 4774
remoterss encoding problem
I'm happily running the latest stable s9y version on Apache2/MySQL4 on top of Debian 3.1 for a year now. I'm also using the web-based RSS aggregator Gregarius & web-based bookmarking system Scuttle on the same webspace. These apps are supporting rss output as well and I'm using it to show the latest ...
- Wed May 24, 2006 9:05 pm
- Forum: Plugins
- Topic: freetag plugin patch
- Replies: 12
- Views: 6570
- Wed May 24, 2006 12:35 pm
- Forum: Plugins
- Topic: freetag plugin patch
- Replies: 12
- Views: 6570
I've updated the German language file to fit version 2.4.8, in case anyone is interested:
Get the ZIP here
Get the ZIP here
- Sat May 20, 2006 1:25 pm
- Forum: General discussions
- Topic: Redirect categories to tags with mod_rewrite
- Replies: 8
- Views: 4140
Solved
So after reading the mod_rewrite docs with a little more patience and a hint from another forum I could come up with a working solution:
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^/categories/1-Example-Category$
RewriteRule ^index\.php?$ index.php?/plugin/freetag/Exampletag [R=301 ...
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^/categories/1-Example-Category$
RewriteRule ^index\.php?$ index.php?/plugin/freetag/Exampletag [R=301 ...
- Wed May 17, 2006 10:23 pm
- Forum: General discussions
- Topic: Redirect categories to tags with mod_rewrite
- Replies: 8
- Views: 4140
It still does only compare the requested file:
Code: Select all
(4) RewriteCond: input='/index.php' pattern='^index.php\?/categories/1-Example-Category' => not-matched- Tue May 16, 2006 4:42 pm
- Forum: General discussions
- Topic: Redirect categories to tags with mod_rewrite
- Replies: 8
- Views: 4140
- Mon May 15, 2006 10:39 am
- Forum: General discussions
- Topic: Redirect categories to tags with mod_rewrite
- Replies: 8
- Views: 4140
- Sat May 13, 2006 4:04 pm
- Forum: General discussions
- Topic: Redirect categories to tags with mod_rewrite
- Replies: 8
- Views: 4140
Redirect categories to tags with mod_rewrite
I have recently removed all categories of my blog in favour of the tags plugin. I'm very happy with my new freedom and the ability to connect the articles by browsing the tags. It appeared that one category was quite popular and some people have bookmarked it or subscribed to its feed. These people ...