Page 1 of 2 12 LastLast
Results 1 to 15 of 19

Thread: Buying a custom CMS, what to ask for?

  1. #1
    Registered
    Join Date
    Sep 2004
    Location
    Central Ohio
    Posts
    23

    Buying a custom CMS, what to ask for?

    As some of you may recall, a few months ago I was on here asking about building my own PHP based CMS. Shortly after that post, I was offered and accepted a full-time IT position and didn't really have the time to follow through with my plans.

    Now that I am in the swing of things with the new job, I am ready to start rolling out some sites. I also now have some capital to work with and am planning on hiring someone (perhaps from here or sitepoint, if anyone is interested) to create a basic CMS for me.

    What features/functionality should I specify I want. I want to be able to use this basic CMS for all my sites, adding extra modules where necessary. Also, what do you think a fair price would be for what I am asking for? Any other advice, things to look for?

  2. #2
    Administrator Chris's Avatar
    Join Date
    Feb 2003
    Location
    East Lansing, MI USA
    Posts
    7,055
    Search engine friendliness is key.

    My requirements when building the CMS for this site were:

    Search engine friendliness
    the ability to hide articles
    the ability to have different article types
    article pagination
    the ability to include descriptive text on category pages
    simple text navigation
    Chris Beasley - My Guide to Building a Successful Website[size=1]
    Content Sites: ABCDFGHIJKLMNOP|Forums: ABCD EF|Ecommerce: Swords Knives

  3. #3
    Registered
    Join Date
    Sep 2004
    Location
    Central Ohio
    Posts
    23
    Search engine friendly URL's are definitely on my list. What do you mean by the ability to have different types of articles? How long would it have taken you to create such a CMS if you would have started from stratch? I assume you modifed the code from your other sites to create this one.
    Last edited by jbiggs77; 05-23-2005 at 03:32 PM.

  4. #4
    Senior Member chromate's Avatar
    Join Date
    Aug 2003
    Location
    UK
    Posts
    2,348
    Depends what you mean by CMS. Do you want to be able to produce content *in* the CMS? Or just structure the site using the CMS?

    If you want to be able to create content in the CMS then it's tricky, as you need a way of easily manipulating text styles, creating tables etc. Sitepoint's Editize does this. There's also HTMLEditBox which is MUCH cheaper, but it used to be that you had to be using IE to take advantage of the active-x controls. Editize is platform platform independent. So if you're going to offer this feature, try and make it as platform independent as possible. A lot of hard work though.

  5. #5
    Registered
    Join Date
    Sep 2004
    Location
    Central Ohio
    Posts
    23
    Just structure the site. I don't need anything fancy.

  6. #6
    Registered
    Join Date
    Apr 2005
    Posts
    103
    How about the ability to skin the layout of the site easily withought having to dig into the PHP code etc? Templating mechanism is what is called hehe.

  7. #7
    4x4
    Join Date
    Oct 2004
    Posts
    1,043
    To build a CMS to be able to use for "all" your sites will be somewhat difficult and a long task. Since each site will most likely be a littler different than the previous one the needs will be as well. I use a "group" of CMS functions I made in php for my sites but each site I re-arrange differently, and add/subtract features.

    I like:
    -Unlimited Categories (Sub-categories too)
    -Category/Sub-Cat descriptions
    -Cat/Sub-Cat Optionals
    --Pictures
    --Ads [this way you can offer/post ads specific to a certain topic]
    --Sorting Option
    -Date Posted under Article (optional)
    -Able to re-arrange/move categories easily
    -Multi-User Levels (allow users access to add articles in only 1 category or as many as you choose)
    -Search Engine Friendly of course

    I like "Most Recent..." and "Top Viewed..." on the homepage.

    As far as layout goes it changes site to site. I like to put in php includes where I think ads may work or maybe site-wide announchements. (Header, Mid, Right, Left, Bottom, Footer)

    When adding articles I use a checkbox with a default of "Viewable" so if I uncheck it the article is no longer shown on the site but is still stored in the database, and can be edited in the future to be made viewable again.

    I track article pageviews to not only show top articles but to keep track of pages that perform in terms of advertising.

    Basically each time I need a new CMS I need a new feature in the CMs for the site so that gets added.

    Also, depending on your site a "credit" field/option may be a nice thing to add.

    At the end of the articles maybe randomly list ~3 other articles in that category.

    Sorry the ideas are not organized better but I just wrote them out as they came to me.

  8. #8
    Administrator Chris's Avatar
    Join Date
    Feb 2003
    Location
    East Lansing, MI USA
    Posts
    7,055
    Quote Originally Posted by jbiggs77
    Search engine friendly URL's are definitely on my list. What do you mean by the ability to have different types of articles? How long would it have taken you to create such a CMS if you would have started from stratch? I assume you modifed the code from your other sites to create this one.
    Different types of articles.... reviews/tutorials/tips all arranged differently.

    I think this site took me about a month, but most of it was new code.
    Chris Beasley - My Guide to Building a Successful Website[size=1]
    Content Sites: ABCDFGHIJKLMNOP|Forums: ABCD EF|Ecommerce: Swords Knives

  9. #9
    Registered
    Join Date
    Apr 2005
    Posts
    103
    The top viewed is a good idea, but I find that it only works well when a site is already established, otherwise you won't really get meaningfull results.
    Last edited by Snowballer; 05-24-2005 at 12:12 PM.

  10. #10
    4x4
    Join Date
    Oct 2004
    Posts
    1,043
    Quote Originally Posted by Snowballer
    The top viewed is a good idea, but I find that it only works well when a site is already established, otherwise you won't really get meaningfull results.
    Make it so that it only shows that section when the views are over 100 for a page? Then if there are none the section wont exist.. This could be another option in your custom CMS

  11. #11
    Registered
    Join Date
    Apr 2005
    Posts
    103
    ToddW,

    yeah your right, if you think about it long enough there are ways to make it meaningfull even for small content sites.

    the issue is this, say you start of with 1-5 pieces of content. Its going to be pretty worthless having that data on the main page since you have very few content pieces...that is basically what I was getting at.

  12. #12
    4x4
    Join Date
    Oct 2004
    Posts
    1,043
    Quote Originally Posted by Snowballer
    ToddW,

    yeah your right, if you think about it long enough there are ways to make it meaningfull even for small content sites.

    the issue is this, say you start of with 1-5 pieces of content. Its going to be pretty worthless having that data on the main page since you have very few content pieces...that is basically what I was getting at.
    Maybe, Maybe not... For a site starting out an article on the homepage may mean the difference from that article's page/url making it into SERPs and not.

    Search engines don't always crawl in a couple pages on their first visits so if you link to something from your homepage it may get listed where as something from the homepage to the category page then a link to the article may not.

    -Todd

  13. #13
    Registered
    Join Date
    Jul 2005
    Posts
    33
    - generation of static content for minimizing server load,
    - proper linkbuilding
    and the thing missed in most apps -- proper handling of HTTP headers (Modified / Expires etc)

    and stats/tracking works better being implemented inside site engine

  14. #14
    "Out of the closet geek" wrigh_g's Avatar
    Join Date
    Aug 2003
    Location
    In the middle of No where
    Posts
    101
    what about Mambo (http://www.mamboserver.com) its free, its great and highly customisable. It also has a large community which are always developing modules for it?

  15. #15
    Gimme Fries with that!
    Join Date
    Aug 2004
    Posts
    1,469
    one feature im building into my cms system which is a MUST in my opinion is spellcheck... god my spelling is horrible Its easy to do and is a MUST!

Similar Threads

  1. What should be considered before buying reseller account?
    By hixe in forum Web Hosting & Servers
    Replies: 17
    Last Post: 10-03-2006, 10:07 AM
  2. Buying
    By thebillionaire in forum The Marketplace
    Replies: 0
    Last Post: 12-29-2004, 06:23 PM
  3. Chris, how do I get a custom avatar?
    By nohaber in forum Site and Forum Feedback
    Replies: 11
    Last Post: 07-28-2004, 08:18 AM
  4. Replies: 3
    Last Post: 07-12-2004, 02:33 PM
  5. Custom Titles?
    By Mike in forum Site and Forum Feedback
    Replies: 4
    Last Post: 08-23-2003, 05:40 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •