mu.nu - It's mackerel stewed in chocolate!
June 12, 2006
Assitance, Please? 
Hi Pixy,
I was getting some reports yesterday that people couldn't see any of my posts on merrimusings.mu.nu beyond 6/4. On my end, all was okay and eventually those who said they couldn't see them could see them later. When I logged in this afternoon, I am now only seeing posts up through 6/4...all the remaining posts and comments beyond 6/4 to present are MIA. Anything you might be able to do to help me out? Thanks so much for anything you can do to assist!
Posted by: Merri at
09:58 PM
| Comments (5)
| Add Comment
| Trackbacks (Suck)
1
Hi Pixy - one other item. Sadie asked me to let you know that she can't get into my file manager to check on my posts, etc. Would you be able to fix that for her as well? Thanks a bazillion!

Posted by: Merri @ at June 12, 2006 10:43 PM
2
Investigating now. I think I know what the problem is, so hang on a tick.
Posted by: Pixy Misa @ at June 13, 2006 02:03 AM
3
Hi Merri. Both problems should be fixed now - although it might take the usual 1 to 2 hours to take effect for everyone.
There was a copy of your blog on both servers, and some people were going to the wrong copy. I had all the settings right, but they hadn't been picked up by one of the servers, so I had to smack it.
Posted by: Pixy Misa @ at June 13, 2006 02:11 AM
4
Thank you, thank you, thank you!

