Advertisements

Getting Started

Code You Can Use: Copyright Notice

code-you-can-use-copyright-notice

In a recent post at Problogger a guest post by Mark Patterson brought up some important legal issues for bloggers: Intellectual Property Law Tips for Bloggers.

I highly recommend all bloggers, even people just thinking about blogging, to read this post. I imagine some of it will be over your head (some of it went way over my head anyway!) and may not be relevant to you right now - but you may very well need it at some point in the future. You can always skim through it now, make a mental note of what's in it and bookmark it for sometime in the
future.

Copyright
One of the topics discussed in the post was copyright. Anything you create you own the copyright to, but you should really include a copyright notice on you blog also. Mark noted:

"Let's just say that if you ever had to take legal action against someone who blatantly copied your content, your failure to use a copyright notice will substantially devalue your case."

I know that I don't really display my copyright properly on my blogs - I should really be using my full name, but to keep a little bit of privacy, I usually just use my first name or a nickname. The copyright notice should include either the copyright symbol or the word 'copyright' and also include the year the content was first published or the range or years.

The code I use
I used to hand edit my year range to include the present year sometime around the first of each year. But it is easy to forget to change it, and I've seen many, many sites of others where they have apparently forgotten to update theirs too.

Rather than hand editing it each year you can use PHP code to display the current year. My copyright notice is written like this:

& copy; 2003 - < ?php echo date("Y") ?> ideasforwomen.com

The ampersand and the word 'copy' with the semicolon after it will give you the copyright symbol (©)- but and this is important - you need to get rid of the space between the ampersand and the word 'copy' - I had to put the space in here so you could see how I did it. The first year I had my site was in 2003, so that is listed first. Then the code within the php tags should give you the current year. And, like I mentioned above, you should really use your first and last name if at all possible, instead of your domain name like I do.

If you use this code on your blog, you don't ever have to worry again about changing the current year to January by hand!

How do you make use of it?
Within the WordPress theme you are using, find the footer file and at the bottom right before the closing body and html - place the code. And that's it! I hope it makes your like easier, as it has mine!

Blogging Tools

blogging-tools

While blogging doesn't require a whole lot of extra tools and things to do it - in addition to your browser and either a account at a site for a hosted blog or your own WordPress blog - there are some tools that can be very useful to a blogger.

Graphics or photo editing software
It can be very helpful to have software to either make or modify your own graphics or edit photos. If you can't afford to pay someone you can make your own logo for your blog if you have some graphics software. You may also want to make other graphics to go with certain posts or pages. If you take photos for your blog, you may want to edit parts out for privacy, etc. I have been using Photoshop for a very long time, but I know it is too expensive for many people (I use a really old version!). There are also many inexpensive or free alternatives available.

Pencil and Paper
Using pencil and paper as a tool for blogging may seem silly for something you do on a computer, but actually I find I turn to them quite often. Sometimes if I having a difficult time writing, it is easier to get my ideas out initially on paper and then finish up on my computer. You never know when a good idea might pop in your head when your computer is not nearby either.

I get my best ideas while lying in bed - so keeping a piece of paper and pencil by your bed can be very helpful. I also get good ideas while in the shower - but paper and pencil don't work too well there! I also make sure I bring paper and pencil whenever I leave the house too - when waiting in a doctor's office or walking around in a grocery store I sometimes get good ideas too! And I've learned from past mistakes that if I don't write something down right away I usually forget it!

Dictionary and Thesaurus
A dictionary and thesaurus are really almost necessary tools for blogging. Of course, you don't have to use a printed one - unless you prefer a paper one - but it can be a good idea to keep a dictionary and thesaurus site that you like bookmarked so they are handy when you need them.

HTML editing software
Sometimes you may want to edit a plugin, some other script or even the WordPress theme you are using. There is software available that isn't too expensive and also some free alternatives for editing HTML, PHP, CSS or other code. You can also use Notepad for editing code - but you shouldn't use MSWord - it can add in characters that will mess up your code.

Statistics
At some point you will want to have some way of knowing how many people are visiting your blog, how they found it, who is linking to you, etc. Google Analytics is a great - and free! - service which works pretty well. You may also want to consider a log analysis software to get even more and more accurate information about your blog and visitors.

Feed Reader
If you are reading this and have a blog you probably already use a feedreader - but if you don't you should know that they are a great way to keep track of and read other blogs. I can't imagine how I could keep up with as many blogs as I do if I didn't use one. They are really necessary if you want to keep up with what is happening in the blogosphere, your friends blogs, your competitors, etc.

