Reputation: 7982
I wanted to know if there is a way to build a CMS using no scripting language on the serverside, i.e. only use server to store data?
Upvotes: 4
Views: 969
Reputation: 2186
CMS stands for "Content Management System". It's basically an organized way to store your content, with some productivity tools (UI, workflows, ...)
Your server can be seen as a CMS :
So yes, you can use your server as a CMS. All you have to do is define rules for your content management :
Upvotes: 2
Reputation: 35687
I suppose it depends on what you define as a CMS. If you just want user authentication, displaying web pages, then this is quite possible to do with a static-serving web server (Assuming it supports authentication mechanisms and SSL).
If you want stuff to be searchable, you'll need SOMETHING server side doing the indexing (the actual search can still be done client side by downloading relevant index files). Or tap into Google, but this only works if you have no security requirements.
If you want to be able to upload stuff, your server needs to handle this as well.
Without specifying exactly what you're looking for, there's no way to answer this question.
Upvotes: 2