Make Money by Writting Articles – Ghost Bloggers

There are lots of platforms that you can make some money online like adsense, link advertising, post writing and many more. If you are a good writer and want to earn some buck of money online, then you can try Ghost Bloggers and you have opportunity to write some posts and get paid for it.

Ghost Bloggers is a newly marketplace for blog owners to buy unique niche content and allow ghost writers to earn money writing about topics they love. Each article is manually reviewed for plagiarism and quality, and you can request for article to write if needed.For more info, be sure you check it out!

How to Change WordPress Editor Font

Perhaps some of you don’t like the default fonts of WordPress Editor, you can change it to your favorite fonts by copying and pasting some short code in your functions.php file.

add_action( 'admin_head-post.php', 'devpress_fix_html_editor_font' );
add_action( 'admin_head-post-new.php', 'devpress_fix_html_editor_font' );

function devpress_fix_html_editor_font() { ?>
<style type="text/css">#editorcontainer #content, #wp_mce_fullscreen { font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; }</style>
<?php }

Thanks to DevPress for this tip!

How to Display Latest Google Plus Update on Your Blog

Google Plus is the newest project from Google and it is also the new invitation-only social media kid on the block that wants to knock Facebook off the mountain. If you are currently using Google Plus and want to add the latest Google Plus update on your blog, that’s possible, you can copy and paste the following on your WordPress files.

<?php
	include_once(ABSPATH.WPINC.'/rss.php');
	$googleplus = fetch_feed("http://plusfeed.appspot.com/103329092193061943712"); // Replace 103329092193061943712 by your own ID
	echo '<a href="Here_To_Put_Your_Google_Plus_ID';
	echo $googleplus->items[0]['link']; echo '">';
	echo $googleplus->items[0]['summary'];
	echo '';
?>

P/S: Don’t forget to put your Google+ ID on line 3.

Easiest Way to Save Web Articles as PDF Format

If you are in habit of printing articles online, perhaps you can try JoliPrint. JoliPrint is a free service that allows you to save web articles as PDF format for reading later.

The easiest way to use JoliPrint is to install an free add-on to turn any web article into awesome PDF with one click for reading later, and this add-on will be appeared in your browser’s toolbar.

I love JoliPrint because it is a great and helpful tool that can simplified my task in a minute. Sometimes my boss want me to source some online resources from Internet, so now I can use JoliPrint to save the web articles as PDF and then send to my boss later.

Quick Maintenance Mode on Your WordPress Blog

If you want to do some maintenance on your WordPress blog, and you want to let your visitors know that your blog is down for maintenance, then you have 2 methods to do that.

The first method is that you can adds a splash page to your blog that lets visitors know your blog is down for maintenance by using Maintenance Mode WordPress plugin, this method is easy for WordPress beginner.

Another method is quite simply for advance WordPress users, just copy and paste the following code to functions.php will do. Don’t forget to remove the code once you are done with maintenance.

function wpr_maintenance_mode() {
    if ( !current_user_can( 'edit_themes' ) || !is_user_logged_in() ) {
        wp_die('Maintenance, please come back soon.');
    }
}
add_action('get_header', 'wpr_maintenance_mode');

Embed Nice Fonts to Your Website or Blog Using Google Web Fonts

I just found Google Web Fonts today! I believe that Google Web Fonts is a great tool for website and blog designer nowadays. Normally many website or blog designer will using the popular fonts like arial, verdana, georgia and etc for their site at most of the time, and they can easily change their fonts of their website or blog to very nice looking fonts by using the fonts of Google Web Fonts now.

To use the fonts from Google Web Fonts, you just need to copy and paste the css coding to your website or blog to make your website or blog look different. Yes, I love Google Web Fonts, I will try it on my other blog later on. Hope you can give a great support to Google Web Fonts too!

How to Optimize WordPress Database Easily

We need to optimize WordPress database for some period of time due to the useless data “overhead” piles up over the years and slows your database down, sometimes the database may be get crashed too. There are 2 easy method to optimize WordPress database, one of the method is using WordPress plugin and another one is through phpMyAdmin.

Method 1: Optimize DB plugin

For those beginner user of WordPress, I suggest you use Optimize DB plugin to optimize your WordPress database as it is easy to use. Just upload Optimize DB plugin to your WordPress plugin folder, activate it then you can start using it.

Method 2: phpMyAdmin

  1. Login to Cpanel, go to phpMyAdmin
  2. Refer the to screenshot below, select your database that you want to optimize, check all the tables, and then select “optimize table” from the dropdown box.


Warning: Always backup your full database before attempting any database changes. In case you do something wrong, you can restore back your database.

How to Unfriend Facebook Friends

It is very easy to unfriend Facebook friends from Facebook, but surprisingly many of my friends don’t know how to unfriend Facebook friends. There are 2 methods to unfriend Facebook friends, you can go through the below tutorial.

Method 1: Unfriend from Sidebar Link

  • 1. Go to your Facebook friend profile that you want to unfriend (example: http://www.facebook.com/yourfriendprofilename)
  • 2. Scroll down to the bottom of left sidebar and you will see some text links like screenshot below.
  • 3. Just click the “unfriend” link to unfriend your friends.

Method 2: Unfriend from Friend List

If you want to unfriend many of your friends, you can do it in faster way through your friend list.

  • 1. Go to Facebook “edit friend”.
  • 2. Show all of your friends by clicking the button, see screenshot.
  • 3. Now you get a list of all your Facebook friends sorted in alphabet order. Click on the “X” button at the right end of each row to unfriend.

Share Your Schedule Using Google Calendar

I’m starting to love Google Calendar because I can use Google Calendar to share my basketball training and tournament schedule with my team members now. I can customize reminders help me and my team members stay on schedule. Some of them choose to be notified by email, and many of them get a text message sent right to their mobile phone. Google Calendar save my time and simplify my work, I love it.

How to Fix Error 421 Too Many Connections (8) From This IP

I just changed web hosting account recently but I still using the existing web hosting provider because this new web hosting will be hosted on an another domain name, so I need to upload all the necessary files to new web hosting again.

Normally I prefer using Filezilla to upload or download files, but sometimes I will found some error like 421 too many connections (8) from this ip. This may sometimes be accompanied with a “Delaying connection for 5 seconds due to previously failed connection attempt” error. So how to solve this type of problem? Do you ever see this error before?

When you see error 421 too many connections (8) from this ip, then you go to File > Site Manager. Select “Transfer Setting” tab, and then simply click on the checkmark box next to “Limit number of simultaneous connections” and you can keep “1″ in the box. (refer below image)

After you have limited the number of simultaneous connections to 1 but you still get the error 421 too many connections (8) from this ip, switch of your modem and on it back, and you may need to completely shut things down so the previous connections are killed.

Important: Don’t download thing when you upload or download files using Filezilla. and don’t surf net using browser too. Normally I seldom get the error 421 too many connections (8) from this ip.