Have You Done GMail Security Checklist?

To know that your account is being hacked is the worst nightmare ever. Especially when you have a confidential information such as finance information in that account. Most of the internet account need email for communication. And even Google mail have the best security (in my humble opinion), could be compromised if you are not careful. Amit Agarwal from labnol got his GMail hacked once and he managed to recover it back after some time.Actually Google Mail has the security checklist in … Read more...

Google Is Your Friend (GIYF)

The terms "Google Is Your Friends" or GIFY is extension from RTFM (Read The Fucking Manual), is sometimes given in response to a question when the person being asked believes that the question is easily to find in manual or on the web usually using search engine (in this term using Google). This term is a little bit sarcasm (almost).Beside "Google is your friend" there is also the other version that mostly used, "Let me Google that for you" (LMGTFY). And both are the same. Since the rise of … Read more...

Send Bulk Email With PHP

With mail() function in PHP you can send email from your system to any email address easily. If you using a Linux system, you don't have to set anything to use mail() function. But in Windows you need to add extra line in php.ini to specify your SMTP settings.See the code below:But sending bulk emails using PHP mail() function, often consider spamming. As PHP mail() will send all the email at once during the iterations. The code is something like this:That method above will … Read more...

Cloud Linux: Perfect OS For Share Web Hosting

Today's learn is Cloud Linux. So how i found Cloud Linux and what is Cloud Linux? A while ago i got a disaster to my vps, and this blog was wiped out (all data is gone). And i moved to new hosting, and i saw some new fancy thing on the cPanel sidebar.CloudLinux Main FeaturesThe CPU use there is for your account only and is shown in real-time. It is not the entire server, so when it says 100%, it means you’re maxing the CPU limit (1 core) which we’ve configured. Concurrent … Read more...

[HowTo]Remove Low Quality Content From Your Blog

As Google Farmer/Panda update a couple weeks ago, which is aim to remove the "content-farm" or low quality content website from the search results, but obviously had a major effect on tons of websites across all niches. Lot of good and high quality websites lost their traffic, instead some of the "content-farm" website have more traffic from the search engine. This blog also got the impact as well.From the latest news from Google at SMX West, you can read it here and here, one of the … Read more...

Easy Noindex and Nofollow WordPress Plugin

As Google update it's algorithm so called Panda algorithm, you should aware with your low quality post in your website. So i made a simple plugin to easily add noindex and nofollow meta in your post. You can choose which post you don't want Google to index it.How to use Easy Noindex and Nofollow plugin: 1. Download and upload it to your WordPress plugin 2. Activate it. 3. Now the options will appear in post meta. (in New/Edit Post, just below the text editor box)As you can see you … Read more...

[HowTo] Upload Your Plugin To WordPress Plugin Repository

What make WordPress powerful is WordPress plugin. WordPress have extendability through plugins, as you can turn WordPress to any kind of websites (ex: ecommerce), beside just a plain blog. So if you are a web developer or have web programming skill and you want to give something to WordPress community, you can make a WordPress plugin and upload to WordPress plugin repository, so the community could use your great plugin.So how to upload your WordPress plugin to WordPress plugin repository? … Read more...

TortoiseSVN: Free and Easy To Use Subversion Client

Apache Subversion (SVN) is software version and revision control. You can collaborate with other developer using SVN. As you can commit your revision to the code and also add a comment about the changes. To use Subversion you need a Subversion client (svn client). In Ubuntu it is available under Synaptic. But in Windows you need to install 3rd party tool. One of the best is TortoiseSVN.[quote sourcename="TortoiseSVN Developer" sourceurl="#"]TortoiseSVN is an easy-to-use SCM / source control … Read more...

DB Cache Reloaded Fix For WordPress 3.1

Since WordPress upgrade to version 3.1, there are some plugin compatibility issue for example DB Cache Reloaded. You may read my previous article DB Cache Reloaded not compatible with WordPress 3.1 as during plugin activation trigger an error: “DB Cache Reloaded Error: wpdb class is redefined, plugin cannot work! Previous definition is at /home/xxxx/public_html/wp-includes/wp-db.php:52.”.As the plugin developer not responded to any complain in forums. I took a step to take a look at the … Read more...

Web Development Using PHP, MySQL and Flash

PHP and Adobe Flash (formerly Macromedia Flash) are popular scripts used for creating web pages and online multimedia presentations. The two scripts can be combined to create dynamic, interactive pages similar to those used by big movie studios to promote their latest film releases.PHP (Hypertext Preprocessor) is similar to the standard static HTML script and it recognizes the elements of HTML, but it also uses active server-side processing in creating dynamic pages. PHP can deliver varied … Read more...