Home » Questions » Is there any CMS better than WordPress or should I roll my own?

Is there any CMS better than WordPress or should I roll my own?

Answered
1
1

I’m developing a small business website and want to give some control over content to the client but also allow myself control over the outputted code. Indeed allow the user to fill in the content gaps while not creating havoc.

I’m leaning towards WordPress rather than reinventing the wheel in asp.net, which would be my code of choice, or possibly just html.

Any recommendations either way? An alternative CMS maybe or some robust but productive framework? (interested in mention of python frameworks)

NOTE: This question was originally posted at StackOverflow.com by dove

  • Annette
    If you're a natural born programmer at heart, give Django a serious look. It's a nice light python (yeah learning sucks, I know) framework which will do lots of the work for you.

    NOTE: This comment was originally posted at StackOverflow.com by Oli

  • Annette
    ... Especially on the admin side of things. It's entirely possible to build the front-end of the site and not have to change what Django auto-generates for the admin, it's that good.

    NOTE: This comment was originally posted at StackOverflow.com by Oli

  • Arthur
    thanks Oli, i really like the way SO is so self maintaining, and yes i can see how john would react to the title. lesson learned there. but it's great how you picked it up and then healed things. should i edit the title maybe? or just do it better next time?

    NOTE: This comment was originally posted at StackOverflow.com by dove

  • Arthur
    well, you answered that for me swilliams, thanks for title edit. or is that krazy yak? getting more intrigued by these python frameworks.

    NOTE: This comment was originally posted at StackOverflow.com by dove

  • Jimmy
    @dove - It's both :), and I'm starting to get a little weirded out at the people referencing my blog postings online :)

    NOTE: This comment was originally posted at StackOverflow.com by swilliams

1
1

Graffiti from Telligent is marketed as a CMS. I use it as a blog engine, and it is tightly linked to the structure/concepts of a blog: chronological list of articles, articles are called posts, comments…

But their blog/site has shown some sites that use Graffiti but are far from looking like blogs.

http://graffiticms.com/

NOTE: This answer was originally posted at StackOverflow.com by postback

  • Annette
    be aware that development of GraffitiCMS ground to a halt for about a year and it's now been open-sourced which may or may not be a good development depending on interest from the community

    NOTE: This comment was originally posted at StackOverflow.com by rohancragg

  • Rick
    Graffiti is now opensource and on CodePlex graffiticms.codeplex.com. I managed to learn the framework and built a simple 5 page CMS over the weekend from soup to nuts. Graffiti is well designed with SoC and a layered architecture. Supports VistaDB, SQL Server and Access databases.

    NOTE: This comment was originally posted at StackOverflow.com by Simon Brangwin

  • You must to post comments
1
0

I would go with Graffiti. You have full control over html, and it can be regular blogging platform and CMS.

NOTE: This answer was originally posted at StackOverflow.com by Hrvoje

  • You must to post comments
1
0

Plone
django
joomla
.. and I’m sure lots of others, too 🙂

I personally like Plone, and use it for some things. I also use Wordpress, and I do manual content management (depending on the site).

NOTE: This answer was originally posted at StackOverflow.com by warren

  • You must to post comments
2
0

I haven’t really tried it yet, but since you said your preferred platform was ASP.Net, you could always check out umbraco.

NOTE: This answer was originally posted at StackOverflow.com by andy

  • You must to post comments
4
0

Try a real CMS like Textpattern (simple and fast but powerful) or MODx (a nice “CMS platform” build for extensibility).
Wordpress is too limiting, writing your own is too much.

NOTE: This answer was originally posted at StackOverflow.com by Prasinos

  • You must to post comments
3
0

I’ve had experience with Wordpress modifying your html and making things like media placement quite snarky. I’ve grown tired of A)Waiting to click through the Wordpress dashboard to get to the function I need; and B)Constantly modifying and reloading the site to make sure my content is displayed the way I coded it. I think Markus is correct that WP is great for blogs, bad for static or partially-static websites.

I will suggest that if the service you are trying to provide is user content creation, then perhaps you could have a Wordpress component to the site where the user content is shown, but your other work (the static stuff) is built on something else you are comfortable with.

NOTE: This answer was originally posted at StackOverflow.com by kevtrout

  • You must to post comments
1
0

Wordpress is NO CMS.

Wordpress is a very good blog platform, but it’s by no means a CMS – although it can be used as one and the latest versions facilitate that.

Rolling your own is imo a very bad idea. There are plenty of CMS frameworks and tools out there, just try them.

NOTE: This answer was originally posted at StackOverflow.com by Tigraine

  • You must to post comments
1
0

