Why Your Website Need SEO Optimization

My boss has planned to expand his business to oversea market, and he is thinking to having a website and using Internet marketing to get some sales from Internet. My boss asked me, after having a website, how to bring more traffics from various search engines so that people can found our website easily? I told him to look for seo services and they can help us to optimize our website so that our website can rank well in search engines in order to avoid getting lose among our competitors. Therefore, my boss’s site needs to have the best possible keywords that his customers are searching for when using search engines.

There are many benefits of using seo, many small, medium and big enterprises has utilized it to promote their businesses online and reach to audience across the globe. Those people who use seo on their site, most probably they will having fair chances of getting quality traffic to their website and perhaps their sales revenue will be increased. Apart from that, seo is cost effective way to market your products and services quickly. Some other benefits of using seo are long lasting results, measurable results, pull marketing, customer acquisition, improve visitor experiences and many more.

In short, seo has the capability of generating higher sales for your business. Apart from helping your website getting good page rank, but also in creating brand awareness. For those people who are looking for seo services, perhaps you can check out SEO Arbiter today!

The Benefits of Link Building

Link building is major part of any SEO conversation. Link building puts you in search engines, if your websites want to rank well in search engines with top 10 targeted keywords that you are using so that we can get more traffic, then your websites must have some links with targeted keywords which link to your websites.

Apart from that, links also can build high page rank. For example, if you have many links pointing to your websites from other unique websites, most probably is your content is quality, then you have high chance to get good page rank.

If you have many links from trusted sources, normally users will follow the links and found your websites. I can say that links are one of the most important factors in generating site traffic, SER trust, and more.

Link building has many benefits, if you want to make your websites popular with many visitors and want to having high page rank, perhaps you can try purchase backlinks from LinkVehicle. LinkVehicle provides organic links to your website from their premium publisher network. Each publisher website is thoroughly reviewed by our SEO professionals using the newest technology to ensure that we drive the results our advertisers are looking for.

Beside that, if you are blogger that want to make some money, then you can sign up as publisher and start making money. You can put ads on your site or write reviews for advertisers. The good thing is that you can run the LinkVehicle technology on your website along with other advertising services.

For more information about buying and selling link, be sure you visit LinkVehicle today!

Google Shows Your IP Address When You Ask “What Is My IP?”

Every device connected to the public Internet is assigned a unique number known as an Internet Protocol (IP) address. Some people would like to check IP address for certain purpose, normally there will go to some websites that have provided IP address checking to check their IP address. But now, you can use Google to query [ what is my ip ] to get your computer’s public IP address.

What you do is go to google search textbox and type [ what is my ip ] and then your IP will be displayed like below image. I like the new query but I wish those information such as country, ISP, etc can be displayed as well after the query.

Happy New Year 2012

Year’s end is neither an end nor a beginning but a going on,
With all the wisdom that experience can instill in us. Happy New Year 2012!!!


[ Picture Source: duy.im ]

Free HTML5/CSS3 Theme With Responsive Layout – Yoko

There are lots of free WordPress themes available on the net, but how many of them really can suit your needs and having professional design and look? Today I came across with 2011 new WordPress theme which is designed by talented designers Ellen and Manuel from Elmastudio.

