![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
A friend of mine has a web site and she’d like to be able to have an extremely simple blog. She just wants to post a few sentences each day, maybe a link or two. Normally I would recommend a hosted solution, or even just a LJ account. However this is on a pay site and the blog would be a members only function.
Suggestions?
Suggestions?
no subject
Date: 2007-09-10 07:32 am (UTC)Uses a flat database structure, so just needs Perl rather than a SQL database. Only needs to do any work when new posts/comments are made, otherwise it's just 'here's some html it generated earlier', so low CPU / other resources.
But you must either stop comments or block any comment containing 'http' (i.e. an attempt to comment with a clickable link) or it'll be spam comment city.
If that's what she ends up going with, I can send my changes to achieve this, plus a few other things.
no subject
Date: 2007-09-10 07:36 am (UTC)no subject
Date: 2007-09-10 09:20 am (UTC)She's going to be blogging a sentence/link or two a day, and she wants only the paid members of her site to be able to read it?
or she wants to be able to give the members of her paid site blogs of their own?
no subject
Date: 2007-09-10 09:21 am (UTC)no subject
Date: 2007-09-10 11:00 am (UTC)no subject
Date: 2007-09-12 02:28 pm (UTC)If she needs any tips, she or you can email me - though I suck as a designer - i've done the technical stuff on WP a bunch of times :)
no subject
Date: 2007-09-10 10:26 am (UTC)no subject
Date: 2007-09-10 12:23 pm (UTC)$ echo "blah blah" >> blog.dat
Makefile:
all: index.html
index.html: template.m4 blog.dat
m4 template.m4 > index.html
template.m4:
<html>
<head>
...
</head>
<body>
...
m4_include(`blog.dat`)
...
</body>
</html>
...
Does it get any simpler?