So - there's a few tools that can be really useful - even necessary for bloggers. Darren Rowse lists more here
and here.

What other tools do you use? Or what would you add to this list?

Code You Can Use: Social Media Links

code-you-can-use-social-media-links

I'm sure many of you have on your own blog or have seen blogs with links to some of the social media sites either after their posts or before them. These can make it easier for people to submit or bookmark your site.

If you use FeedBurner for your feed, they offer their 'FeedFlare' to make it easier to put these links in both your feed and on your actual blog. I still use FeedFlare for my feed, but I didn't like the formatting and some other things about the code they generate for you to use on your blog. There are plugins to do this with too - but the one I tried anyway - didn't give me as much control of the formatting that I wanted either.

I eventually just found the code to use for the link from each of the sites I was interested in and hand coded the whole thing so I could make it look how I wanted it to.

Social media sites
There are many, many social media voting and bookmarking sites, but many of them are not used too much or are not relevant to my blog's topic. Based on some reading I've done, I've narrowed it down to just a few to use on my blog:

  • StumbleUpon
  • - because many people use it and get traffic from it.

  • Kirtsy
  • - because it is relevant to a blog for women.

  • Delicious
  • - it's been recommended to use it and easier to do well in than Digg

  • Reddit
  • - same as Delicious

  • Digg
  • - because, well, everyone seems to have a link to it and some of my posts could do well there if I got enough Diggs.

The code I use
While I liked the small icons I saw on many blogs, I think they can be confusing sometimes - I forget which site goes with which image. I wanted mine to include both the name of the site and the small icon at the bottom of each post. FeedFlare didn't do it that way and neither did Sociable (at least I couldn't figure out how to make it do it this way).

I use the following code at the bottom of each of my posts:

You can style the paragraph tags to look however you want them to look. I center mine and keep the text small.

This code goes into the index.php file of your theme right after the div with class="storycontent" closes.

I also wanted something shorter and simpler to put at the beginning of my posts that uses just the icons. I figure this might be easier for people in a hurry and who are really familiar with all the icons used:

This code goes in the index.php page of your theme right after the following code:

The exact placement of the code may change depending upon the theme you use and of course where you want to put it. This is something you can play around with, try it different ways, until you get it where you want it and how you want it to look!

Plugin Power: Comment Email Responder

plugin-power-comment-email-responder

It is very important to reply back to people who leave comments on your blog. I'll admit that I don't always follow my own advice here. I try, but don't always do so well. But it is good to do because it will help you to attract more loyal and regular readers. People who have really popular blogs with dozens of comments being left may not be able to reply to everyone, but until you get to that place it is a good idea to reply back to as many commenters as you can.

One question people often have is should they reply back to the person who left the comment, through another comment left in the comments section of your blog or email them back personally? If you reply back in the comments section there is a possibility that the commenter will never see it if they don't come back to check the blog post again. Using the Subscribe to Comments plugin helps, but it doesn't guarantee that any specific reader has actually subscribed to the comments.

If you email them only and don't respond in the comment section, when other people visit your blog it may look to them as though you never respond back to those who leave comments. Responding both in the comments section and sending each person an email can be kind of time consuming.

Why use the Comment Email Responder plugin?
The Comment Email Responder solves the problems mentioned above by letting you both reply in the comments section and email the commenter back at the same time.

How it works
Comment Email Responder works by creating a small icon of an envelope with an arrow on it next to each commenters name - but only you can see it when logged in as admin. When you click on it, it moves the cursor down into the comments text box. You then reply in the comments section - and the plugin will then also send your comment to the commenter in an email. But - and this is the really cool part - if the person has clicked the subscribe to comments box - it doesn't send them an email. So no one will get 2 emails sent to them.

Installing
The creator of the plugin has a good page describing how to href="http://www.u-g-h.com/wordpress-plugins/wordpress-plugin-comment-email-responder/">install
the Comment Email Responder. Installation is easy, and once activated, if you look under settings in your dashboard you will find a link to the plugin to customize it.

Customizing and Features
You can choose the name, address and subject you want the email to use. You can also write a short message to appear in the footer of the email. I use something like: "Thanks again for visiting my blog and leaving a comment! If you like my blog please consider subscribing to read updates in a feed reader or by email! "