You are da bomb as always, Pixy!!!
Posted by: Merri @ at June 13, 2006 03:04 AM
Hide Comments
| Add Comment
Minx 101
Some time this week - assuming we don't get torpedoed again - I will be switching Munuviana over to Minx.
Yes, Minx.
Or mostly Minx. What I've done is adapted Minx to the Movable Type database. That way, you don't need to import your posts, change your logins, anything. You can keep using the existing Movable Type interface until the Minx interface is up to scratch. It just works.™
Except for templates, which are a bit different. Here's a quick overview of how templates work in Minx.
There are (currently) three main templates that control the layout of your site: The Page template, the Post template, and the Comment template:
Page Template
<html><head>
<title>Minx Dynamic Pages for Movable Type</title>
<link rel="stylesheet" href="http://ai.mu.nu/styles-site.css" type="text/css" />
<script language="JavaScript" src="http://blog2.mu.nu/cgi/showhide.js"></script>
</head>
<body>
<div id="container"><div id="center"><div class="content">
<center><b>[blog.name]</b></center><p>
[posts:here]
[magic.pager]
[magic.stats]
</div></div></div>
</body></html>
Very simple. You start with a standard HTML/XHTML page, and the Minx tags are marked with [square brackets]. If you have something in your template that's in square brackets that's
not a Minx tag - intentionally or unintentionally - it just gets spat out unchanged. (The
divs look a bit odd, but that's because I'm using an unmodified MT3 stylesheet for testing.)
We can see three types of tags here:
A simple tag, [blog.name], which just looks up the matching database field for the currently active blog and inserts it into the page at that point.
A here tag, which is used to simplify block processing. The [posts.here] and [comments.here] are the most common examples of this. Without any parameters** they loop through the posts or comments using the default settings for your blog and the default post/comment template, as appropriate.
The Post and Comment templates look like this:
Post Template
<h2>[post.newdate]</h2><p>
<b>[post.title]</b><p>
[post.text]
<p class="posted">
Posted by: [post.authorlink] at
<a href="[post.url]">[post.time]</a>
| <a href="#" onClick="ShowHide('cc[post.id]'); return false;">Comments ([post.comments])</a>
| <a href="http://blog2.mu.nu/cgi/mcomment.cgi?post=[post.id]">Add Comment</a>
| Trackbacks (Suck)
</p>
<div id="cc[post.id]" style="display:none">
[comments:here]
<p class="posted">
<a href="#" onClick="ShowHide('cc[post.id]'); return false;">Hide Comments</a>
| <a href="http://blog2.mu.nu/cgi/mcomment.cgi?post=[post.id]">Add Comment</a>
</p>
</div>
Comment Template
<div id="c[comment.id]">[comment.text]</div>
<p class="posted">
Posted by: [comment.authorlink] at [comment.datetime] </p>
Again, we have regular HTML, with just a bunch of simple tags to insert the desired values. The Post template might look a bit complicated, but it is handling inline comments; a Post template without comments might be just:
<h2>[post.newdate]</h2><p>
<b>[post.title]</b><p>
[post.text]
<p class="posted">
Posted by: [post.authorlink] at
<a href="[post.url]">[post.time]</a>
| <a href="http://blog2.mu.nu/cgi/mcomment.cgi?post=[post.id]">Comments ([post.comments])</a>
| Trackbacks (Suck)
</p>
Minx is intended to let you have full control of post and comment selection from the template, overriding the default settings, but those tags are more complex to process and don't work yet.
Finally, we have magic tags. We have two examples of this, the pager and the stats. Magic tags do magic stuff that isn't necessarily available using regular template substitution. The pager lets you go to the next/previous page of the blog (a fancier pager is coming); the stats show performance information (and a fancier version of that is coming too).
The central idea is to make as much of the feature set as possible available without making the templates scary. So you don't need to have a complex nested structure of post tags and comment tags. Just put [posts.here] in your page template (with maybe some optional parameters) and [comments:here] in your post template. Set the appropriate settings on your blog options screen and you're in business!
Maintaining Your Templates
Minx pulls its templates dynamically from the MT database. If you create index templates called mxPage, mxPost, and mxComment, Minx will use them to override the default templates. (Which are loaded dynamically as well, from blog number 1 - the old Ambient Irony blog.)
You can just use Movable Type to do this right now, but in the next week or so we will have a very nifty WYSIWYG (well, WYSIMOLWYG) template editor, which should make things a lot easier. No need for rebuilds to see your changes, either; it's in-stan-taneous!
Advanced Features
You can also include templates using the [include template]
tag. The template to be included must also begin with "mx", since Minx only looks at those, but you don't actually specify the "mx" when you use the tag. So, for example, you can create a blogroll template called mxBlogroll and include it with the tag [include blogroll]
. (It's not case-sensitive.)
Minx supports conditional processing with if
and ifn
. if
and ifn
can be used with any simple tag to test whether the value of that tag is "true" or not. A tag is true if it is a non-zero number or a non-empty string, otherwise it is false. Any text between [if tag]
and [/if]
is included if the value of the tag is true. And any text between [ifn tag]
and [/ifn]
is included only if the value of the tag is false.
You can't nest if
tags, though you can nest an ifn
inside an if
and vice-versa. If you want to get more complicated than that, for now you'll need to use sub-templates with include
.
For example:
[if post.comments]| <a href="#" onClick="ShowHide('cc[post.id]'); return false;">
Comments ([post.comments])</a> [/if]
[ifn post.comments]| No Comments [/ifn]
That will show the inline comments clicky if there are comments, but just the test
No Comments if there aren't.
More tomorrow.
Although... If anyone can work out why the examples have gone all shrinky in the test version of Minx, that would be much appreciated. It's the same stylesheet as my blog, but the examples there are normal size.
Update: It was the DTD?! I didn't know the DTD could do that. What. Ever.
Update: Fine now in Firefox, but still squishy in IE 6. But then, so's pre'd text on my blog, so at least it's consistent. Fine in Opera. Fine in Konqueror, so probably also fine in Safari. Weird in IE7, which resizes the entire page.
I blame Microsoft.
Posted by: Pixy Misa at
01:13 PM
| Comments (25)
| Add Comment
| Trackbacks (Suck)
1
Okay, I could just assume, but we all know where that leads...
This will have no effect whatsoever on the WP blogs, correct?
Thanks, Pixy... for everything!
Posted by: pam @ at June 12, 2006 04:02 PM
2
Right.
No effect on anyone, in fact, unless you decide to switch to it.
Posted by: Pixy Misa @ at June 12, 2006 04:24 PM
3
Sorry, I should have been clearer - Munuviana, as in this particular blog. Nothing else, at least for now.
Posted by: Pixy Misa @ at June 12, 2006 04:29 PM
4
For the time being I've set the main page for Munuviana to rebuild automatically every ten minutes. That way any comments added in the Minx version will appear in the plain MT version. (Minx doesn't build the MT pages at all, which is why it is so much faster to add comments that way.)
Posted by: Pixy Misa @ at June 12, 2006 04:39 PM
5
In the meantime, go here and play with it! The more bugs we can shake out before I switch over, the better.
Come to think of it, if we switch over and it dies, that would be rather a problem. I'll keep the MT version of Munuviana around; maybe just have a great big linky up the top saying "GO HERE FOR COOL NEW TOYS!!"
Posted by: Pixy Misa @ at June 12, 2006 04:43 PM
6
Thanks Pixy...You are fantastic!
Posted by: Rachel Ann @ at June 12, 2006 07:14 PM
Posted by: GM Roper @ at June 12, 2006 09:38 PM
8
Looks great. Safari still doesn't seem to like the pretty editor. (entering this text on the original site).
Posted by: Stephen Macklin @ at June 12, 2006 10:22 PM
9
Sorry for being a bit thick-headed, but what does this mean, Pixy? Will we switch to Minx and use it instead of MT?
I wouldn't mind being a Minx guinea pig if you're looking for them. Or would that be a guinea dog?
Thanks,
Howard
Posted by: Howard @ at June 12, 2006 11:26 PM
10
Fast is good - I'm waiting to see how the finished product turns out. I'd be happy to move to it. I'll likely screw up the template stuff - but I love new toys - even when they break things. *grin*
Posted by: Teresa @ at June 13, 2006 03:36 AM
11
Hmmm... interesting. On my comment above, I hit preview and it posted instead. I may have missed something and this is the way the unfinished version is working. Just thought I'd mention it though, in case you didn't know it.
Posted by: Teresa @ at June 13, 2006 03:38 AM
12
Yes, it does that. I need to fix the comments page.
Posted by: Pixy Misa @ at June 13, 2006 04:39 AM
13
Howard - I've configured Minx to run in parallel with MT. Minx doesn't yet have an interface for managing your posts, so until it does, you will use MT for that. In fact, you can continue to use MT after that if you prefer.
Eventually, yes, we'll be moving over to Minx. But because the two systems work nicely together, there's no need to switch over until you're ready.
Posted by: Pixy Misa @ at June 13, 2006 05:34 AM
14
One particular with the biggest casino programmes for The united states which
often overtakes acekard 2i
the amount of igaming systems traded by The, Nintendo will be positioned for
Rockefeller Center within Nyc. The actual game are actually r4i 3d performed by fingers. The
actual shop takes in 10,000 square centimeter nintendo 3ds cards from space
or room.
Posted by: 3d accessories @ at April 15, 2011 02:53 AM
15
The Supra Footwear company is so big now,shoes are nowhere near all they sell.They make really legit jackets.They have an apparel line.They even sell necklaces and keychains.In fact the keychains sell like mad.Everyone has a Tk Society Shoes Cap.Who doesn't like rockin'a hat? And Supra also of course sells t-shirts and many other accessories.There shoe line has expanded exponentially.They do callabs with practically everyone and have countless limited shoes,with everyone from rappers to hotels.The Supra Skytop kill it,but they also have Supranos,Supra Vaiders,Tuffs,Cubans and much more.If you have a chances to take a look at this line Justin Bieber Shoes,make sure you do.They're the hottest new shoe company I've seen in a while.Get Supra Chad Muska Skytop news,from release dates to stores specials,at Louis Vuitton Jasper.
Posted by: Supra Footwear @ at July 14, 2011 07:17 AM
Hide Comments
| Add Comment
June 11, 2006
Sneak Preview
Right here.
Far from finished, but coming along nicely. The production version will use a different web framework that is about five times faster; I hope to set that up in the next week or so. In the meantime, play around!
Update:
Special cached version for high-volume web sites here. The cached version is now standard! However, Minx doesn't cache pages for you if you are logged in. That means that if you are updating the site (posting entries or comments, tweaking the templates) you always see your changes immediately. But if you get an Instalanche or Slashdotted/Farked/Digged/whatever, 99.9% of visitors
won't be logged in, and will get the fast cached version of the page.
Pages are cached as they are generated, and if the cached version is less than five minutes old it coughs that up instead, which can be a
lot quicker.
For example, processing time for Ace's blog is 0.12 seconds. Retrieving it from the cache is less than 0.01 seconds.
Posted by: Pixy Misa at
07:20 PM
| Comments (11)
| Add Comment
| Trackbacks (Suck)
1
Are the comments supposed to be working on the Minx version? It will let me fill in my name, addy and url, but I don't seem to be able to enter any actual comment text.
UPDATE: on a hunch I opened the page in Firefox and it allowed me to enter text. So this may be a Safari issue.
Posted by: Stephen Macklin @ at June 11, 2006 10:12 PM
2
Yeah, I;ll need to have it turn the pretty editor off in Safari.
Posted by: Pixy Misa @ at June 12, 2006 01:14 AM
Posted by: Pixy Misa @ at June 12, 2006 01:18 AM
Posted by: Pixy Misa @ at June 12, 2006 01:18 AM
5
Test comment with pretty editor.
Posted by: Pixy Misa @ at June 12, 2006 01:19 AM
6
That's quite a bit faster.
Posted by: Pixy Misa @ at June 12, 2006 01:19 AM
7
I like the editor part... Different and yet exciting! LOL
Posted by: GM Roper @ at June 12, 2006 12:41 PM
Hide Comments
| Add Comment
June 10, 2006
Trackbacks out of kilter
I've gotten a number of links (and the author said trackbacks too) but none have come through. I checked my setup to insure I'm accepting trackbacks and I am. Can this be fixed?
Thanks.
Posted by: GM Roper at
02:05 AM
| Comments (15)
| Add Comment
| Trackbacks (Suck)
1
Trackbacks are being recorded but not updating blogs. This is intentional. I'll probably be switching processing back on later today, and that will pick up trackbacks sent through earlier.
You don't need to do anything to your blog.
The reason trackbacks are switched off completely is that we've been receiving 3000 of them per minute. Which was a bit of a problem. 99.99% spam and then some, but the server has to catch them all and then weed out the bad ones.
Posted by: Pixy Misa @ at June 10, 2006 03:48 AM
2
Thanks Pixy.... I know you provide mu.nu as a service, and I'm very greatful, but would you consider adding a paypal button so that all of us that would like to help out can? I think the majority would like to contribute even if it was just a little.
Posted by: GM Roper @ at June 10, 2006 05:40 AM
3
Does this extend to comments too? I just wonder because the last couple of days my comments haven't been emailed to me. I did an index rebuild thinking that might help, but it was a no go. Not that it's of huge importance, I was just wondering. I don't get that many comments and I can check for the top 5 just about once a day on the management screen and not miss any ;-)
BTW - I'm with GM - I'd be quite happy if you put up a donate button. *grin* Because I know exactly how hard you've been working!
Posted by: Teresa @ at June 10, 2006 09:24 PM
4
Are TB pings not going out either? Just curious.
Posted by: caltechgirl @ at June 11, 2006 03:11 AM
5
Outgoing pings should be fine. Incoming pings are being recorded, but not updating the blogs right now.
Comment-emailing is something I need to look at.
Posted by: Pixy Misa @ at June 11, 2006 04:36 AM
Posted by: Pixy Misa @ at June 11, 2006 06:46 PM
Posted by: Pixy Misa @ at June 11, 2006 06:52 PM
Posted by: Pixy Misa @ at June 11, 2006 06:52 PM
9
Still no TB's on my blog... I rebuilt just in case, but no dice.
Posted by: GM Roper @ at June 12, 2006 09:40 PM
10
Normal
0
7.8 °õ
0
2
false
false
false
MicrosoftInternetExplorer4
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:ÆÕͨ±í¸ñ;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;}
Cheap Louboutin ShoesChristian Louboutin SandalsChristian Louboutin PumpsVibram FiveFingersmens vibramswomens vibram
NT10.1105
Posted by: dfgf @ at May 27, 2011 06:50 AM
Hide Comments
| Add Comment
June 09, 2006
File Manager Error
After I tried to login and upload and image in to my file manager, I get this error:
[a fatal error or timeout occurred while processing this directive]
Thanks,
SR
Posted by: Sacramento Republicrat at
03:17 PM
| Comments (1)
| Add Comment
| Trackbacks (Suck)
I am unable to publish.
After the mysterious disappeance of my blog last night, it was back this morning.
I attempted to publish a post and the system bounces me out to the login page rather than publishing the story.
It is saved as a draft, but will not upload.
Posted by: Sactodan at
02:08 PM
| Comments (2)
| Add Comment
| Trackbacks (Suck)
1
Thanks, It seems to be working now.
BTW, I ws having the same error at the file manager that SR was having, which prevents the upload of images. Havent tried it today yet.
SD
Posted by: SactoDan @ at June 10, 2006 02:04 PM
Hide Comments
| Add Comment
BLOODY HELL!
I don't know which is worse, those bastard denial-of-service attackers, or those bastard spammers.
Just
die, will you?
Posted by: Pixy Misa at
11:54 AM
| Comments (2)
| Add Comment
| Trackbacks (Suck)
1
I am unable to publish. I can save a draft but when I select publish and save, it bounces me out to the log-in page and nothing happens.
I tried to publish this as a post to munuvia, but I cannot publish there either, so hopefully this comment will get through.
Posted by: SactoDan @ at June 09, 2006 02:10 PM
Hide Comments
| Add Comment
Vanishing Blogs
For some reason, Movable Type has started silently failing when rebuilding the static pages. That means that when someone leaves a comment, your blog might suddenly disappear.
If this has happened to you, log in to MT, go to Rebuild Site, and choose either Rebuild Indexes or Rebuild All. Just try not to do it all at once, or the system wil get sloooooow.
I've made some changes that I think will fix it, but they will take a couple of hours to take effect. (Yes, it involves DNS again.) I've also kicked off a rebuild of the main index of all our MT 2.6 blogs, and will repeat that every few minutes for the next couple of hours until I'm sure the problem is fixed.
We have *got* to get off Movable Type. I don't think this is MT's fault, but there are too many things that can go wrong when the intallation is the size ours is - and we can't upgrade.
By a strange coincidence, I start my new full-time job writing our new blogging system tomorrow. (Yeah, tomorrow's a Saturday. But if someone's willing to pay me to write a new blogging system that I can use for munu, I'll work Saturdays.)
Update:
CRAP!!!!! It's still broken.
Update: Okay, it seems to be fixed now. Rebuild your blogs at leisure. Report any more problems in the comments.
Posted by: Pixy Misa at
03:16 AM
| Comments (25)
| Add Comment
| Trackbacks (Suck)
1
Okay, it *might* be fixed now, but I still have no idea what's gone wrong.
Posted by: Pixy Misa @ at June 09, 2006 03:57 AM
2
I'm MIA -- and geting this comment.
Writing to '/home/grega/www/index.php.new' failed: Opening local file '/home/grega/www/index.php.new' failed: Permission denied
Posted by: Rhymes With Right @ at June 09, 2006 03:58 AM
3
I just got one of those too.
Working on it.
Posted by: Pixy Misa @ at June 09, 2006 04:01 AM
Posted by: Pixy Misa @ at June 09, 2006 04:01 AM
5
I tried both methods, but no luck. My main page is totally blank as are my last two posts. But the older posts seem to be accessible individually.
Posted by: annika @ at June 09, 2006 04:07 AM
6
Annika, I've had to switch everyone to a new version of Movable Type. Well, actually it's the same version, just a different copy of it.
Ace - and no-one else - was running a separate copy of MT. Ace - and no-one else - was working fine.
So I redirected everyone else to use Ace's copy of MT.
Only problem with that is it's on the other server, so it could take an hour or two for everyone to pick up the change.
In the meantime, I've kicked off a repeated automatic rebuild script.
Posted by: Pixy Misa @ at June 09, 2006 04:15 AM
Posted by: annika @ at June 09, 2006 04:30 AM
8
Hi Pixy....having some strange things happening at my site as well, and hubby asked me to leave a comment for you. http://www.merrimusings.mu.nu/
No posts appearing, no skins/headers showing up and a lot of errors on the page....I'm on WP currently so not sure if there's something I should be doing from my end. Just let me know.

Posted by: Merri @ at June 09, 2006 04:31 AM
9
Hi Merri. Very strange. I had to restore your directory from backup. All the posts were fine, but all the skins and stuff had completely vanished.
I suspect they got overwritten when I was shuffling files back and forth. Sorry!
But fixed now.

Posted by: Pixy Misa @ at June 09, 2006 05:01 AM
Posted by: Pixy Misa @ at June 09, 2006 05:27 AM
11
Thanks, Pixy! All is well here now!

Posted by: Merri @ at June 09, 2006 02:53 PM
12
Pixy, have you looked at .net NUKE? Open source content management system. Very robust. We're using it as a backbone for a new enterprise system and it's pretty impressive. I think native functionality covers most everything we'd need except trackbacks.
Posted by: Jim @ at June 12, 2006 10:02 AM
13
Jiiiiim! It runs on Windows!
Sorry, non-starter I'm afraid. I have enough fun looking after Linux boxes with all the crap that lands on us; if we were running Windows servers we would have suffered a terminal meltdown 18 months ago.
Posted by: Pixy Misa @ at June 12, 2006 12:28 PM
14
P.S. Minx is coming along very fast now. See my latest post.
Posted by: Pixy Misa @ at June 12, 2006 12:29 PM
15
Great post!very informative post.. I like what's introduced in your blog. To have the opportunity to talk with you. Also welcome you to visit my blog and have some advice. Thank you!
Posted by: burberry outlet @ at March 29, 2011 09:34 AM
Hide Comments
| Add Comment
Denial of Trackbacks
Pixy,
Not that you probably don't already have enough to worry about, but I have noticed that trackbacks on a number of sites do not seem to be working. That is when I click on the their trackback link I get a 404. From my random testing it seems to happen for those of us using a pop up window for trackbacks - like Munuviana.
Posted by: Stephen Macklin at
02:46 AM
| Comments (11)
| Add Comment
| Trackbacks (Suck)
1
I've been running into this problem -- a lot of folks complain they are unable to send me trackbacks and that even Wizbang's ping-thing doesn't work for them.
Posted by: Rhymes With Right @ at June 09, 2006 01:36 AM
2
Doh!
I was wondering why trackbacks had suddenly died.
The reason is: when the DDoS attack started, before I'd worked out what the problem is, I turned them off.
And then forgot to turn them on again.
Well, at least that was easy to fix.
Give it a couple of minutes, and then try pinging this post.
Posted by: Pixy Misa @ at June 09, 2006 01:53 AM
3
Pixy,
The trackback to this post worked but the one sent to the the top post on your site did not.
Posted by: Stephen Macklin @ at June 09, 2006 02:15 AM
4
Blup.
I'll check on that. My blog is on MT 3.2, so it shouldn't have the same problems, but it might have different problems.
Unfortunately, Snark lost all its stats, including the blacklist. It doesn't use MySQL, and it overwrote its file, so I don't have a recent backup.
Oops.
I'll leave it down for a couple of hours so that it can collect data and start building a new blacklist.
Posted by: Pixy Misa @ at June 09, 2006 02:28 AM
5
Yeesh. I was thinkin' that it's about time for Blog War II, but this is rediculous!
@#$% Turkish bastages...
Posted by: Tuning Spork @ at June 09, 2006 03:33 AM
Posted by: Pixy Misa @ at June 09, 2006 03:39 AM
Posted by: Pixy Misa @ at June 09, 2006 03:39 AM
Posted by: Pixy Misa @ at June 09, 2006 03:41 AM
Posted by: Pixy Misa @ at June 09, 2006 03:44 AM
10
Trackbacks are down again. Problem is, we're getting hit with 50 trackbacks per second. Even though Snark can cope with that easily, Apache can't.
I'm going to look at upgrading to Apache 2.0 or 2.2. That's not officially supported under CPanel, but it apparently does work. 2.0 is multi-threaded and much faster and more memory-efficient than 1.3, which is what we're stuck on at the moment.
Posted by: Pixy Misa @ at June 09, 2006 12:38 PM
Hide Comments
| Add Comment
My Blog Has Gone Missing
My blog has sudenly gone missing - All I get is a blank white page.
There have been numerous DDOS probs lately, I know, but this time the iother Munuvians that are usually out when mine is are all up and running fine.
Any ideas??? Apparently others aren't able to access it, and I just checked a slew of Munuvians in the sidebar, they are all fine.
Mark - www.knockinonthegoldendoor.mu.nu
Posted by: Old Cloots at
01:22 AM
| Comments (18)
| Add Comment
| Trackbacks (Suck)
1
I'm getting the same thing, and Munuviana was gone for a while, too.
Posted by: CD @ at June 09, 2006 01:34 AM
2
While mine works, Jawa Report is MIA
Posted by: Rhymes With Right @ at June 09, 2006 01:37 AM
3
Try rebuilding your main index. I did, and now my blog is back.
Posted by: CD @ at June 09, 2006 01:42 AM
4
Hmm. That makes two.
Try it now; it should be fine.
There were two odd things happening: One, you were on the wrong server (but I've set up things now so that in most cases, this still works), and two, your main page got blanked out. I think there was a brief network hiccup or something between the two servers.
If it happens again, just try rebuilding your main page (using the Rebuild Site -> Rebuild Indexes option), and that should fix it.
Posted by: Pixy Misa @ at June 09, 2006 01:45 AM
5
Okay, four. Yick. Not sure why, but I'll investigate.
Posted by: Pixy Misa @ at June 09, 2006 01:47 AM
Posted by: Pixy Misa @ at June 09, 2006 01:48 AM
7
Okay, whenever I post a comment, POOF! Main page gone. Happening on a lot of blogs. AAAAARGH!!!!!!
Posted by: Pixy Misa @ at June 09, 2006 01:57 AM
Posted by: Pixy Misa @ at June 09, 2006 01:57 AM
9
I was there a few minutes ago - now I'm not.
Posted by: Stephen Macklin @ at June 09, 2006 01:58 AM
10
That did it... thanks...
Posted by: GM Roper @ at June 09, 2006 02:10 AM
Posted by: Pixy Misa @ at June 09, 2006 02:40 AM
12
I rebuilt the main index and......nothing. Pixy, what do YOU suggest?
Posted by: Mark @ at June 09, 2006 03:52 AM
13
Hang tight.
I think I have a solution. Let me try rebuilding your site.
Posted by: Pixy Misa @ at June 09, 2006 04:03 AM
14
Okay, when I rebuild your site, it works.
I've redirected everyone to a new installation of MT. But it requires a DNS change, so it won't take effect instantly. Give it a couple of hours and it should be good.
In the meantime, I will run a script to rebuild, rebuild, rebuild.
Sigh.
And I *still* don't know what broke!!!
Posted by: Pixy Misa @ at June 09, 2006 04:05 AM
15
I think it's all happy now.
I, on the other hand, have finally gone insane.
Posted by: Pixy Misa @ at June 09, 2006 05:31 AM
Hide Comments
| Add Comment
June 08, 2006
Good News, Dickhead News
Good news first. I've been in contact with the network guys at Insight Broadband, and they've found the problem and fixed it. So if you're with Insight, and you're using the special DNS addresses, please switch back to using Insight's DNS. Yes, the special addresses still work, but the next time mu.nu changes servers, they will stop working, and your internet access will die. (Not just for mu.nu, for everything.)
Dickhead news: The denial-of-service attack is
still going. Latest attackers all come from Turkey, and I think I've identified the target.
I can block the attacks and prevent them from causing trouble, but only
after they attack. So between the time when they launch their assault and the time I drop the bomb, there could be some hiccups. If you can't get to a blog, give it a few minutes and try again. If anything goes off the air for a long time, do email me. I might already be working on it, but it might be something I missed.
Thanks for your patience everyone!
Posted by: Pixy Misa at
10:09 PM
| Comments (4)
| Add Comment
| Trackbacks (Suck)
1
I've been off of the air for about 45 minutes, after posting a rather nasty (but funny as hell - no pun intended) post on zarqawi meeting the devil.... Hmmm, from turkey? Well, I guess you don't have to be paranoid if they are out to get you.
Posted by: GM Roper @ at June 09, 2006 01:24 AM
2
Looks like that was just a hiccup. I rebuilt your main page, and it's fine now.
Posted by: Pixy Misa @ at June 09, 2006 01:33 AM
Hide Comments
| Add Comment
June 07, 2006
Blogrolling Question
I guess I'll just ask this, even though I've come across a few references on the internet at large. How does one implement a blogroll in MT 2.6? And if there's more than one way to do it, what's the most efficient/trouble-free/easiest? Well, I know there are tradeoffs between those objectives, of course.
Posted by: Demosophist at
09:46 PM
| Comments (1)
| Add Comment
| Trackbacks (Suck)
June 06, 2006
Word Press Blogs Down
Pixy I was just over here looking for the latest news and realized you might not have received any email about this... but the blogs using Word Press are down. The page shows:
Forbidden
You don't have permission to access / on this server.
...
Yada Yada Yada.
Anyhow, thought I would pass that along, because I KNOW you don't have anything else to do with your time.
Damn DDOS jerks.
Posted by: Teresa at
02:33 PM
| Comments (6)
| Add Comment
| Trackbacks (Suck)
1
Thank you, Teresa!

Posted by: pam @ at June 06, 2006 03:17 PM
2
Sorry about that!
There are problems with some of the WordPress blogs. pamibe.com is back on line, but I need to check the others.
Posted by: Pixy Misa @ at June 06, 2006 10:19 PM
3
Thank you so much, Pixy!

Posted by: pam @ at June 07, 2006 11:32 AM
4
Pixy - Liv At Not a Shrinking Violet is still down. She's on WP too. Any idea when she might be back up?
Posted by: Teresa @ at June 08, 2006 02:34 AM
Hide Comments
| Add Comment
Mail
... hello, all.... since the latest changing of servers (thanks for all the hard work, Pixy), my mail is rejecting my login.. I have tried changing my password via controlx panel and get a disk read/write error... and when I attempt to get into the webmail via controlx, I get a database error.... my normal client (Outlook) can't login either.. I am getting username/password message.... is anyone else having trouble with their mail?...
all the best,
Eric
Posted by: Eric at
01:48 PM
| Comments (29)
| Add Comment
| Trackbacks (Suck)
1
Eric, you're not alone - Pixy I think is looking into this.
Posted by: Simon @ at June 06, 2006 02:02 PM
2
I am looking into it, and it will be fixed today.
But it's an account-by-account thing - some people are having problems, some aren't. If you are having problems, please post here to make sure that I fix your account.
Posted by: Pixy Misa @ at June 06, 2006 10:24 PM
3
Hi guys.
Try email now.
There were some file permission changes due to the cluster rebuild I did which were probably the cause of the email problems.
Posted by: Pixy Misa @ at June 07, 2006 02:53 AM
4
I got as far as the Horde login screen, then I got: "Notice: Unknown(): [CLOSED] IMAP connection broken (server response) (errflg=1) in Unknown on line 0" and it wouldn't log me in.
Posted by: Simon @ at June 07, 2006 12:39 PM
5
Crapweasels.
Okay, now it should work.
Posted by: Pixy Misa @ at June 07, 2006 01:15 PM
6
I need to fully sync the userid's between the two servers, but I've done yours and Eric's and a few others who I know use munu for email.
Posted by: Pixy Misa @ at June 07, 2006 01:21 PM
7
And if it still doesn't work, I'll hit it with a rock.
Posted by: Pixy Misa @ at June 07, 2006 01:22 PM
8
Although I've corresponded with you Pixy, I'm adding my name because you are so damn busy I might get overlooked.
P.S., thanks in advance... oh great and wonderful wise one!
Posted by: GM Roper @ at June 07, 2006 03:24 PM
9
I have done your account, so if it's still not working, it's rock time.
Posted by: Pixy Misa @ at June 07, 2006 04:13 PM
10
I haven't tried to check my mail since last night but I've been getting the same crap - login failed or words to that effect.
And lucky me - my wife has my notebook computer that has the Mozilla Thunderbird that if my mail folder.....won't get it back until this evening.
Posted by: Mad Mikey @ at June 07, 2006 05:23 PM
11
Try it again now, Mikey.

Posted by: Pixy Misa @ at June 07, 2006 11:07 PM
12
Oh wise and wonderful Pixy - it now works. No need for that rock.
On the other hand, I shall be visiting the sunny climes of Sydney again this summer - are you going to be around at Christmas/New Year time?
Posted by: Simon @ at June 08, 2006 04:47 AM
13
I'll be here.

Posted by: Pixy Misa @ at June 08, 2006 07:19 AM
14
My email is not working either.
Posted by: Anna @ at June 08, 2006 08:51 PM
15
The Lovely Wife and I are both mailless.
Posted by: Jim @ at June 08, 2006 09:18 PM
16
Anna, Jim, and Lovely Wife should all have working email now.
I'm working through the list to fix this for everyone.
Posted by: Pixy Misa @ at June 08, 2006 09:56 PM
17
Woo hoo! I'm a mailing fool again.
Posted by: Jim @ at June 08, 2006 11:38 PM
18
Success! Pixy, you're the best.
Posted by: Anna @ at June 09, 2006 06:56 AM
19
Mine's working but Lovely Wife's voluntaryredneck.mu.nu may require a rock of sizeable proportion.
Posted by: Jim @ at June 09, 2006 07:18 PM
20
Odd. Her primary email account is working but the others have just disappeared.
Posted by: Jim @ at June 12, 2006 09:55 AM
21
Um. That's not good. Let me take a look-see.
Posted by: Pixy Misa @ at June 12, 2006 12:31 PM
22
I know this isn't a current post and I'm hoping that Pixy is able to see 'new' comments on old posts....
I'm still having mucho trouble with my madmikey.mu.nu mail -- it isn't working.
At all.
Mikey needs help!!
Posted by: Mad Mikey @ at August 12, 2006 09:37 PM
Hide Comments
| Add Comment
June 05, 2006
Deferred Posting
I presume that with all the uping and downing of servers that the deferred function has been disabled for the time being. In case it just got missed in the moving and twisting of metal things, here's a note that it isn't working at the moment.
And if there is time to play with it, any idea if deferred pinging might be a possibility in the future?
Thanks again.
NOTE: Sorry abouts sounding callous about the DOS -- I only just now found out about it as I haven't been online -- and my blog and this one appear to be working just fine, so I guess the DOS is over? If not, please send me the home address of the source of the DOS so I can mail them...something...
Posted by: Ogre at
12:02 PM
| Comments (10)
| Add Comment
| Trackbacks (Suck)
1
The DoS attack is quiet for now.
Deferred posting should be working at the moment. It didn't work for the two days that the blogs were hiding on the other server, because the appropriate scripts and crontab entries hadn't been set up.
The DoS attack is coming from Romania, Latvia, Austria, Korea, and the Netherlands. And other places, but those were the main ones. I've firewalled them off, and we seem to be okay for the moment.
The other casualty of all this has been my email - which is hosted on the munu servers. So if you tried to contact me and it bounced, or I just didn't get back to you, that's why.
Posted by: Pixy Misa @ at June 05, 2006 12:31 PM
2
Hmmm...The deferred post for 15:00 (server time) didn't post, neither did the 17:00 post. I've got another ready and deferred for 19:00...is the server time changed from what it was before the crashes?
Damn Latvians.
Posted by: Ogre @ at June 05, 2006 02:32 PM
3
Pixy,
Can you make sure that deferred posting is turned on for my blog too.
Thanks,
SR
Posted by: Sacramento Republicrat @ at June 05, 2006 03:04 PM
4
.. my mail.straightwhiteguy.com is still acting screwy and not collecting any mail... any ideas?....
Posted by: Eric @ at June 05, 2006 06:28 PM
5
Deferred posting is all working fine now. Deferred posts don't ping or trackback, but I'll bring that up again when the building isn't burning down...
Posted by: Ogre @ at June 06, 2006 10:48 PM
Hide Comments
| Add Comment
DoS Attack Update
Hi everyone.
As I mentioned earlier, on Saturday mu.nu was hit by a distributed denial-of-service attack (DDoS), which took out one of our servers, Yuri - the server that hosts most of our blogs. I posted on Ace's blog because it is hosted on a different server and was one of the few blogs still up.
I moved all the blogs to our other server, Kei, and after a few hiccups, we were up and running again.
About sixteen hours ago there was a brief attack on Kei, and then four hours ago the attack resumed in full force, taking out pretty much everything.
With the help of our hosting providers I have now firewalled off enough of Eastern Europe and East Asia that the servers are more-or-less coping. I'll need to keep a constant watch on things though.
I think - just maybe - we may have pissed somebody off.
Anyway, bedtime for me (it's 3AM here in Oz). See you all later.
Posted by: Pixy Misa at
12:01 PM
| Comments (10)
| Add Comment
| Trackbacks (Suck)
1
Thank you, Pixy, for struggling mightily to save our blogs!
Oh, in reference to some of the comments over at Ace's place: You can be a little nutty without being a nut. Sheesh!
I hope things recover more easily now that the DDoS attack has been shielded off a bit. I really do appreciate you taking care of us.
Posted by: Dave @ at June 05, 2006 01:18 PM
2
Thank you, Pixy, for struggling mightily to save our blogs!
Oh, in reference to some of the comments over at Ace's place: You can be a little nutty without being a nut. Everyone knows that!
I hope things recover more easily now that the DDoS attack has been shielded off a bit. I really do appreciate you taking care of us.
I hope you are blessed with wonderful grandchildren . . .
Posted by: Dave @ at June 05, 2006 01:20 PM
3
Sorry about the stuttering . . . I tried the new comment thingy and got an error message, so I cut and pasted to the old comment thingy. . .
Posted by: Dave @ at June 05, 2006 01:23 PM
4
I echo Dave's sentiments, thanks Pixy!
I guess it was only a matter of time that a DDOS happened, especially on a community that so freely speaks their mind.
Posted by: Oorgo @ at June 05, 2006 03:00 PM
5
Thanks Pixy. I've noticed that I can't access my email now on the 2095 port - I can still access cPanel at 2082, but it looks as if somehow the passwords were reset or something???
Posted by: Simon @ at June 05, 2006 07:14 PM
6
Ugblugl.
I need to look into email some more. It *should* be working again now. The firewall settings are right. Your password shouldn't have changed.
Posted by: Pixy Misa @ at June 05, 2006 09:49 PM
7
I hope you are blessed with wonderful grandchildren . . .
Thanks Dave. Yeah, Trixie's a good kid.
Posted by: Pixy Misa @ at June 08, 2006 04:41 AM
Hide Comments
| Add Comment
New Search Routine
There's a new search routine in town, and it goes whooosh!
It's a drop-in replacement for the MT search, only it's not an evil pile of crap.
Drawbacks: It ignores your templates, and the links currently don't work if you have customised your individual entry archive filenames. (Beyond the html/shtml/php thing, that is.)
At the moment it only scans the last 500 posts, but once we get both servers running again I'll be able to improve on that.
Update: After a bit more hacking (Ace's blog made it explode) it seems to be working pretty well. Have a play with it and let me know what you think.
Posted by: Pixy Misa at
05:46 AM
| Comments (11)
| Add Comment
| Trackbacks (Suck)
1
Just testin'out the ol' new comment thingy...
Hey, this is cool: Û‡Ô©ÖÑêé
Posted by: David Boxenhorn @ at June 05, 2006 12:02 PM
2
Hey, what happens when I put text down here? (After preview, there's no obvious way to re-edit your text. I'm typing in a blank text box.)
Posted by: David Boxenhorn @ at June 05, 2006 12:03 PM
3
Oh, when I press "preview" it posts the comment!
Posted by: David Boxenhorn @ at June 05, 2006 12:04 PM
4
And, I see it turned my special characters (from pressing the omega) into Chinese!
Posted by: David Boxenhorn @ at June 05, 2006 12:06 PM
5
Yeah, I need to get rid of that preview button. Kind of pointless now.

Posted by: Pixy Misa @ at June 05, 2006 12:40 PM
Hide Comments
| Add Comment
June 04, 2006
New Comment Thingy
I'm testing the new comments system live here at Munuviana.
Because it is
100% 98% backwards-compatible with the standard MT comments, we're running both side-by-side.
Right now, you can't post comments with the new system, only view them. That's why there's a big "DOES NOT WORK" message there. When it does work, I'll remove the message.

Update: Now you can post comments! But it doesn't rebuild the blog page, so the comment count won't change automatically. I'll fix that next.
Posted by: Pixy Misa at
11:34 AM
| Comments (12)
| Add Comment
| Trackbacks (Suck)
Posted by: Pixy Misa @ at
Posted by: Pixy Misa @ at
Posted by: Pixy Misa @ at June 04, 2006 12:03 PM
4
Comment comment comment.
Posted by: Pixy Misa @ at June 04, 2006 01:45 PM
5
This is a comment entered through the normal commenty thing.
Comment.
More comment.
Posted by: Pixy Misa @ at June 04, 2006 01:48 PM
Posted by: Stephen Macklin @ at June 04, 2006 11:18 PM
7
Are there instructions somewhere for installation of the comment system? Do we have to install a style or anything? (Pardon my ignorance. I didn't even know there were WordPress blogs on these servers.)
Posted by: Demosophist @ at June 06, 2006 10:14 PM
8
It's not quite ready for prime time yet, but when it is, there will indeed be instructions.
Posted by: Pixy Misa @ at June 06, 2006 10:22 PM
9
shop [URL=http://www.souggs.com/]ugg boots[/URL] for [URL=http://www.souggs.com/specials.html]ugg bailey button[/URL] and [URL=http://www.souggs.com/products_all.html]classic ugg cardy[/URL].All these products are cheap.This article is free for republishing.Source: http://www.souggs.com/
Posted by: ugg boots @ at February 20, 2010 03:02 AM
Hide Comments
| Add Comment
June 03, 2006
I've been Blacklisted
Someone has blacklisted the word "online" which happens to be part of my email address. I don't like commenting with a bogus address. I don't even like having to use 0nline. I think that's just rude. It's really annoying when I have to do it on my own site!!
Can someone with access to and knowledge of the black arts of the blacklist set me free.
I'd be most grateful.
Posted by: Stephen Macklin at
07:52 PM
| Comments (4)
| Add Comment
| Trackbacks (Suck)
1
Fixed. It was actually online.com, and I think it was my fault. I ran a routine to merge common spam domains, and there are a huge number of spams from [something]online.com, so that's what the program decided was a good blacklist entry.
Oops.
Posted by: Pixy Misa @ at June 04, 2006 05:49 AM
2
apparently 0nline.net is banned too because I can still can't use my actual address.
Posted by: Stephen Macklin @ at June 04, 2006 09:39 PM
3
Doh! It should be fixed properly now.
Posted by: Pixy Misa @ at June 05, 2006 01:06 AM
Hide Comments
| Add Comment
Mail issues
I'm getting a lot of mail at gmroper@gmroper.mu.nu that say "mail undeliverable" but I cannot tell if they are coming to me or from emails that I've sent.
I've not changed anything on the "Horde Options" so I'm not sure what is going on. Any suggestions
Posted by: GM Roper at
05:23 PM
| Comments (2)
| Add Comment
| Trackbacks (Suck)
<< Page 21 >>
Processing 0.02, elapsed 0.1519 seconds.
46 queries taking 0.137 seconds, 177 records returned.
Page size 103 kb.
Powered by Minx 0.8 beta.