how to set up a wordpress blog

38
Why Blog? Push-Button Publishing Let the World know what you think!

Upload: kichu

Post on 19-May-2015

1.995 views

Category:

Technology


3 download

DESCRIPTION

This was presented by me on 2008-02-01 in the Free and Open Source Conference held at Chennai, India under the auspices of Indian Linux Users Group and National Resource Centre for Free and Open Source Software, Government of India.

TRANSCRIPT

Page 1: How to set up a Wordpress Blog

Why Blog?

Push-Button Publishing

Let the World know what you think!

Page 2: How to set up a Wordpress Blog

Where?

http://Blogger.com/

http://yournick.blogspot.com/

Page 3: How to set up a Wordpress Blog

Blogger

● Google stable

● Hosted solution

● No constraints

● Customisable

Page 4: How to set up a Wordpress Blog

WordPress.com

● Hosted solution

● Uses WordPress MU

● Themes: yes

● Customisable: NO

Page 5: How to set up a Wordpress Blog

WordPress.com

● Plugins: No

● CSS tweaking: No

● Widgets: NO

● Custom-localisation: No

● Javascript: NO

Page 6: How to set up a Wordpress Blog

WordPress

● FOSS software

● Downloadable from http://wordpress.org/

● PHP + MySQL

● To be self-hosted

● Total Freedom!

Page 7: How to set up a Wordpress Blog

What you need

● A domain name

● .in < Rs.200 p.a

● .com... < Rs.500 p.a

● Select a good Registrar

Page 8: How to set up a Wordpress Blog

What you need

● A good webhost

● Webspace: >100 mb

● PHP version > 4.3

● MySQL version > 4

● FTP

Page 9: How to set up a Wordpress Blog

What you need

● PHP Apache configuration

● “fopen” enabled

● Not in “safe mode”

● Apache mod_rewrite module

installed

Page 10: How to set up a Wordpress Blog

Set it up

● Create MySql database

● Note db name, username & pw

● Configure FTP client

Page 11: How to set up a Wordpress Blog

First Steps

● Download latest version from

http://wordpress.org/

● Unzip the compressed package

● Read readme.html

Page 12: How to set up a Wordpress Blog

First Steps ...

Page 13: How to set up a Wordpress Blog

First Steps ...

Page 14: How to set up a Wordpress Blog

Initialize

● Rename wp-config-sample.php

to wp-config.php

● Open config.php in an editor

● Fill in your db details

● Configure advanced settings

Page 15: How to set up a Wordpress Blog

Config.php

// ** MySQL settings ** //

define('DB_NAME', 'putyourdbnamehere'); // The name of the

database

define('DB_USER', 'usernamehere'); // Your MySQL username

define('DB_PASSWORD', 'yourpasswordhere'); // ...and

password

define('DB_HOST', 'localhost'); // 99% chance you won't need

to change this value

define('DB_CHARSET', 'utf8');

define('DB_COLLATE', '');

Page 16: How to set up a Wordpress Blog

Config.php ...

// You can have multiple installations in one database if you give each

a unique prefix

$table_prefix = 'wp_'; // Only numbers, letters, and underscores

please!

// Change this to localize WordPress. A corresponding MO file for the

// chosen language must be installed to wp-content/languages.

// For example, install ta.mo to wp-content/languages and set

WPLANG to 'ta'

// to enable Tamil language support.

define ('WPLANG', '');

Page 17: How to set up a Wordpress Blog

Installation

● Select root or subdirectory

● Upload WP files thru FTP

● Keep WP directory structure

● Create .htaccess file & upload

Page 18: How to set up a Wordpress Blog

5-Minute install!

● Point browser to:

http://yourwpdir/wp-admin/install.php

● Enter desired blog title

● Fill in your email ID

● Allow blog to search engines

Page 19: How to set up a Wordpress Blog

Done!

Page 20: How to set up a Wordpress Blog

Admin area

Page 21: How to set up a Wordpress Blog

Admin profile

Page 22: How to set up a Wordpress Blog

General options

Page 23: How to set up a Wordpress Blog

Reading options

Page 24: How to set up a Wordpress Blog

Write a post

Page 25: How to set up a Wordpress Blog

Themes

Page 26: How to set up a Wordpress Blog

More themes

● http://themes.wordpress.net/

● Select themes, d/l & unzip

● Put in blogdir/wp-content/themes

● Go to yourblog/wp-admin/

● Select theme in Presentation

Page 27: How to set up a Wordpress Blog

Plugins

● Go to http://wordpress.org/

● Extend => Plugins

● Search using tags

● Read and understand

● Select, D/L and unzip

Page 28: How to set up a Wordpress Blog

Plugins ...

● Upload to:

yourblogdir/wp-content/plugins/

● Go to Admin => Plugin

● Activate selected plugin

● Go to options and configure

Page 29: How to set up a Wordpress Blog

Plugins ...

Page 30: How to set up a Wordpress Blog

Advanced

● Read the WP Veda - “Codex” at

http://codex.wordpress.org/

● A wiki updated regularly

● Frequent the forums at

http://wordpress.org/support/

Page 31: How to set up a Wordpress Blog

Advanced ...

● Write “Pages”

● Tweak themes with CSS

● Provide navigation

● Backup regularly

Page 32: How to set up a Wordpress Blog

Blogging tips

● Decide on the focus

● Write a niche blog

● Update regularly

● Moderate comments

Page 33: How to set up a Wordpress Blog

Blogging tips ...

● Reply to comments

● Write original stuff

● Use pictures and video

● Link to citations

● Don't indulge in flaming

Page 34: How to set up a Wordpress Blog

Blog traffic● Comment on others' blogs

● Subscribe to pinging and blog

networking sites viz:

● Technorati

● MyBlogLog

● BlogCatalog

Page 35: How to set up a Wordpress Blog

Blog traffic ...

● Publish in Feedburner

● Tag the posts properly

● Flaunt your blog in all social

networking and bookmarking sites

viz: Digg, Del.icio.us etc. and in

your profile and sig.

Page 36: How to set up a Wordpress Blog

In your language

● Set language in config.php

● Download wordpress.pot

● Gettext is used for I18N & L10N

● Use Poedit for translation

● Upload ta.mo to /wp-content/language

Page 37: How to set up a Wordpress Blog

Contact me!

S.K

http://www.cyberbrahma.com/

[email protected]

Page 38: How to set up a Wordpress Blog

Thank you!