Other
Keep in mind, there are times when you may want to respond to a comment differently on your blog than you would privately through an email. Sometimes I don't use it and instead reply more generically in the comments section and then send a more personal response in an email.

Overall I think its a very useful plugin. Sometimes I still don't reply in a timely manner like I should, but the plugin does make it easier to reply back to people - so I don't really have a good excuse!

6 Strategies to Increase Your Subscriber Numbers

6-strategies-to-increase-your-subscriber-numbers

We We all want more people reading our blogs - that's why we have them in the first place, right?

Readers who subscribe to your blog's feed are great - because they will probably keep coming back to visit again and again as your new posts show up in their feed readers or email software.

It just feels good too, doesn't it - knowing that there are people out there who like what you write enough that they want to keep reading more? It can also be a point of pride if you have a lot of subscribers.

So how do you get them?

Of course the standard answer is to write good content that people want to read. And you need to do that - but there are still some things you can do to make it easier - and hence more likely - for people to subscribe:

1) Get a FeedBurner feed. Why? They offer lots of nice features to make your feed better. And a way to track how many subscribers you have, regardless of the feed reader they use.

2) Make your subscribe button big and bold!
WordPress and other blog software tend to put the subscribe link down towards the bottom of your blog where it can't be easily seen. Put it above the fold of your blog so people can find it faster. Using a bigger button than the standard small one can help too.

This page has 51 RSS Buttons For Your Blog that you can use. You can also make your own with photoshop or other graphics software - or - make your own customized one with a Feed Button Image Generator (this is what I'm using on my blog now!).

Many people like to offer their visitors direct links to add the feed to specific feed readers - you can do that with just one button now at FeedButton.

3) Provide a way to subscribe by email.
Some people don't know what RSS or feed readers are or don't want to be bothered with it. FeedBurner provides a method for people to subscribe through email and can generate the code for you to add the form to your blog. It can be really helpful to add that form at the top of your blog near your 'big and bold' feed button.

4) Explain what subscribing and RSS are.
There are  still many people out who don't understand what is meant by subscribe and may think they need to pay something. Providing a page on your blog where you explain it to people may be enough to get some of them to subscribe. A couple of examples are Darren's "What is RSS?" and my "What does 'subscribe to my blog' mean?".

5) Add a subscribe option at the end of your posts.
Adding a link to subscribe at the end of your posts might catch the attention of people who just finished reading your post and liked it. Why make it harder by expecting them to scroll back up to the top of the page to subscribe?

6) Add your feed link to your emails.
When you are corresponding with people through email - don't just add your blog link to your signature - add the link to your blog feed too!

So there you have it - 6 strategies to help you get more subscribers!
Anyone have anything to add to the list? If you use these methods has it helped you get more subscribers yet? all want more people reading our blogs - that's why we have them in the first place, right?

Editor Added:

This video gives a great & entertaining example of how to use your reader:

Video Source

Words of Encouragement

words-of-encouragement

The Beijing 2008 Olympic Games are under way and I’m sure you can identify with these athletes as they prepare to represent their countries.

Are you hanging back or taking advantage of golden opportunities to dive off the starting blocks and propel yourself to greatness?


Like many athletes this is a once in a lifetime opportunity that needs to be grasped with both hands to make the most of this special moment in time. Are there opportunities in your life slipping by?

"Life Is A Daring Adventure Or Nothing At All"
~ Helen Keller ~

For many to go after your dreams you need words of encouragement to help you feel confident enough to take these first steps.

Never underestimate 'The Power Of Encouraging Words'.  Receiving and giving encouraging words help others to develop their strengths.  While it’s important to give words of encouragement to others, it is vital to give them to yourself.

You can uplift and strengthen by your words of encouragement not only to others but also to encourage yourself. ..Remember to take time out to occasionally give yourself a pat on the back.

During these times of change usually known as ‘Lessons of Life’....You need words of encouragement especially when… from out of nowhere and totally unexpected….that curve ball comes your way and wants to suck the wind right out of your sails.

“You Can't Change The Direction Of The Wind, But…
You Can Adjust Your Sails To Always Reach Your Destination.”

You may be wondering how to encourage yourself.  Are you aware that compliments, encouragement and praise can shape lives and futures?  Words are powerful and can heal or hurt. I want you to stop & think for a moment and ask yourself....How are your own words shaping your future?

A great exercise is to make a list of the positive and negative ways you describe yourself. This list is for your eyes only so don’t feel you have to share it with others.  Now I'm asking you to be honest and look over your list of words and phrases.  Are your words encouraging or discouraging?   Do you believe your words are limiting your ability to accomplish all that you deserve in life?  Putting on 'mind blinkers' can also screen out your success.

It is time to recognize that these negative thoughts in your head are no longer serving you. But right now you need to replace them with positive and uplifting thoughts and words of encouragement.

“Kind Words Can Be Short and Easy To Speak,
But Their Echoes Are Truly Endless.”
~ Mother Theresa ~

Reading Inspirational Books or listening to tapes (you can often find real gems at your local thrift store) and cds can be very uplifting and encouraging.  Some of my favourite books are by  Anthony Robbins Words of Encouragement which sit  on my bedside table and I often read before going to bed.

Another great idea experts have proven is that it's helpful to start writing your journal to keep daily notes of not only your mental thoughts but of your progress along your journey.

How do you view setbacks.... as obstacles and a hindrance or as a golden opportunity to take on a challenge to test your skills.  Have you ever considered that these setbacks are your teacher and are often replaced with equal or better opportunities?

Stepping outside your comfort zone teaches you to really learn to soar & take advantage of your hidden talents and untapped resources to achieve more of your potential.  I'm sure you'll be pleasantly surprised at what you can achieve.

It's very rewarding making your dreams come true.  Make your dreams a reality and speak the words of encouragement you need to propel yourself along your journey of discovery. You are unique in each and every way and deserve the best that life has to offer.

Keep speaking words of encouragement and take advantage of golden opportunities. Dive off the starting blocks and propelling yourself to greatness….You Deserve It!

Using and Installing WordPress Plugins

using-and-installing-wordpress-plugins

Introduction

WordPress Plugins are small computer programs that "interact with a host application" and usually provide a very specific function (source). When using WordPress, plugins extend the functionality of WordPress "to do almost anything you can imagine".

The official WordPress plugin directory currently has over 2500 plugins! And if you do a search engine search you will find even more! There are plugins of all types to help you manage all sorts of things like comments, posts, images, formatting, admin, etc.

Installing Plugins

To add a plugin to your blog you first need to download it to your computer. You will probably then need to unzip the file. Once you've unzipped it you should look for a 'Read me' file to read the specific instructions for installing, customizing and using that plugin.

Most of the time you then upload the indicated folder to the server where your blog is hosted using FTP. They should be placed in the directory called 'plugins' which is in the directory 'wp-content'. Wp-content should be in the main directory your blog was installed into.

Occasionally some plugins will require that you manually edit one of the files that came with it before you upload it. You shouldn't open or edit these files in a word processing type of program like Microsoft Word. Instead use a plain text editor like Notepad. It is a good idea to keep a record of any changes you make in case you have any problems or if/when the plugin needs to be upgraded.

Activating Plugins

Once you have it uploaded it, log into your dashboard and click the 'plugins' link on the upper right. You should then see a list of 'Currently Active Plugins' and beneath that 'Inactive Plugins'. Find the plugin you just uploaded and click the 'activate' link way to the right.

Using Plugins

For some plugins that's all you need to do and it will be working the way you want it to at that point. For most you will want to click on the 'Settings' link on the top right, next to the 'Plugins' link. There you sill see a list of all the plugins you have installed and activated. Click whichever one you want to customize. There you will see some options that you can set. Some plugins only offer a few and some multiple tabs of pages of settings you can change.

Troubleshooting and Upgrading

If you have problems getting a particular plugin to work, first make sure you have followed all the instructions carefully. I know sometimes I get in a hurry and only skim through it all and most of the time I can get away with that, but not always. WordPress also provides some instructions if you have a problem: Troubleshooting Plugins

You may need to contact the creator of the plugin and ask if they have any suggestions or if anyone else has had similar problems. If you do this make sure you send them all the information you can about your blog, the error message (if any) that you got and other plugins you are using that may be conflicting with the new one you are trying to use. And remember they are providing the plugins for free so be patient with waiting to get help from them.

Keep in mind also that sometimes when you upgrade to a newer version of WordPress some of your older plugins may no longer work. They also may need to be upgraded.

How to Choose Which and How Many Plugins to Use?

Now – have fun adding some plugins – but try not to go too crazy with adding every single one that sounds kind of interesting. Think first of all – will it be useful to your visitors? Or will it help you to manage your blog better? Adding a few just for fun is ok – you just don't want to add so many that they become distracting.

