tags:

views:

128

answers:

4

It has to allow for hosting additional files like .exe .

I also really like the design for blog.stackoverflow.com, what does Jeff use?

I'm really looking for a hosted solution, I don't want to install/debug/deal with the hosting company. I currently use wordpress, but as I understand I can't host any .exe files and change the CNAME records of my domain.

+5  A: 

The de facto standard blogging platform these days is Wordpress, and it's pretty damn good. As for alternative, Moveable Type is picking up speed again.

GaryF
A: 

Jeff and his team coded this up from scratch using Asp.Net MVC Framework (I think).

Your best choice for a blogging platform is Wordpress for the following reasons:

  • Very simple to install (and most hosting providers will have support for it)
  • Very easy to use. It's one of the simplest to get going with.
  • Very extensible - has a huge number of plugins that you can install to add functionality.
  • Very easy to customize - the programming model is simple enough that you can add your own changes to it easily.

Other popular options: Drupal, Joomla, DotNetNuke

Vaibhav
view source on blog.stackoverflow.com and you see <meta name="generator" content="WordPress 2.5.1" />
Stu Thompson
+1  A: 

blog.stackoverflow.com is using self-hosted Wordpress with Zimpleza theme. There are hosting wordpress providers that will let you use your own domain name. Now with exe file, why don't you host them on something like Amazon S3 cloud?

lubos hasko
+1  A: 

Personally, I like to use a blogging engine that is built on technologies I know. I am a .NET developer and so I use Subtext or BlogEngine.NET because they are open source and also because they are built on .NET so I can tweak them as I'd like. Anyway, something to consider.

BTW, regardless, I do highly recommend Subtext or BlogEngine.NET if you plan to self host and want to go an ASP.NET route.

Ryan Farley
Subtext requires SQL Server, so any hosted solution involving Subtext would be expensive.
crosstalk
Michael, recent versions of Subtext and BlogEngine.NET support VistaDB and can also be hosted on SQLExpress. There's even a MySql port for Subtext (not an official release) and BlogEngine.NET has a native built-in MySql provider (as well as XML)
Ryan Farley