Ever wanted to know how often Google crawls your site? This tutorial is going to show you how to make your website send you an email everytime Google visits your site. 1 2 3 4 5 6 7 <?php if(strpos($_SERVER['HTTP_USER_AGENT'], 'Googlebot') !== false) { $email = 'you@domain.com'; mail($email,'Googlebot Alert', 'Googlebot has crawled your page: '.$_SERVER['REQUEST_URI']); } ?> Just paste that code in somewhere on your site. Change $email to your [...]
Continue reading...Tuesday, October 21, 2008
In this post I’m going to show you how to get a free domain. There are quite a few free domain companys out there but in my opinon .co.cc is the best as they offer a DNS as an option instead of a frame. Click the banner below to get your domain + please wait...Rating: 0.0/10 (0 votes cast)
Continue reading...
Friday, November 7, 2008
1 Comment