When you are reading your favorite blogs one of things you can do is to check and see which plugins they are using and whether or not you think they are helpful to you as a reader.

At first I hardly used any at all, but over time I am adding more as I find some that add value to my blog. I will be writing about some of those here in the coming weeks.

Learning From Other Women Bloggers

learning-from-other-women-bloggers

If your goal is to have a successful blog it is important to learn as much about blogging as you can.

There are many, many places and ways to learn about blogging. HerProBlog.com is obviously one of them! It is especially nice to learn from women bloggers as they are more likely to be writing about the same topics we are and can speak to us in a way that may feel more familiar and comfortable.

And while many of the top pro blogs like Problogger and Copyblogger are written by men - there are also many women who are probloggers that we can learn from.

The following are just a few women who blog about blogging that I recommend:

Lorelle VanFossen of Lorelle on WordPress - Lorelle helped develop WordPress and in her blog shares information about blogging in general and has a lot of tips and advice about using WordPress.

Liz Strauss of Successful Blog- Liz writes about relationship blogging. Forming and maintain personal
relationships with others is what networking is all about and is needed to have a successful blog.

Skellie of Skelliewag - Skellie writes about "creating content your site's visitors will fall in love with
and gives "tips, tricks and ideas" to help you make a blog worth talking about.

Lisa Irby of 2 Create A WebSite - The Blog - Lisa's blog is a 'guide to building, promoting and
monetizing blogs and websites'.

There are also many women who have been very successful with their blogs, who don't blog about blogging. We can learn from them by studying the examples they have set. Here are a couple who have
inspired me recently:

Wendy Piersall of Sparkplugging - Wendy started out with one blog to help moms build internet businesses from home – and now, just 2 years later she has grown it into a blog network of around 15 blogs!

Tina Su of Think Simple Now - Tina started her blog less than a year ago (at the time of this writing)
and now has almost 7000 subscribers! She even explains exactly how she did it here!

Want to find more problogging women to learn from?

David Peralty made a list 15 Amazing Women in Blogging back in December and more recently
Jarkko Laine made a list of the Fifty Most Influential 'Female' Bloggers

And remember – everyone has something they are especially good at or a unique perspective that we can learn from – so look around yourself and find some more women bloggers that you can learn and grow from!

Building your Brand: Use a Picture

building-your-brand-use-a-picture

One way to help build your personal brand is to include a picture of yourself on your blog. I know that for many women (and men too!) this feels really uncomfortable because sometimes we don't feel good about how we look or at least how we look in photographs.

It is a really important detail though – when you include your picture it helps people to feel more connected to you as a blogger, and as a person. It adds a personal touch.

It doesn't matter what you look like either. You don't have to be beautiful or perfect. Nobody cares what you actually look like, they just want to see you. They won't make a judgment about your writing based on how you look. The point is that it allows people to get to know you better.

Believe me, I understand how some women feel uncomfortable with it. I can't stand looking at pictures of myself! But I forced myself to do it. I found a picture of me that was at least tolerable and put it up there for the world to see. It was one of the best things I ever did!

Be consistent

Use the same picture on your blog and on all the social media sites you participate in. Try not to change the picture too often, if at all. Use it on Twitter, BlogCatalog, MyBlogLog, Facebook, StumbleUpon, Digg – every site you participate in. Get a gravatar too – so people can see you when you leave a comment on gravatar enabled blogs.

This is really important to help people to recognize you and remember who you are. Success in blogging depends in part on networking and it makes it much easier for people to remember you and your blog if you use the same picture.

Have Fun with It

For some people using a silly picture might be a good idea – one of you upside down, wearing a silly hat, etc. But remember if you are blogging for business you need to look more professional. In general the image you use should reflect the tone and purpose of your blog. In any case, try to relax and have fun with it.

If you really, really can't do it

If you really, really can't bring yourself to showing your picture to the whole world then use an image of your logo or part of it. And be consistent – use that image everywhere. Or make an avatar of yourself at Yahoo or some other site. And again, be consistent and use it everywhere.

Exceptions

Some exceptions for not using your picture might be if you are blogging anonymously and not using your real name. In that case using your picture could give away your identity, but you might still be able to use an avatar of yourself.

Quality

