Archive for November, 2007

Mr. SEO World Champion Dream Sports Car

Tuesday, November 20th, 2007

Benj owns a Certified Pre-Owned Honda Odyssey but he dreams of buying a new sports car. Guess which one he dreams to buy in San Diego? A brand new Honda S2000? Or a brand new Mazda RX8?

My personal choice would be the Brand new Honda S2000, the S2000 overall is simply an excellent pure sports machine and the car its self looks lovely. Widely considered the quintessential roadster-style sports car, the S2000 is the performance icon for the Honda brand and combines uncompromising racetrack-ready performance with everyday usability. The S2000 rewards driving enthusiasts with a potent 2.2-liter, 16-valve DOHC VTEC® 4-cylinder engine and a precise, short throw 6-speed manual transmission, along with excellent handling and a perfect 50/50 weight balance.

The 2007 Honda S2000 scored well in government crash tests, earning four stars (out of a best score of five) for protection against frontal impacts. It also earned five stars for side-impact protection despite its lack of side airbags.

Honda S2000 Video

Japan Rally Course. RX8 Vs S2000, S2000 Win!
http://youtube.com/watch?v=3xY7_PxbgKo

Pro Racer in an RX8 and a modified S2000 turbo race, S2000 Win!
http://youtube.com/watch?v=zbnJ_n2F02s

More Review about Honda 2000, please visit the following site

http://www.autoweb.com.au/cms/A_6084/title_Honda-S2000/article.html

http://carscoop.blogspot.com/2007/04/honda-s2000cr-new-york-debut-for.html

Wanna know Benj dream sport car? just visit this blog everyday for an update.

Website Monitoring Tool, Downtime Alert Notification and RapidVPS

Monday, November 19th, 2007

I have a good experience with RapidVPS (Virtual Private Hosting), no downtime for almost 8 months (since I started hosting with them) now except for the regular maintenance. The support is exceptional, most of the replies were within 1 hour or less during business hours. This is the best hosting I tried so far in 7 years in the field of web development , so I decided to upgrade my hosting from rapidTwo to rapidThree which is more powerful package.

From the first day my site loading speed is okey but weekend traffic is killing my hosting when a large traffic is coming in, it suddenly freezes the server which causes a lost of visitor and revenue, I have to manually restart the apache in order to work. It happen for almost a week though the support is there but they can't detect the problem. What was strange is it never happen on my previous hosting plan.

So for the meantime, i think for the alternative solution. I found a FREE Software that notify you whenever the software detect a downtime so I can manually restart my apache. The software is called "URL Monitoring Tool" by Filesland.com . I also created a music (.wav) file, so it play sound whenever the server is not responding. You can download my .wav file here. You could also set the time to check the site automatically. Some Website monitoring software has a features that log downtime history, email notification and SMS notification but they are not FREE.

So far, my hosting is running smoothly because of the setting they implemented last time I called for the support. If you are looking for Virtual Private Hosting, choose RapidVPS, exceptional support, great web hosting! If you decide that you like rapidVPS please sign up using our link https://www.rapidvps.com/?vps=11037

Drupal Adsense Module Basic Hack

Thursday, November 15th, 2007

We all know that Google adsense implement a new code format, no more color configuration, and channel.

Since Adsense Module is not yet updated I prepared a simple hack so you can still use the module without waiting for the update. All you have to do is open your adsense.module file and look for line 666 (scary). Just remove the unneeded line of code, replace google_ad_channel with google_ad_slot . See sample format below:

Now you are done! On your Admin area, just add your google_ad_slot number under custom channel. You can add upto 10 google_ad_slot same as channel.

The end....

Widgetbucks RPC Improvements, US and Canadian Traffic Only!

Thursday, November 15th, 2007

I just received an email coming from widgetbucks saying that they are no longer charging merchants for international traffic. Visitor coming from outside of the U.S. and Canada will be redirected to non-paid pages, specifically www.mpire.com . Therefore no publisher credit will be given for those clicks, starting mid-November.

So what I did, instead of removing the widgetbucks ads on site, I download ip2nation database and installed it to filter the US & Canadian traffic for widgetbucks used. Though I have a code that alternate both google and widgetbucks ads.

PHP function (modefied version of ip2nation script):

Then used if else condition:

Download Redtube Videos, Moyea FLV Downloader Software

