Couch content management system is a compelling option to making a website enabled with little php knowledge. First stage is to create a database through cPanel of the hosting company.
First, create a database;
Next create a username;
It is important to use the password generator to create a secure password;
Once you have the database prepared, go to the couch cms website and download the package;
Once you have the folder downloaded, rename the config.example.php to config.php
Next you need to open it in a code editor, and add your database name, username & password;
Save the folder, and upload it to the root folder on your domain;
setup is almost complete, you should go to your domain and access the couch folder, this can be done by going to http://www.example.co.uk/couch. Once there set your username and password up and store it in a safe place. You will be greeted with the backend.
To make a .hmtl file editable through the couch cms it is done really easily, firstly change the file to become a .php file. Next you need to add the code before DOCTYPE;
<?php require_once( ‘couch/cms.php’ ); ?>
<cms:template title=’tester’ />
and the following code after </html>;
<?php COUCH::invoke(); ?>
Then all you need to do is add the following code to add something you want to edit;
<cms:editable name=’text_content’ type=’text’ label=’Text’
desc=’Enter Test Here’>
</cms:editable>
This sound then look something like this;
you can then go into the backend and edit what should appear in this place, you can see an example of this here;
Which appears on my own website at http://scottlewis.eu/exhibition/exhibition.php which you can see here under the back button in the top left (A mistake I am currently unable to fix);