Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the quickest way to a very simple blog?

Tags:

django

blogs

I am about to start a new project and would like to document its development in a very simple blog.

My requirements are:

  • self-hosted on my Gentoo-based LAMP stack (that seems to rule out blogger)
  • Integration in a django based website (as in www.myproject.com/about, www.myproject.com/blog etc rather than www.myproject.com and a totally different site at blog.myproject.com)
  • very little or no learning curve that's specific to the blog engine (don't want to learn an API just to blog, but having to get deeper into Django to be able to roll my own would be OK) According to the answers so far, there is a chance that this excludes Wordpress

Should I

a) install blog engine X (please specify X)

b) use django to hand-roll a way to post new entries and a page on my website to display the posts in descending chronological order

like image 765
Hanno Fietz Avatar asked Sep 09 '08 06:09

Hanno Fietz


People also ask

What is the simplest blog platform?

Wix is a great platform for bloggers who want a simple, easy-to-use platform with drag-and-drop functionality. It's perfect for beginners, and you can create a website or blog for free with Wix.com. There are also many paid plans available if you want to add more features to your website.


2 Answers

Install Wordpress. It is the most common engine for a reason. It's PHP but will play just fine in your environment.

like image 53
Frank Krueger Avatar answered Oct 03 '22 17:10

Frank Krueger


If you're the perfectionist kind, roll your own.

  • It isn't that hard
  • You learn something useful
  • You'll get exactly what you want and need

Be warned that you may run into a quagmire fighting comment spam, fixing security holes, etc. But it'll probably be a fun project.

If you are the practical type and ready to face some integration pain, use an existing engine like WadcomBlog (Python) or PyBlosxom, or something completely different like MovableType or WordPress.

Here's a simple Django blog example to get you started.

Some pros and cons of rolling your blog engine this article by Phil Haack.

Jeff Croft apparently rolled his own as well.

like image 21
Antti Kissaniemi Avatar answered Oct 03 '22 17:10

Antti Kissaniemi