What do you use to manage your business website?

Regarding this (Where do you host your business web site?) thread, what software do you use to manage your business website? Are you using a custom-made website with something like ASP.NET, PHP or Ruby on Rails? Do you use a “standard” CMS like Joomla!, Drupal or Wordpress? Do you use static html pages?

Personally I’m using Joomla! but, after a security hole that allowed someone to upload files to my server, I’m thinking about changing to another CMS. I like using CMS because it’s easy to manage and change content, and it’s also easy to find good looking templates (I’m really not a good designer).

I am currently using a custom ASP.NET website, but if I did it again I would use a Wordpress site.

ASP.NET + AngularJS because that’s what I know. I’ve been working with .NET since version 1; it wouldn’t make sense to spend time learning something new when I also have to do support, marketing, etc.

In 2008 when I started I went total static. Speed and reliability, I told myself, can’t be beaten. But having to manage HTML by hand was painful.

In 2013 I moved everything to WordPress, hosted on WPEngine. Which solved some problems but created others. If I wanted to alter our home page layout for marketing reasons, I needed the help of a WordPress person. Adding database-driven stuff meant extending WordPress. I felt hamstrung.

A few months ago (2015), I moved everything to be a Java web app, using Tomcat and MySQL. Finally I feel like I have good control and flexibility.

In hindsight I should have used this option from the beginning. Because Java web apps in Tomcat is something I did as an overpaid consultant for so many years, I can code this stuff in my sleep. That is, it is flexible, powerful, fast, and I know the technology well.

I think there are two options:

  • WordPress
  • something you know REALLY well

Don’t do something cause its new or cool or others use it. Your marketing site is not where you want to spend time learning technology. It’s about copy and actions and marketing (go figure).

My first app, I used a custom ASP.NET website. Since i didnt know php I was afraid of WordPress. I think that was a mistake. My current app is done with WordPress. Like people have said, if you know something really well, it may make sense to do what you know. Otherwise I would default to WP. There are great themes and it gets you running quickly.

3 Likes

Our website started as a static html website. One of the factors that steered our choice that way was an advice I happened to read from one of these micro-isv folks saying something to the effect “You don’t need a CMS; just go for html/css”. The advice was probably fine for the time when it was written, but, I would say that is not a generally good advice for current times.
Recently, we moved to Wordpress and it has definitely been a good thing for us.

Used Wordpress at first. Then got paranoid about security one night and ripped Wordpress out and replaced with my own little home grown php/markdown solution in a few hours.

What I’m thinking about using in the future is one of these new flat file CMS solutions like https://github.com/getgrav/grav

I also increasingly like the idea that @ian mentioned once of a paid service that maintained and updated your marketing site for you.

I use and still prefer static HTML with some blocks written on PHP. This gives full control and allows almost anything. For example, I can insert any block on any page, add dynamic elements, etc.

A small part of the site (blog/news section) is built on Wordpress.

I thought about building the entire site on Wordpress but refused the idea. There were several reasons.

Every time I see a paid Wordpress template it looks overdesigned (it contains a lot of blocks, elements, and other stuff). So I afraid that I cannot easily adapt it to my needs and instead of getting a flexibility I’ll get a series of compromises.

I tried several free Wordpress templates, just as a private experiment, to see how they can work, but all of these templates did not leave any good impression.

Furthermore, if you wish to customize something in Wordpress, you have to write a plugin. For example, from time to time, I want to show a holiday discount block on some pages. I don’t know how to do this in Wordpress, but it’s just a line of code in PHP (include(‘block.html’)), and all I have to do is to modify the ‘block.html’. It’s easy, and I should not spend time to learn new skills for utilitarian needs. It is better to focus on SEO, product and other things that matter.

I’m ahead of redesigning my website to make it responsive. So, finally I decided to continue using the existing model: static HTML (with a design based on Bootstrap), and small PHP blocks that cover all my needs. And, of course, a Wordpress driven news section, that uses the same design.

At the end - completely agree with @scojo:

Your marketing site is not where you want to spend time learning technology. It’s about copy and actions and marketing (go figure).