Thank you for purchasing CMS pro - the unique content management system that incorporates modular design. You can build your site without the need for any third party products. CMS pro has reliable functionality and easy to use interface.
CMS pro is easy to install and simple to manage. Use it as a stand-alone application or in conjunction with other applications to create entry level sites, mid-sized or large sites. You can be confident that you will be able to invest in this system and continue to grow it to any possible level.
Good Luck with CMS pro!
This installation manual was created to help you install CMS pro on your site. The whole installation process can be divided into the following steps:
CMS pro requires your web server to meet the following minimum system requirements:
LAMP is a recommended server configuration.
CMS pro has user-friendly web interface so software requirement is pretty simple - you just need a modern browser.
You can download previously purchased script from your codecanyon dashboard.
If you already have an empty database and you don't want to setup the software into new database you can skip this step and proceed to script upload. Otherwise, keep up reading to learn how to create a new database on your server.
Basically, there is one of three ways to create a new database on your server:
If you are not sure what cPanel, phpMyAdmin, or SSH is, please contact your hosting company. They will give you at least one of those accounts. Below is the detailed description of each method described.
Creating new database using cPanel (you hosting account control panel) is the easiest and the fastest way and is considered the default way. If you are not experienced in installing scripts, please stick to this method.
phpMyAdmin is another way to create new database. But you must have enough correct permission to do that in phpMyAdmin.
GRANT ALL PRIVILEGES ON database_name.* TO database_username@localhost IDENTIFIED BY 'password' WITH GRANT OPTION;IMPORTANT! Don't forget to replace database_name, database_username, and password with actual database name, username, and password when running this query.
FLUSH PRIVILEGES;
The last alternative method is via your SSH account. This is the most sophisticated method.
mysql -u username -pReplace username with actual database username. You will be prompted to enter password.
CREATE DATABASE database_name;Replace database_name with actual database name.
GRANT ALL PRIVILEGES ON database_name.* TO database_username@localhost IDENTIFIED BY 'password' WITH GRANT OPTION;IMPORTANT! Don't forget to replace database_name, database_username, and password with actual database name, username, and password when running this query.
FLUSH PRIVILEGES;
By following the instructions of one of the methods above you should now have a new database created on your server.
To upload the script to your server you need an FTP client program. FTP stands for File Transfer Protocol, and FTP client is a program that allows transferring remote files via this protocol. If you want to learn more about FTP, please search Google for it.
Connect to your server via FTP and upload the script.
For the installation script to run successfully you need to set some file permissions. By setting permissions you actually tell the server to allow the script make some actions with some files.
To start changing permissions do the following:
chmod 777 backup/
chmod 777 lib/
chmod 777 uploads/
To install CMS pro you have to run installation file. In the example below we will use mysite.com as an example domain name. Whenever you see this name you have to substitute it with your actual domain name. We will also use wojocms/ as the script root directory. If your directory differs from this one you also have to change it to your actual directory.
To start installation, run the installation script by typing the following URL in your browser: http://www.mysite.com/wojocms/ (remember to substitute mysite.com with your actual domain name and wojocms/ with your directory name).
CMS pro installation process is divided into three simple steps. They are: Pre-installation check, License, Configuration. Let's review these steps in details.
This step checks your server configuration and explains if your server suits all the requirements for running the software. Besides, you can download Server Requirements Checker. Just unzip and point your browser to checker.php file and you will understand if you can go on using the CMS pro software.
Pre-installation check is divided into several groups:
Let's review all these groups in details.
| Name | Usage |
|---|---|
| MySQL Version | MySQL version that is used on your server. CMS pro requires MySQL 5.1 or above. |
| PHP Version | Version of PHP on your server. It should be equal or greater than 5.3 |
| XML Support | XML lib is used to parse RSS feeds, and for language files |
| MySQLi Support | This module is used to connect to MySQL database engine from PHP scripts. |
| GD Extension | This extension is used to generate captcha and for images and banners resizing. We highly recommend installing it in case you do not have it. |
We highly recommend setting correct values for all settings here. Anyhow, the script will still operate in case you have some of them configured in a different way. Safe Mode, Register Globals, and others must match required configuration.
Set correct permissions for all your directories and configuration file. Installation process can not be completed until you set writable permissions for lib/directory.
Please read CMS pro License Agreement. By clicking Next button you confirm you agree with the terms of use mentioned in the license agreement.
This step configures your script. It's divided into several groups: Database configuration, Common Configuration, Administrator configuration.
Here you should input correct database details.
No need to change any values here. They are generated automatically.
Please set your admin panel username and password. Later you can change all these values in admin panel. Also set your email. It will be assigned to default admin account that is created during installation.
After you fill in the forms click Next button. Your script should be successfully installed.