Search found 546 matches

by mgroeninger
Thu May 12, 2005 6:47 pm
Forum: Installation
Topic: 0.7.1 -> 0.8: only the main page loads, nothing else
Replies: 31
Views: 14870

I think the character set issue is the result of the .net install. And I don't think the problem is because of the Windows 2003 US edition. But I could be wrong. Can you remove the aspnet_isapi.dll ISAPI extension from the website instance you have the blog in and try it? Here is my reasoning: The b...
by mgroeninger
Thu May 12, 2005 5:56 pm
Forum: Installation
Topic: 0.7.1 -> 0.8: only the main page loads, nothing else
Replies: 31
Views: 14870

Apparently, ASP.net adds the charset=utf-8 header automatically. I think this might help you: http://weblogs.asp.net/mspedding/archive/2003/10/10/31461.aspx The long the short of it: ...in the web.config file : <globalization requestEncoding="utf-8" responseEncoding="utf-8" /> Th...
by mgroeninger
Wed May 11, 2005 1:48 am
Forum: Bugs
Topic: 0.8 shortcomings.. is this beta?
Replies: 7
Views: 5112

Well, I'm glad your problem is consistent at least... :P You could run something like this: <?php ini_set("display_errors","on"); include('serendipity_config.inc.php'); $imagenumber = 1; $file = serendipity_fetchImageFromDatabase($imagenumber); $file['imgsrc'] = $serendipity['ser...
by mgroeninger
Tue May 10, 2005 11:52 pm
Forum: Bugs
Topic: 0.8 shortcomings.. is this beta?
Replies: 7
Views: 5112

Would you mind looking in your serendipity_images to see what mime types are listed for your images? Are they correct (I am kind of assuming they are not)?
by mgroeninger
Tue May 10, 2005 11:23 pm
Forum: Bugs
Topic: 0.8 shortcomings.. is this beta?
Replies: 7
Views: 5112

In regards to the media library, what type of file are you inserting into your post? From what I have seen the library will autodetect images vs. other media and change its behavior based on that. ie, for images I get the same old insert options (jpeg/gifs, I have no pngs), but other media it just i...
by mgroeninger
Sun May 08, 2005 5:19 pm
Forum: Installation
Topic: db password changed and site not loading ! help Pls
Replies: 2
Views: 2304

the database password should be contained in serendipity_config_local.inc.php If should contain something like: $serendipity['versionInstalled'] = '0.8'; $serendipity['dbName'] = 'serendipity'; $serendipity['dbPrefix'] = 'serendipity_'; $serendipity['dbHost'] = 'localhost'; $serendipity['dbUser'] = ...
by mgroeninger
Fri May 06, 2005 9:05 pm
Forum: Plugins
Topic: Other Link Plugin - Feed back wanted
Replies: 10
Views: 9209

Damn, sorry about the stackable thing... I'm not a css guy.. I tossed it on my site and tested it with the lists in different columns, which worked pretty well. Unfortunately I didn't test it in the same column.... and I'm not sure what I would need to do to get them to work in the same column.. (I ...
by mgroeninger
Fri May 06, 2005 6:34 pm
Forum: Plugins
Topic: Other Link Plugin - Feed back wanted
Replies: 10
Views: 9209

Ok, I'm back! mmayberry, you can download a new version of the plugin at the same place: http://www.theledge.net/uploads/serendipity_event_linklistwithpageview.tar.gz It is now stackable, and it has a setting called "Top Level Text" which will put text next to the folder... Ok, I know some...
by mgroeninger
Sat Apr 30, 2005 6:44 am
Forum: General discussions
Topic: Getting rid of NL2BR and broken BBCode
Replies: 4
Views: 3416

This isn't relevent to this topic, but if you want a Tex plugin you might look at the mimetex wrapper plugin...

It is not an input plugin, but it is pretty useable...
by mgroeninger
Sat Apr 23, 2005 1:46 am
Forum: Plugins
Topic: Other Link Plugin - Feed back wanted
Replies: 10
Views: 9209

I have a beta version sitting on my server at http://www.theledge.net/uploads/serendipity_event_linklistwithpageview.tar.gz . Before anyone downloads it they should know: I will not be able to support/change/fix/improve/troubleshoot anything until the end of next week. (that is the main reason I hav...
by mgroeninger
Fri Apr 22, 2005 1:09 am
Forum: Plugins
Topic: Other Link Plugin - Feed back wanted
Replies: 10
Views: 9209

I haven't/won't have a chance to look at your code for a week or two, so I don't know what features you are aiming for... (So I won't vote yet) I would like you to look at Omid Mottaghi's plugin since it sound very similar to yours: Original post: http://www.s9y.org/forums/viewtopic.php?t=942&po...
by mgroeninger
Thu Apr 21, 2005 7:27 am
Forum: Bugs
Topic: Linklist kills Kubricks style
Replies: 5
Views: 3489

I apologize for this... I have no solution at this time, and won't for probably several weeks (my time is very limited right now). I have been told it is caused by an extra </div> tag in the category views, but I have not looked into why.... I have a new version of the code which should remove the p...
by mgroeninger
Wed Apr 20, 2005 5:08 pm
Forum: Bugs
Topic: iis ... once again
Replies: 6
Views: 4536

open up index.php and find:

Code: Select all

$uri = $_SERVER['REQUEST_URI']; 
and replace it with:

Code: Select all

$uri = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING']; 
by mgroeninger
Mon Apr 18, 2005 11:31 pm
Forum: Plugins
Topic: Amazon Chooser Plugin
Replies: 18
Views: 16532

DOH!

Yeah, I forgot to update the version on my site... *sigh*

Sorry about that... my fault...

Hope it is working well for you!
by mgroeninger
Mon Apr 18, 2005 7:47 pm
Forum: Plugins
Topic: Amazon Chooser Plugin
Replies: 18
Views: 16532

Thanks for looking at that! I actually posted an update on 4/16/05 (just two days ago) to fix this issue... Can you test the most recent cvs to make sure I got it working? changed it to this, specifically: block = '<table>' + '<tr>' + '<td align="center" valign="top" rowspan=&quo...