vote up 1 vote down star

Has anyone had success with a flat-file blog engine?

I'm trying to arrange a very basic, bare bones blog setup on an intranet site. Unfortunately, the usual solutions rely on MySQL, which is not available on this server. In fact, no database is available. I may be able to do SQLlite, but would prefer a flat-file solution.

DokuWiki has done well as a wiki on this server and it even has a blog plugin. However, I'd prefer to use a "real" blog, if anyone can suggest good options.

I'm mostly interested in PHP, but other suggestions are certainly welcome.

flag

27% accept rate
2  
SQLite is a flat-file solution. If you mean you want a human-readable file, XML is your best bet. – Pies Mar 12 at 13:28
1  
You do realize wanting to use a "real" blog package but not use a "real" data storage solution is a contradiction right? – TravisO Mar 12 at 19:16
Hardly. That most blogs can run quite happily on MySQL, which is not a relational DBMS but simply a glorified file system, shows that sophisticated storage systems are not necessary. (And for what it's worth, our blogs at starling-software.com/en/blog use flat files, in part because of the convenience of being able to check the entire "database" into a revision control system.) – Curt Sampson Jun 26 at 3:38
MySQL is a thousand times better than using flat files, in every way (except perhaps ease of use). Unless you want to rewrite MySQL in PHP (or suffer serious scalability issues), you're better off using a real database. – musicfreak Jun 26 at 7:07
But since you don't have MySQL on your server, just use SQLite. – musicfreak Jun 26 at 7:09

10 Answers

vote up 5 vote down check

A while ago I used FlatPress which work's only with files and still has a quite good performance. There are also a lot of themes, plugins and widget stuff. (Not as many as for WordPress, but still enough for the most cases.)

link|flag
Thanks Hippo. That is fantastic. – allclaws Mar 13 at 12:49
vote up 1 vote down

PivotX

  • Multiple Weblogs
  • Multiple Authors
  • Built-in commenting & moderation
  • Built-in spam protection
  • Easy to install templates (themes)
  • Pages
  • MySQL Database
  • Flat Files Database
  • SEO friendly
  • Self hosted
link|flag
vote up 1 vote down

Blosxom (perl-based) and PyBlosxom (a Python-based clone) both work with flat-files.

link|flag
vote up 0 vote down

Modest looks nice, but I'm not sure if it's available yet.

http://sigusr2.net/2008/Sep/08/announcing-modest.html

link|flag
vote up 0 vote down

am surprised no one mentioned http://pebble.sourceforge.net/. This needs Servlet Container

link|flag
vote up 2 vote down

I think writing your own blog engine is a great idea. And the best part is that you don't have to bother with someone else's list of required features. You code it to your needs and leave the rest out. Then add more features as you need them.

link|flag
It worked for us. – Curt Sampson Jun 26 at 3:39
vote up 0 vote down

Give Simple PHP Blog a try. http://sourceforge.net/projects/sphpblog

link|flag
vote up 1 vote down

Blogger has a feature called "FTP Publishing" that allows you to export your blog as flat files to an FTP server. Is Blogger an option?

link|flag
vote up 1 vote down

I'd recommend you to try Sqlite, it's faster than parsing and creating flat file, and easier to use, too.

link|flag
vote up 2 vote down

dasBlog uses an XML file store. It's .NET though, not PHP.

These people also seem to have a port of Wordpress that uses flat files instead of a database. It is PHP.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.