Posts Tagged ‘Root Directory’
MEWEBHOST – WordPress Tutorial – How To Install WordPress – Fantastico Autoinstaller – MEWEBHOST.COM
MEWEBHOST shows how to install WordPress automatically via your cpanel using the “Fantastico”. For more WordPress Tutorials visit blog.mewebhost.com MEWEBHOST.COM offers the best hosting solution for your wordpress blog. mewebhost’s new hygrid hosting platform gives you unlimited disk space, bandwidth and mysql databases. Video Transcript: In this video, learn how to install wordpress automatically via your cpanel with Fantastico Deluxe which is offered free by most cpanel hosting companies. And this is the main Fantastico Deluxe screen, and if you scroll down, you’ll be able to see that besides the wordpress application that we want to install, you will also find a lot of other useful open-source free PHP scripts that you can install to your server; for example, OS Commerce; zencart; and even several Wiki scripts; and also some forum scripts. So you’re going to install wordpress just click on wordpress . Next, click on New Installation. Okay, so this is the main setup or configuration screen for your new wordpress blog. And there’s just a few fields here that you need to fill up, but the most important is this field here that asks you which directory you want to install wordpress on. So for most cases, if your website is dedicated to just that wordpress blog, then you’d want to install the wordpress software in the root directory, whereby you leave this column entirely empty, but if you want to install wordpress to a particular folder on your website, for example, if you wanna install it to a folder called “Blog,” then you can just enter the directory named “Blog” right here. I’m going to install this to the root folder of my website, so I’m gonna leave that blank, and the next thing you need to fill up is the Admin access data and also the password. And you may want to enter your site name, and a description of your site. Okay? So when that’s done, just click on “Install wordpress.” Okay, so it says here that the mysql Database has been created, and this is the name of the mysql Database, and then just some confirmation notes here that I’ve chosen to install wordpress on the root directory of my website, and this is the access URL, of course, in this example I’m just using, “youractualurl.com.” But this would be your actual website URL. And then, you’re gonna click on “Finish Installation” to finalize the setup and upload all the files to your web server. Okay, and success! Your new wordpress blog has been installed for you, and you’ll see the information that you entered earlier, so in my case, I’m gonna log in with the username Admin and my password, and the full URL that you can log in to isshould be listed right here. Now if you want to have a copy of the installation details, then you can just enter your email address in this section here and click on “Send Email,” and all this information that you see here would be emailed to you. But for now, I’m just going to log in to the wordpress dashboard itself. I’m going to click on the dashboard log-in URL. So you would probably see a log-in screen like this, and just enter the information that you have entered earlier in this setup process, and click on “Log In.” And I have successfully logged in to my new wordpress blog. And you can see that the site name that I’ve entered is right here, and if you want to preview your wordpress blog, then you can just click on the link here that says, “Visit Site.” And here, you can see the default wordpress installation this is how your wordpress would look like every time you install a new wordpress blog. So that’s how you install wordpress using cpanel. (c) 2000-2010 ME Webhost (mewebhost.com) All Rights reserved
How To Install WordPress In 5 Easy Steps
WordPress has never been easier to install than the latest version. In this article, I will describe how to install WordPress.
INSTALL WORDPRESS IN FIVE EASY STEPS
- Download WordPress
The first installation step is to Download WordPress from http://wordpress.org/download/. I created a directory on my PC called “wordpress” in which to collect the files and images I will use for my WordPress installation and customization. Once the download competed, I saved the .zip file.
- Unzip WordPress
After saving the file, I opened it with the zip/unzip program I use, and selected all of the files. Since I will be testing and modifying WordPress locally to begin with, I “extracted” the files to the root directory of the Apache server I use for my PC test bed.
If I were going to install WordPress “for real” on a live web site, I would have used an FTP client to upload the .zip file to the desired directory at my hosting service and unziped the file there. Firefox has a terrific and *free* FTP client, FireFTP, that can be used for the upload.
- Create the Database
At this point, the WordPress database needs to be created. WordPress requires a database to store the site content and other information. I use MySQL for my database server both on my PC test bed and on my live sites. I use phpMyAdmin as an interface to MySQL.
Creating the database is really simple using phpMyAdmin. I simply start phpMyAdmin, enter the database name, and hit the “Create” button. WordPress will create the tables it needs in the database.
- Create wp-config.php
WordPress needs to know how to access the database once it has been created. That’s what the wp-config.php file is for. WordPress includes a file called “wp-config-sample.php.” This file needs to be modified with the database access information and renamed to “wp-config.php.”
Open the config file with any text editor. The critical entries are DB_NAME, DB_USER, DB_PASSWORD, and DB_HOST.
As an enhanced security measure, I obtained a unique SECRET_KEY and pasted this into the file. I then saved the edited file as wp-config.php. The text below shows the code I changed:
// ** MySQL settings ** //
define(‘DB_NAME’, ‘wordpress’); // The name of the database
define(‘DB_USER’, ‘rtivel’); // Your MySQL username
define(‘DB_PASSWORD’, ‘MyPassword’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
// Change SECRET_KEY to a unique phrase. You won’t have to remember it later,
// so make it long and complicated. You can visit http://api.wordpress.org/secret-key/1.0/
// to get a secret key generated for you, or just make something up.
define(‘SECRET_KEY’, ‘diq`~@|CH6)l@u>x;hA>1ew1maZ/)ToE!y%}}ZYAI!=V^L()eooB!0V+k8LJa!Eh’); // Change this to a unique phrase.
- Run the WordPress Installer
After completing the edit of the wp-config.php file, I started the installation script by entering this URL to my Apache server into my browser:
localhost/wordpress/wp-admin/install.php
For a live site, the URL might be something like this:
yourdomain.com/wordpress/wp-admin/install.php
The first installation screen asks for the blog name and contact email address.
The next screen announces a successful installation and provides a username and password for the administrator. Be sure to save this password!
The installation is now complete. I can now log into WordPress and begin managing the blog, customizing the theme, or adding content.
Or, I can click the link at the top of the log-in screen and go to the blog’s home page.
If you don’t manually create a wp-config.php file, WordPress will prompt for the information it needs and try to complete the installation.
That’s it!
WordPress should now be installed.