Is it possible to create cms without using any scripting languages ​​on the server?

I wanted to know if there is a way to create a CMS without using the scripting language on the server, i.e. use a server to store data?

+4
source share
3 answers

Theoretically, yes, but you cannot make it secure.

+3
source

I suppose it depends on what you define as a CMS. If you just want user authentication by displaying web pages, then it is entirely possible to do this with a static web server (assuming that it supports authentication mechanisms and SSL).

If you want the material to be searchable, you will need the server side SOMETHING, which performs indexing (the actual search can still be performed on the client side by downloading the corresponding index files). Or click on Google, but this only works if you do not have security requirements.

If you want to upload files, your server must also handle this.

Without specifying exactly what you are looking for, there is no way to answer this question.

+2
source

CMS stands for "Content Management System". This is basically an organized way to store your content using some productivity tools (user interface, workflows, etc.)

Your server can be seen as a CMS:

  • HTTP server provides various authentication schemes
  • HTTP server provides encryption (via https)
  • The file system allows you to create, read, update and delete files.
  • The file system provides a way to manage the rights of the user (and even groups) in these files.
  • The file system allows you to organize files in folders.
  • The file system even allows you to link to files in multiple folders (via symbolic links)

So, you can use your server as a CMS. All you have to do is define your content management rules:

  • folder organization
  • file naming conventions
  • file format conventions
  • ...
+2
source

Source: https://habr.com/ru/post/1343913/


All Articles