Ignore for a minute what I said about nobody caring what you look like. Actually that's still true – but there is something to making sure the quality of the picture you use is pretty good. You don't want to use one that is real grainy, blurry, too dark, etc. It doesn't have to be a professionally taken photo though either. Mine had been taken at Target for a totally different purpose. Even a picture taken at home by someone you know may be good enough – just play around with it, relax, have a bunch taken and pick one!

Getting Started with Blogging Part 4: Let the World Know

getting-started-with-blogging-part-4-let-the-world-know

Once you've got one or more posts written and published you will want some visitors to come to your blog to see what you wrote. Remember, people have to know your blog exists first before you can expect
anyone to read it. If you have family and friends you can tell, that's a great place to start! Most likely you will want to start getting other people to read your blog too.

Commenting

An effective and easy way to let other people know about your blog is to leave comments on other people's blogs. On most blogs when you leave a comment to a post there is a place on the form to leave a URL
for your blog.

You most likely already have a list of favorite blogs that you read – those would be a good place to start. Also, if you can find other blogs about the same or a related topic to yours those can be a great choice. Most bloggers check to see who is leaving comments on their blogs and may very well visit yours. Bloggers who are really popular and have hundreds of people leaving comments are less likely to follow the link to your blog. It's nothing personal; they just don't have the time. People who read those blogs and will see your comment may also be interested in reading your blog.

Remember though – make sure the comment you leave is relevant to the post you are leaving it at. The better the quality of your comment, the more it will help you. Become part of the blog's community. And
don't just leave a short meaningless comment with a link to your blog – that will just be seen as spam.

BlogCatalog and MyBlogLog

Social networking sites like BlogCatalog and MyBlogLog can also be helpful.  Both of these sites can be used to connect with other bloggers, make friends and find more readers.

With BlogCatalog you first open an account and then submit your blog. Blogs have to be reviewed by someone who works there before they are listed. They are usually reviewed within 24-48 hours. Don't get worried about whether or not you will get approved, if your blog has real content you shouldn't have a problem.

One of mine didn't get approved the first time – they said it didn't have enough content yet. I waited a few weeks and then submitted it again and didn't have any problem. You will also want to add a picture to your profile page at BlogCatalog and a short bio about yourself. You can also add friends, join groups and neighborhoods and other things typical of social networking sites.

On MyBlogLog you can do many similar things – create an account, add a picture and bio, add friends, join communities, etc. It also provides some basis statistics for free, more are available for a fee.

Both sites provide a widget for you to place on your blog. A widget is a small piece of code that in this case can display recent visitors to your site (MyBlogLog also offers some other widgets). This can be very helpful especially when you are just starting out with your blog. You can look at your blog's widgets and see other BlogCatalog and MyBlogLog members who recently visited. You can then visit their profile pages, add them as friends, visit their blog, etc. It's a great way to make new friends and get more readers for your blog too!

In Summary

So there you have it – all the basic things you need to know to get you started with a blog: Part 1 Choosing a Topic, Part 2 Hosting, Part3 Installing and Using
WordPress
and Part 4 Let the World Know. In future posts I'll discuss some of these topics in more depth and share resources to help you create an effective and successful blog!

Getting Started with Blogging Part 3: Installing and Using WordPress

getting-started-with-blogging-part-3-installing-and-using-wordpress

In this part of my 'Getting Started with Blogging' series I will briefly go over how to install and use WordPress. Earlier parts of this series Part 1: Choosing a Topic and Part 2:Hosting are also available.

Finding a Web Host

There are many, many web hosting companies out there – some very good, some not so good. WordPress lists some hosting companies on their site that have auto-install options for WordPress. Many of them charge as little as $6.95 a month for hosting.

If you go with another company where you install the software on the hosting server yourself the features your hosting account needs to have are PHP version 4.3 or greater and MySQL version 4.0 or greater. WordPress even includes a sample email to send to a potential host to see if you can install it there.

Installing WordPress

Once you have your host picked out you then need to download WordPress. WordPress supplies both a Famous 5-Minute Installation and some more detailed instructions if you need it.

Setting Up and Customizing WordPress

One of the first things you will want to do with your newly installed WordPress blog is to pick a theme. A theme is sort of like a skin, but it is much more than that. It is a collection of files that make up the graphical interface of your blog. Some themes also include features that others don't. You can use
the theme viewer to find a theme or do a search in a search engine for "WordPress themes" – you will find that there are many thousands of themes available for free.

You can also create your own theme. This is an especially good idea if you already have a web site and you want your blog to have the same overall look and feel as the rest of your site.

