|
Create a personal blog with WordPress - Part I
"Start blogging today"

Contents
What is WordPress?
WordPress is a free, open-source personal publishing system that allows you to easily create a complex blog, or web log, on your site. Written in PHP and supported by a MySQL database, WordPress offers intuitive administrative tools and sophisticated design features that make it easy to develop and integrate a personal or professional blog on your site.
Below's taken from the official WordPress site:
WordPress started in 2003 with a single bit of code to enhance the typography of everyday writing and with fewer users than you can count on your fingers and toes. Since then it has grown to be the largest self-hosted blogging tool in the world, used on hundreds of thousands of sites and seen by tens of millions of people every day. (Taken from the official WordPress website, to see the completed introduction, please visit http://wordpress.org/about/)
Enough of the words and let's get started.
Create a database for WordPress in phpMyAdmin
Prior to installing WordPress, we need to create a new database for it and we will use phpMyAdmin to create the database so install phpMyAdmin QPKG if you do not have it running on your NAS yet. (phpMyAdmin QPKG can be downloaded from here) Once installed point your broswer to http://NAS-IP-Adress/phpMyAdmin/ and enter the user name and password to login (default username and password is root/admin). You can also select your preferred language.

Once in, enter the database name 'wordpress' in the field says 'Create new database' and choose a default encoding language you prefer (UTF-8 for best compatibility) then click on 'Create' button. That's it you may now proceed to step 2.

Install WordPress via QPKG
Login to the NAS and go to 'Applications' -> 'QPKG Plugins' then click on 'Get QPKG' button on the top right corner to get a list of currently available QPKG software packages. Click on the link to download the WordPress.zip file.

Once download completes first unzip the file archive then go to 'Applications' -> 'QPKG Plugins' -> 'Installation' and install the WordPress.qpkg file the same way as if you were updating the system firmware.

Upon successfully installation you should see a new entry in your QPKG page like below. Click on the 'Web Page' link will take you to the WordPress installation.

So far so good? If the installation has gone through ok, you may proceed to the step 3.
Start the WordPress web-based installation
If this is your first time installing WordPress, you will see the message below after clicking on the 'Web Page' link from the QPKG page. Just click on 'Create a Configuration File' to go to the next step.

From the previous step we've gathered database information for installing WordPress, simply click on the button 'Let's go!' to go to the next step.

Enter the information for your MySQL database server and click on the 'Submit' button.

Click on 'Run the install' button to start the WordPress installation.

Next type in your blog title for your first blog and your email address. The checkbox underneath is to specify whether or not you wish your blog to appear in the search results of Google or Technorati. Now it looks like we've got all the details required to start the installation. Click on 'Install WordPress' to start the actual installation.

Upon successful installation you should arrive this page as shown below. Please note that WordPress will create a default administration account and password for you to log in for the very first time. Do not forget to write it down. Next, we can log in to WordPress by clicking on 'Log In'.

Input the default administrator username "admin" and the password you've just written down then click on 'Login' button.

Once in your will be first taken to the administration backend where most of the settings and the configurations can be changed and made there. The first thing that is strongly suggested to do is to change the default password to something easier for you to remember. After that you may click on the link above that says 'View site' (where the red arrow's pointing to) to go to the public frontend.

|