Wednesday, November 14th, 2007

I just find a great tool to download a videos coming from YouTube, Yahoo, Google, Myspace, iFilm, Dailymotion, Metacafe, Redtube, etc. You don't have to visit a site to download your favorite videos. Just use, FLV Downloader coming from Moyea. Moyea FLV Downloader is a free FLV downloader tool to download FLV (Flash video) from all video sharing sites at great speed. This program is a one-stop solution to download, manage, play back and convert FLV files.

Moyea FLV Downloader also offer FLV to AVI converter though you need to purchase a license in order to use it. Trial version is available for download.

If you don't want to download and install the software you can use this online tool Redtube video downloader.

Most Common .Htaccess Tweaks

Tuesday, November 13th, 2007

For those of you that host websites on Unix/Linux based servers, your probably fully aware of what a .htaccess file is. Well here are some most common tweaks to increase your web site security, and customize the way your web site behaves.

Most common usage of .htaccess files are folder access control, redirect visitors to custom error pages, stop directory listings, blocking bad robots that consume bandwidth, ban visitors from certain countries and IP addresses, protect your web site from hot linking images and bandwidth theft, redirect visitors from a requested page to a new web page, and to password protect directories.

  1. Custom Error Pages - Custom error pages allow you to have personal error pages instead of displaying your web host's generic error pages. If you’d like to redirect your visitors every time they encounter error codes (400,401,403,404,500), use this code:

    ErrorDocument 400 /errors/badrequest.htm
    ErrorDocument 401 /errors/authreqd.htm
    ErrorDocument 403 /errors/forbidden.htm
    ErrorDocument 404 /errors/notfound.htm
    ErrorDocument 500 /errors/intserver.htm

  2. Folder Access Control - If you want to totally disable an access to specific folder, create the .htaccess files in that folder and put this directives/commands .

    #deny all access
    deny from all

    or if you’d like to allow access from one specific IP

    #deny all access
    deny from all
    allow from 127.0.0.1

    or a specific range of IP

    #deny all access
    deny from all
    allow from 192.168.0.0/24

  3. No HotLinking - Blocking Bad Referrer - If you want to block bad referrer.

    RewriteEngine on
    RewriteCond %{HTTP_REFERER} example.com [NC,OR]
    RewriteCond %{HTTP_REFERER} otherexample.com
    RewriteRule .* - [F]

    Prevent bandwidth stealing, and access to specific file like .zip, .mp3, .avi, .wmv, etc.

    RewriteEngine on
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://([-a-z0-9]+.)?example.com[NC]
    RewriteRule .*.(zip|mp3|avi|wmv|mpg|mpeg)$ http://www.example.com/images/nohotlink.gif [R,NC,L]

  4. Changing Default Page - Sets the file that Apache will serve if a directory is requested. This directive tell apache to make home.html to be the default page.

    DirectoryIndex home.html index.htm index.html index.php

This blog topic will be updated regularly....

Unblock Myspace using Proxy!

Sunday, November 11th, 2007

In order to unblock myspace or any social networking site (friendster,bebo,etc) you need to use a web or a browser based program that bypass firewalls.

The easiest way is using Firefox browser, you can install a proxy plugin and add some ip address and you are ready to browse the net anonymously. Proxy Ip address can be found on proxy4free.com and other website that offering free list of proxy.

The second method is using a web based proxy, most common is PHPProxy script. Phpproxy is a Web HTTP proxy programmed in PHP to bypass firewalls and other proxy restrictions through a Web interface very similar to the popular CGIProxy.

Here are some example of Phpproxy based site:

Myspace Proxy
Unblock Myspace

Feel free to browse 24/7 and dont forget to tell your friends!

Circumventing Internet access control systems with web proxies to access unauthorized web sites is a violation of school computer usage policy. You will get suspended and/or banned from using school computers when you get caught. Use school computers for school work, and myspace can wait until you get home.

Sue Cooking Games, Bratz Dress Up and Roiword Games for Kids

Saturday, November 10th, 2007

I just stumbled a site made for girls, though my two year old son love to play the games. The site is family friendly and the games are safe for kids. This site is about dressing up game, simulation games like sue cooking games, painting or coloring games design by roiworld and other games that will probably love by your kids, specially girls. Visit the site http://www.dressupdollgames.net