{"id":18902,"date":"2016-04-17T14:01:53","date_gmt":"2016-04-17T19:01:53","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=18902"},"modified":"2022-12-13T06:23:11","modified_gmt":"2022-12-13T12:23:11","slug":"how-to-install-typesetter-cms-on-centos","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-typesetter-cms-on-centos\/","title":{"rendered":"How to Install Typesetter CMS on CentOS"},"content":{"rendered":"
Typesetter is an open source CMS written in PHP that allows website developers to create feature rich and flexible websites using an easy to use true WYSIWYG editor. It uses flat file storage, and this is one of the main differences between Typesetter and other content management systems, so there is no need of database to store and retrieve the actual data. Download the latest version of Typesetter CMS available at ‘https:\/\/www.typesettercms.com\/Download’ to a directory on the server using the following commands:<\/p>\n Extract the archive and move the Typesetter CMS files to the document root directory of your website:<\/p>\n The web server user (Apache) needs to be able to write to certain Typesetter files and directories, so you can easily accomplish that by executing the following command:<\/p>\n Locate the php configuration file using the following command:<\/p>\n Edit the \u2018php.ini\u2019 configuration file and disable Safe Mode, Register Globals and Magic Quotes if it is not already done so:<\/p>\n Create a new virtual host directive in Apache. For example, edit your Apache configuration file (\u2018\/etc\/httpd\/conf\/httpd.conf\u2019 by default) and un-comment the following line: Restart the Apache web server for the changes to take effect:<\/p>\n Open your favorite web browser, navigate to http:\/\/your-domain.com\/ and if you configured everything correctly the Typesetter CMS installer should be starting. You should follow the easy instructions on the install screen inserting the necessary information as requested: enter email address, administrator login credentials and click ‘Install’.<\/p>\n For security reasons, it is recommended to delete the install.php file from your server:<\/p>\n That is it. The Typesetter CMS installation is now complete. PS.<\/span><\/strong><\/span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":" Typesetter is an open source CMS written in PHP that allows website developers to create feature rich and flexible websites … <\/p>\n
\nIt is fairly easy to install Typesetter CMS on a CentOS VPS<\/a><\/strong>. The installation process should take about 5 minutes if you follow the very easy steps described below. This install guide assumes that Apache and PHP are already installed and configured on your server.
\nAt the time of writing this tutorial, the latest stable version of Typesetter CMS is 5.0 and it requires:
\n<\/p>\n\n
cd \/opt\r\nwget -O typesettercms.zip http:\/\/www.typesettercms.com\/Special_gpEasy?cmd=download\r\n<\/pre>\n
unzip typesettercms.zip\r\nmv Typesetter \/var\/www\/html\/typesettercms\/<\/pre>\n
chown apache:apache -R \/var\/www\/html\/typesettercms\/<\/pre>\n
#php -i | grep php.ini\r\nConfiguration File (php.ini) Path => \/etc\r\nLoaded Configuration File => \/etc\/php.ini<\/pre>\n
safe_mode = Off\r\nregister_globals = Off\r\nmagic_quotes_gpc = Off<\/pre>\n
\n#NameVirtualHost *:80
\nThen, add the following lines at the end:<\/p>\n<VirtualHost server_IP:80>\r\nServerAdmin admin@yourdomain.com\r\nDocumentRoot \/var\/www\/html\/typesettercms\/\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\n<Directory \/var\/www\/html\/typesettercms\/>\r\n Options FollowSymLinks\r\n AllowOverride All\r\n<\/Directory>\r\n ErrorLog logs\/yourdomain.com-error_log\r\n CustomLog logs\/yourdomain.com-access_log common\r\n<\/VirtualHost><\/pre>\n
service apache2 restart<\/pre>\n
rm \/var\/www\/html\/typesettercms\/include\/install\/install.php<\/pre>\n
\nHead over to the Typesetter administrator back-end at http:\/\/your-domain.com\/admin , install and configure plugins, install new theme and start creating your blog.
\n
\nOf course you don\u2019t have to do any of this if you use one of our Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install\u00a0Typesetter CMS<\/strong> for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n