Search found 2478 matches

by judebert
Tue Oct 20, 2009 7:11 pm
Forum: General discussions
Topic: mySQL Cluster?
Replies: 8
Views: 4654

Re: mySQL Cluster?

Braaiiiiiins.... I think we could implement this in a new database type, like mysql_replicated. It would check the first word of each query and decide whether it's a writing or reading query. Then it would choose an appropriate server to connect with and send it the query. Problem is, we'd need to m...
by judebert
Mon Jun 22, 2009 2:56 pm
Forum: Development
Topic: Custom WYSIWYG Buttons
Replies: 30
Views: 49715

Re: Custom WYSIWYG Buttons

Unfortunately, I'm kinda stonewalled on this. It's a neat idea, but to make it work right requires changing the way Serendipity handles its textarea display, and that's built in to several plugins and the core (I hate redundant code). Trying to make it backwards-compatible is a big difficulty, as we...
by judebert
Mon Jun 22, 2009 2:48 pm
Forum: Themes
Topic: Remove fields from published static pages
Replies: 5
Views: 4810

Re: Remove fields from published static pages

To keep his changes after upgrades, couldn't he just create a user.css and set those options to display:none?
by judebert
Fri Jun 19, 2009 2:59 pm
Forum: General discussions
Topic: multi user
Replies: 1
Views: 2243

Re: multi user

Serendipity supports multiple authors within a single blog. There is a plugin that provides a different appearance depending on category; therefore obtaining a multi-user look is as simple as having each author post in a different category and installing the plugin. We think that centralized respons...
by judebert
Fri Jun 19, 2009 2:49 pm
Forum: Installation
Topic: How to display Chinese/Japanese/Korean in a blog ?
Replies: 4
Views: 3795

Re: How to display Chinese/Japanese/Korean in a blog ?

Of course, if you haven't written any entries yet, you don't need to upgrade. Just remove the old version and install the new one. Make a note of the old version's settings; you may find them helpful when you install the upgrade. If you have written entries already, or heavily modified the configura...
by judebert
Thu Jun 18, 2009 4:34 pm
Forum: Plugins
Topic: [serendipity_event_freetag] german umlauts in url
Replies: 5
Views: 3515

Re: [serendipity_event_freetag] german umlauts in url

Luckily, I never actually added that change, so at least we can tell it's not my fault. ;) I think the whole URL structure needs to be updated. I'm not sure I'm the guy to do it, since I've already failed once (the thread in question is a little embarrassing). I'm really cranking on non-Serendipity ...
by judebert
Thu Jun 18, 2009 4:18 pm
Forum: Installation
Topic: login reappeares when navigate tru menu
Replies: 27
Views: 16225

Re: login reappeares when navigate tru menu

More likely it took some time running through your hosting provider. I've had this same problem before with my provider: sessions stop working even though I've done nothing. I open a trouble ticket, wait for a while, and it fixes itself. The provider always claims to have made no changes before or a...
by judebert
Tue Jun 16, 2009 5:35 pm
Forum: Bugs
Topic: Query Error on RSS Feed
Replies: 30
Views: 40156

Re: Query Error on RSS Feed

Does anyone know if it's possible to easily get an older version of the plugin? It used to work on my server and I don't know that I need the latest. I probably burned myself with a blind upgrade. Most of the time that works fine with s9y. :-( Yeah, the easy upgrade usually works. It's when the hos...
by judebert
Tue Jun 16, 2009 5:22 pm
Forum: General discussions
Topic: Is this a linux virus S9y running into
Replies: 5
Views: 3989

Re: Is this a linux virus S9y running into

I'd also be wary about upgrading until you've resolved this Media Center problem. Once the blog is running correctly again, then I'd upgrade. Check the blog's upload/ directory for the .ini file you're seeing, like Don suggests. If the file is there, then the "rebuild thumbs" link will cre...
by judebert
Mon Jun 15, 2009 4:01 pm
Forum: General discussions
Topic: Is this a linux virus S9y running into
Replies: 5
Views: 3989

Re: Is this a linux virus S9y running into

No, Linux doesn't have .ini files. When we "Rebuild Thumbnails", we look through all the files in the media directory and create new thumbnails for them. We also index any files that aren't already in the database. I'm betting that the .ini file is in your media directory somewhere. Check ...
by judebert
Fri May 29, 2009 2:44 pm
Forum: Development
Topic: Plugins shipped with s9y core
Replies: 50
Views: 39855

Re: Plugins shipped with s9y core

I think we don't do that because our core and plugins are on different servers.

But I like the idea. The "core plugin" concept has bothered me for a while.
by judebert
Mon May 18, 2009 9:22 pm
Forum: Plugins
Topic: flickrShow plugin
Replies: 16
Views: 9644

Re: flickrShow plugin

Do you need someone to install on Linux, or to visit the plugin with a Linux browser? I can visit, but I can't install. If you need visits, just tell me where to go...
by judebert
Wed May 13, 2009 4:42 pm
Forum: Themes
Topic: serendipity_fetchPrintEntries, but no images
Replies: 5
Views: 4514

Re: serendipity_fetchPrintEntries, but no images

Perhaps you could suppress the image with CSS? It would still be fetched, just never displayed. Something like: .serendipity_entry_body img { display:none; } Of course, if you still need the images in the single-entry view, you'd have to include that CSS through your template, checking the $view var...
by judebert
Wed May 13, 2009 4:33 pm
Forum: supersized.org
Topic: Flickr plugin broken
Replies: 10
Views: 31739

Re: Flickr plugin broken

Are you on supersized.org?
by judebert
Thu May 07, 2009 3:42 pm
Forum: Plugins
Topic: Padding of (sub)categories
Replies: 4
Views: 3136

Re: Padding of (sub)categories

It's very hardcoded to the category's depth * 6. It's an internal plugin, so the only way to change the value is to modify the core. The depth is calculated during the serendipity_walkRecursive function, so it's not even something we could do a neat database trick to. The best you can do is modify t...