For more information on setting up your blog I recommend Getting Started with WordPress, WordPress Lessons and Working with WordPress.

If it all seems overwhelming at first – don't let it bother you! Much of it you will get used to soon enough. And WordPress offers so much functionality that many long time users are still not aware of all that they can do with it. Many features you can learn about over time when you need them.

Using WordPress

When you first log in you will be taken to your "Dashboard" page. On this page you will see a summary of the posts, pages, drafts, etc. that you have – once you have something written. It also will list the recent comments and incoming links. On the upper right of the page you will see a small text link called "Settings". Within that page are links along the top to change the settings for Writing and Reading your blog and a few others. Some of those are pretty self explanatory so you may want to adjust them right away.

On the upper left is a link called "Write" – click this and start writing your first post! On the right of this page you can click either "Save" or "Publish". If you just click "Save", your post will be saved but will not actually be shown on your blog – click "Publish" to make it viewable to the world.

That, in a nutshell, is all you need to get a started writing on your blog!

Next time – Part 4 of Getting Started with Blogging: Let the World Know

Table of contents for Getting Started with Blogging

  1. Getting Started with Blogging Part 1: Choosing a Topic
  2. Getting Started with Blogging Part 2: Hosting
  3. Getting Started with Blogging Part 3: Installing and Using WordPress
  4. Getting Started with Blogging Part 4: Let the World Know

Getting Started with Blogging Part 2: Hosting

getting-started-with-blogging-part-2-hosting

Hosting refers to a service provided by a company that will store the files for your blog on a special computer called a server that can make your blog available for viewing on the web.

You have two basic choices with blogging: a blog hosting provider or a regular web hosting account. Each has its advantages and disadvantages. I'll explain both choices in more detail below.

1) A blog hosting provider – often referred to as a 'hosted'* blog. These are companies that provide free or nearly free blogs that they host on their servers. Basically, they take care of all the technical stuff and you just sign up for an account, do some basic customization and start writing. Examples include Wordpress.com and Blogspot.

The main advantages of using one of these services are the convenience and price. It takes very little time to set up and no technical knowledge.

A big disadvantage is that you have less control over how the blog is set up – you only have the features and customizations they allow. Another is that, for example, with wordpress.com if you want to use your own domain you have to pay extra. Otherwise the URL to your blog will be of the form: http://something-you-pick-out-here.wordpress.com/.

Who are 'hosted' blogs best suited for? Someone who is just starting out with blogging and wants to get their feet wet, personal blogs, those doing it for fun, people who can't afford a regular hosting
account or for anyone who doesn't want to have to deal with the technical issues of installing and maintaining the blog software.

2) A regular web hosting account – this is where you find a web hosting company, open an account and install the blog software yourself and is often called 'self-hosted' href="#footnote">*. These accounts are not free and the price varies widely depending upon the features you want or need. A large number of bloggers use Wordpress software for their 'self-hosted' blogs'.

The biggest advantage here is that you have total control of every aspect of the blog – the way it looks, the features, etc. You will also have your own domain if you have it hosted at a regular web
hosting company.

Disadvantages include the technical aspects of installing and maintaining the blog at the host. Wordpress is amazingly easy to install and upgrade however, compared to some of the earlier blog
software. Wordpress provides simple and detailed instructions. And if you still need help there are people you can pay to install it also.

Who should 'self-host'? In general, a blog on your own domain and with your own customizations communicates a more professional presence. So if you are blogging for your business, want to make a
lot of money or in some cases if you want to be viewed as an authority on a topic – self-hosted is the way to go.

Many people start off with a 'hosted' blog, and then move on to a 'self-hosted' one once they feel they want to continue blogging seriously and have the money. On the other hand some people prefer
the ease of 'hosted' blogs. And for those that get a bit addicted to blogging – you may find you have some blogs 'hosted' and other you do the hosting yourself.

Next time – Part 3 of Getting Started with Blogging:
Installing and Using WordPress

The terms 'hosted' and 'self-hosted' are a bit of a misnomer (hence my use of quotes throughout this post) but are widely used. All web sites of any type have to be hosted on a web server somewhere to be able to be seen on the web. And saying 'self-hosted' suggests a more a literal interpretation that you have your own server in your home or office that you are maintaining and your blog is hosted there. While this is certainly possible, it requires even more technical knowledge and it's not very common, specially among bloggers.