Bot ile siteme yazı ekliyorum. Böyle eklenen mesajlarda wp mesajdan sonra eklenmiş ping sitelerine ping attırmadığını duymadım.Bu doğrumu?
Doğruysa auto ping eklentisi varmıdır kullandığınız?
Auto ping eklentisi?
4
●1.587
- 30-11-2009, 21:34:21
- 01-12-2009, 13:25:51Botun sonuna,
<?php $sitemap = "http://www.siteadresin.com/sitemap.xml"; function pingGoogleSitemaps( $url_xml ) { $status = 0; $google = 'www.google.com'; if( $fp=@fsockopen($google, 80) ) { $req = 'GET /webmasters/sitemaps/ping?sitemap=' . urlencode( $url_xml ) . " HTTP/1.1\r\n" . "Host: $google\r\n" . "User-Agent: Mozilla/5.0 (compatible; " . PHP_OS . ") PHP/" . PHP_VERSION . "\r\n" . "Connection: Close\r\n\r\n"; fwrite( $fp, $req ); while( !feof($fp) ) { if( @preg_match('~^HTTP/\d\.\d (\d+)~i', fgets($fp, 128), $m) ) { $status = intval( $m[1] ); break; } } fclose( $fp ); } return( $status ); } if( 200 === ($status=pingGoogleSitemaps($sitemap)) ) echo "Google pingleme islemi basarili."; else echo "Google pingleme isleminde hata!"; ?>ekle, olmuş olur. - 04-07-2010, 01:20:58Üyeliği durduruldu