FAQ - CMS

Hook: php_rss


Use this hook to execute PHP code in the rss.php file.For example:if ($displayRSS) { echo My RSS: .$displayRSS; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_index_bottom


Use this hook to execute PHP code at the very end in the index.php file.For example:if (isset($page3)) { echo CMS is ready...; } else { echo CMS is always ready...; }if you like to include a ...

Read more

Hook: php_index_top


Use this hook to execute PHP code in the index.php file before anything else.For example:define('MY_VAR', cool);if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_sitemap


Use this hook to execute PHP code in the sitemap.php file.For example:if ($cat) { echo Categories: .$cat; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_tags


Use this hook to execute PHP code in the tags.php file.For example:if ($cleanTag) { echo Your tag: .$cleanTag; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_search


Use this hook to execute PHP code in the search.php file.For example:if ($SearchInput) { echo Your search term: .$SearchInput; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

What can I do with CMS?


CMS is a software to build modern websites based on HTML5 and CSS3 and Bootstrap 3.You can do almost anything with CMS, because it is not blown up with any unnecessary functions it is a perfect platform for ...

Read more

How big is CMS?


CMS is very lightweight and super fast! It is straight forward and does not contain any unnecessary files or blown up functions. In fact CMS packed as a ZIP file is only around 4MB, have you every seen a ...

Read more

What do I need to run CMS?


You need a web server to run CMS.The web server must have PHP and MySQL with one available database.If your web server is running on Apache you can use the build in URL optimizer and get a slightly better ...

Read more