Step By Step installation Guideline.

 
Apr

25

2012

Step By Step installation Guideline.

2012-04-25 12:13:19 & Posted by : Mr Developer Developer
First, you have to create your database to contain your website data.
Before you start please Check :

 

 

 

  • Hosting Server qualifies our System Requirement

  • PHP is installed on your server

  • MySQL is installed on your server

  • ionCube loader is installed or enabled

  • Login to your Client Area and Click on "My Service" link on the top menu and find the zip file link below to download and install

If any of these are not, install these first.
 
For MySQL - Install MySQL as appropriate for your operating system. There are a lot of documents on how to do this all over the internet and I'm not going to reiterate all of that here.

SECURITY TIP: Be sure to set a root password

Start your MySQL

Log in your MySQL database - For *nix operating systems and Windows from the command line: mysql -u root -p & hit enter

It will ask for the root password you set earlier.

You should get a prompt that says "mysql>"

Type in "CREATE DATABASE ;"
Do NOT include the < and >! 

Hit enter.

SECURITY TIP: Do not use the default database or user names or passwords included in the installation the document

Now you will need to make a user.

Type in "CREATE USER 'myuser'@'localhost/hostname' IDENTIFIED BY 'mysecurepassword';" & Hit enter

Type in "GRANT ALTER, ALTER ROUTINE, CREATE, CREATE ROUTINE, CREATE TEMPORARY TABLES, CREATE VIEW, DELETE, DROP, EXECUTE, INDEX, INSERT, LOCK TABLES, REFERENCES, SELECT, SHOW VIEW, UPDATE ON `mydatabase`.* TO 'myuser'@'localhost/myhostname' WITH GRANT OPTION;" & hit enter.

Type in "FLUSH PRIVILEGES;"
Your database is created, your user is created, your user has their password and their rights set. You should be ready to rumble.

 

Comments

 
Add a Comment