Yoko is a modern and flexible WordPress theme. Check out the features and documentations as below:-

  • for WordPress 3.1 +
  • Cross-browser compatible (tested in Chrome, Firefox, Safari, Internet Explorer 9 and 8 )
  • HTML5 (with fallback for IE responsive layout (CSS3 media queries not supported in IE 9 wordpress post format (aside, gallery, image, video, link and quote)
  • Theme options, individual background, individual header image
  • optional sub-
  • Social Links Widget (for RSS, Twitter, Facebook, Google +, Flickr, Vimeo, LinkedIn and Delicious)
  • Google web fonts (Droid Sans and Droid Serif)
  • Nested comments with Gravatar images
  • full width page template
  • Short codes for multiple columns, info boxes in yellow, green or red and highlighted text

The theme is released under GPL. You can use it for all your projects for free and without any restrictions. It is free for download and check out the live demo here!

How to Add Google+ Button to Your Post Automatically

Google had officially announced their Google+, a new social network that would battle Facebook and the Google Plus button works like the popular Facebook like button. If you are thinking to add Google+ button to your post automatically in order to generate more traffic, then you can try to add the following codes to functions.php file.

add_filter('the_content', 'wpr_google_plusone');
function wpr_google_plusone($content) {
	$content = $content.'<div><g:plusone size="tall" href="'.get_permalink().'"></g:plusone></div>';
	return $content;
}
add_action ('wp_enqueue_scripts','wpr_google_plusone_script');
function wpr_google_plusone_script() {
	wp_enqueue_script('google-plusone', 'https://apis.google.com/js/plusone.js', array(), null);
}

That’s all and thanks Spyre Studios for the great code!

How to Solve 403 Forbidden Error

Last few weeks, I found a 403 Forbidden error when I was trying to enter to my WordPress blog, this made me so worry and headache because I didn’t do any update on my blog, then I suddenly saw this error as below and my blog totally can’t displayed properly.

You don’t have permission to access /index.php on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

After that I have tried to search some related info from the net to find the solution how to 403 Forbidden Error, they asked:-
- to check any change of the permissions to access that directory.
- to take a look at the .htaccess file in that directory.

Unfortunately the above solutions do not work for me, then I started to think how to solve 403 Forbidden error by myself. This is what I have been done, see below:-

1. I reinstalled WordPress by overriding the existing file
2. Found that /index.php cannot be override, then I checked the File Permissions for index.php and found that the file attributes have been changed, I confirmed that this is the problem caused 403 Forbidden error.
3. I have tried to change the file attribute to 644, unfortunately I can’t changed it directly.
4. I have no choice but to delete /index.php file from that directory and upload the NEW index.php to that directory again.
5. All right, finally my blog is displayed properly and the problem has been solve.

If you have facing this problem in future, perhaps you can try my methond to solve 403 Forbidden error, good luck to you!

How to Display a Thumbnail from a Youtube Using a Shortcode

If you want to display youtube video thumbnail on your website or WordPress blog, below is the code that you can use to do it. First, you need to create a shortcode by copying the code below and paste it into your functions.php file.

/*
    Shortcode to display youtube thumbnail on your wordpress blog.
    Usage:
    [youtube_thumb id="VIDEO_ID" img="0" align="left"]
    VIDEO_ID= Youtube video id
    img=0,1,2 or 3
    align= left,right,center
*/
function wp_youtube_video_thumbnail($atts) {
     extract(shortcode_atts(array(
          'id' => '',
          'img' => '0',
          'align'=>'left'
     ), $atts));
    $align_class='align'.$align;
    return '<img src="<a href="http://img.youtube.com/vi/'.$id.'/'.$img.'.jpg&quot" rel="nofollow">http://img.youtube.com/vi/'.$id.'/'.$img.'.jpg&quot</a>; alt="" />';
}
add_shortcode('youtube_thumb', 'wp_youtube_video_thumbnail');

Once done, you can use this shortcode and it only can accept 3 parameters: The video ID, the image size (0 for 480*360px, 1 for 120*90) and the image alignment.

[youtube_thumb id="rNWeBVBqo2c" img="0" align="center"]

Thanks to Gunay for the code!

Free WordPress Theme – Mini Hyper

It’s been a long time I didn’t share the good and free WordPress theme, and today I found a Free WordPress theme that you will like it a lot. This is Mini Hyper WordPress theme, and it is free for download.

Mini Hyper is a home-made free WordPress theme by WpStyles.org, made with a lot of love and an ambition to serve bloggers world wide. It comes with a basic theme options page where you can add your Analytics tracking code and change the logo. Other than that, Mini Hyper is widget ready and works in all browsers.

Theme Features
- Theme Options Page
- Widget Ready
- WordPress 3.0+ Ready
- Cross browser compatible
- Custom Nav Menus

How to Look More Productive? [ Play Games Without Your Boss Noticing ]

I just came across a website named Can’t You See I’m Busy, this is an interesting website that allows you to play games without your boss noticing. This website is designed in a way that nobody can see that you’re gaming. In fact, your boss and colleagues will think that you’re working harder than ever before.

I was thinking that when I feel bored during working hours, I can go to this website and start playing the games. I’m sure my boss and colleagues won’t know I’m actually playing games because these “hidden” games are look just like spreadsheets, charts, text documents, and other work related nonsense. Haha!

There are 4 games that you can play from this website:

1. Crash Planning – looks like an Excel spreadsheet of weekly planning. Just rearrange 3 or more same block together to remove the blocks.

2. Breakdown – looks like you are writing on a report or reading/reviewing a report on Word but actually you are playing Arkanoid.

3. Leadership – looks like you are analyzing graph charts but actually you are playing Moon landing Game.

4. Cost Cutter – looks like are you analyzing bar charts but actually you are playing game similar to Collapse game.

Flash required, so for iOS users please use browsers that support flash.