Another option, if you do want to sit back and not waste too much time: Concrete5. It’s PHP based and quite new but it’s quite a nice layout and it’s really natural for new CMS users. You can go from a paper-based sitemap and PSD to a full site structure, ready for data entry, within a day, two at a push.

It’s quite heavy though. Give their demo a look in.

NOTE: This answer was originally posted at StackOverflow.com by Oli

  • Annette
    I checked out your link and like the promise Concrete5 has for simple, quick sites ( of which I have a need)

    NOTE: This comment was originally posted at StackOverflow.com by kevtrout

  • You must to post comments
2
0

If you can code and you’re at all open to learning a new language and framework, you should give Django some serious consideration.

Some of the time, you might find yourself reinventing the wheel, and yes, there is some learning overhead, but it’s a really serious contender for “The next big thing”.

It’s major feature (over similar frameworks) is the automatically-generated admin area, which, if your models are logical enough, can be client-ready without any intervention from you. Of course you’re more than able to customise things to help clients.

NOTE: This answer was originally posted at StackOverflow.com by Oli

  • Arthur
    it does sounds very interesting, even though i've a million things to pick up in the world of .net. However they say another language always helps the understanding of your first! do google have their own python framework? know they use a lot of it, don't they?

    NOTE: This comment was originally posted at StackOverflow.com by dove

  • Annette
    Yeah Google has AppEngine which uses some of Django and some other stuff. It's a streamlined version for use on their servers so it doesn't have all the bells and whistles that Django-proper does. In time, I think they plan to implement more of it.

    NOTE: This comment was originally posted at StackOverflow.com by Oli

  • You must to post comments
1
0

I think WordPress is perfectly suited for a CMS.

NOTE: This answer was originally posted at StackOverflow.com by Ryan Rodemoyer

  • Gregory
    It depends on your needs. Wordpress isn't a CMS, but it has many features that make it suited as being used for one

    NOTE: This comment was originally posted at StackOverflow.com by Casebash

  • You must to post comments
3
0

I would advise against wordpress, which is really more of a blogging engine than a CMS. I’ve had good success with Drupal and Joomla which are true CMSs

NOTE: This answer was originally posted at StackOverflow.com by Marcus King

  • Joe
    • Joe
    • 15 years ago
    I think WordPress has evolved into something much more than just a blogging engine.

    NOTE: This comment was originally posted at StackOverflow.com by Ryan Rodemoyer

  • Tim
    • Tim
    • 15 years ago
    whatever happen to "Write programs that do one thing and do it well"?

    NOTE: This comment was originally posted at StackOverflow.com by Christopher Mahan

  • Billy
    @Marcus King, how would you distinguish between a CMS tool and a blogging engine? I mean--version control of postings? Multiple editors? Seriously--what would be the criteria you'd use for classifying an app one way or the other?

    NOTE: This comment was originally posted at StackOverflow.com by Onorio Catenacci

  • Tom
    • Tom
    • 15 years ago
    @Onorio Catenacci: multiple users&permissions, work flow, versioning, i18n&l10n of the content, custom documents (e.g.: forms, locations).

    NOTE: This comment was originally posted at StackOverflow.com by Cristian Ciupitu

  • You must to post comments
0
0

Hello,

Just following up because I didn’t hear back from you.

Do you have a quick minute to check out my infographic?

Here it is: https://www.onblastblog.com/joomla-vs-wordpress-vs-drupal/

I’m trying to spread the word and would love to post it on your site. I’ll even write a full introduction to accompany it with.

What do you say? 🙂

  • You must to post comments
0
0

Hey,

I’m Matt and attached (https://www.onblastblog.com/wp-content/uploads/2014/10/CMS-Comparison-Infographic.jpg) is a preview of my website’s updated CMS comparison cheat sheet (https://www.onblastblog.com/joomla-vs-wordpress-vs-drupal/), which comes with a free PDF download.

I’ve been told it’s very detailed and resourceful, so I hope you can find use out of it.

I would love if you could include it on your site.

Ya know I’m just trying to share the knowledge with everyone who can benefit from it and help keep the internet more secure.

Will you let me know what you think? 🙂

Cheers,

Matt Banner

  • You must to post comments
0
1

bla bla bla bla bla

Lorem ipsum uis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis.

Lorem ipsum ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetur adipisici elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua. Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

Sanctus sea sed takimata ut vero voluptua. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis.

Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. At vero eos et accusam et justo duo dolores et ea rebum. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.

Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipisici elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua. Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.

  • You must to post comments
Showing 21 - 34 of 34 results
Your Answer
Guest Author
Post as a guest by filling out the fields below or if you already have an account.
Name*
E-mail*
Website
CAPTCHA*
Enter the characters shown on the image.