Quote:
Originally Posted by HelpHolly
When you install manually is it an FTP type thing and fairly simple or is it something where I would need to add databases and whatever?
|
Hi, HelpHolly I have tried to explain the procedure for manual installation of Wordpress.
Before Installation Process
1) Download Wordpress Latest Edition Pack from Wordpress Site & Extract it.
2) Create a Database, Database Username & Password from your cPanel.
3) Rename the wp-config_sample.php file to wp-config.php
4) Edit the wp-config.php (Explained below)
Installation Process
1) Upload the files to the folder in which you want to install Wordpress. Say like if you want to install it to your root folder then it should be /public_html/ and if you wish to install it in a folder then it should be /public_html/FOLDER_NAME/
2) Change the permission of the file wp-config.php and CHMOD it to 777 for installation.
3) Run the install script, if it is on root then the path will be hxxp:// www. yourdomainname.com/wp-admin/install.php and if it is on a directory then the path would be hxxp:// www. yourdomainname.com/FOLDER_NAME/wp-admin/install.php
4) Filling up the Connection details: In the Database connection screen it will ask you the Database Name, Database Username, Database Password, Database Host and Table Prefix.
(i) You will have to input here the Database Name, Database Username & Password which we created in the STEP 2 of Before Installation Process.
(ii) In the Database Host, If the Hosting Server and Database Server are the same then it should be "localhost" and if the Hosting Server and Database Server are different then you will have to confirm your Database Hostname with your Hosting Provider.
(iii) In the Table Prefix keep it as "wp_" and if you want to run multiple Wordpress Installation in a single database then change it.
(iv) Click on SUBMIT.
5) Final Step: Enter your BLOG TITLE and your Email Id and click on Install Wordpress
6) You will get the Username & Password. The credentials displayed are the Admin Username & Password to manage your Wordpress Blog, so keep it carefully.
7) After the installation Change the permission of the wp-config.php file and CHMOD it to 644 or 655
8) Also DELETE the install.php file or rename it for security reasons.
Editting the wp-config.php file
Code:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'DATABASE_NAME');
/** MySQL database username */
define('DB_USER', 'DATABASE_USERNAME');
/** MySQL database password */
define('DB_PASSWORD', 'DATABASE_PASSWORD');
/** MySQL hostname */
define('DB_HOST', 'localhost');
P.S: If you face any problems for installation please confirm that you have got all the correct database information and and it was correctly entered in wp-config.php file.