<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>W3Code.Net - World of themes review</title>
	<atom:link href="http://www.w3code.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.w3code.net</link>
	<description>Free script resoure online - WP theme - Joomla theme - VBB theme - Graphic theme</description>
	<lastBuildDate>Fri, 18 May 2012 14:04:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Travel Services Koobi Template</title>
		<link>http://www.w3code.net/travel-services-koobi-template/</link>
		<comments>http://www.w3code.net/travel-services-koobi-template/#comments</comments>
		<pubDate>Fri, 18 May 2012 14:04:40 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Koobi Template]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=4</guid>
		<description><![CDATA[And 30 Koobi Themes: Download Now]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a target="_blank" href="http://i10.tinypic.com/2d840gl.jpg"><img class="aligncenter" src="http://i10.tinypic.com/2d840gl.jpg" alt="" width="413" height="500" /></a></p>
<p style="text-align: center;"><strong>And 30 Koobi Themes: </strong><a target="_blank" href="http://ugotfile.com/file/1528946/Koobi_Travel_Service.rar">Download Now</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/travel-services-koobi-template/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Auto watermark all images for WordPress</title>
		<link>http://www.w3code.net/auto-watermark-all-images-for-wordpress/</link>
		<comments>http://www.w3code.net/auto-watermark-all-images-for-wordpress/#comments</comments>
		<pubDate>Fri, 18 May 2012 02:04:15 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Ebooks - Tips]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[PHP script]]></category>
		<category><![CDATA[Wordpress template]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Auto watermark]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP code]]></category>
		<category><![CDATA[Script code]]></category>
		<category><![CDATA[Source code]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=201</guid>
		<description><![CDATA[How many of you have wanted to have a watermark on all of your images? Lets say you are just starting your blog and you will just fire up Adobe Photoshop or any other image editing program and you will add a watermark on each image you have. It is time consuming but it will [...]]]></description>
			<content:encoded><![CDATA[<p>How many of you have wanted to have a watermark on all of your images?<br />
Lets say you are just starting your blog and you will just fire up Adobe Photoshop or any other image editing program and you will add a watermark on each image you have. It is time consuming but it will work.</p>
<p>But what if you have a blog for a really long time and you just decided you want to watermark all your images. You would have to copy every image on your blog to your computer, open all of them up and add a watermark.</p>
<p>But what about the original images? What if you ever need them without the watermark?<br />
Here is my solution. I have been using this on a number of blogs and it work for me.<br />
I must worn you do that it is for some what advanced users.</p>
<p>What we are going to do is fake the display of an image. What we are actually going to display instead of the image is a php file that processes the image and ads a watermark to it. The url of the image stays the same, the watermark get put on and best of all the image on the server doesn&#8217;t get modified at all.</p>
<p>All you need is a bit of code in the .htaccess file, a php watermark processing file and a watermark image (png preferably).</p>
<p><strong> The first</strong>: Add this code in your <strong>.htaccess</strong> file:</p>
<blockquote><p>RewriteRule ^(.*)<strong>wp-content/uploads</strong>/(.*) $1<strong>watermark.php?src=wp-content/uploads/$2</strong></p></blockquote>
<p><strong>The second</strong>:  Create a new file in the root of your directory(where wp-admin, wp-content and wp-include is) and name that file <strong>watermark.php</strong>. After that copy and paste the code below in that file and save it.</p>
<blockquote><p>$src = $_GET['src'];</p>
<p>header(&#8216;Content-type: image/jpeg&#8217;);</p>
<p>//this will prevent the watermark from showing up in the thumbnail images<br />
if (eregi(&#8220;150&#215;150&#8243;, $src)) {<br />
$watermark = imagecreatefrompng(&#8216;empty.png&#8217;);<br />
} else {<br />
$watermark = imagecreatefrompng(&#8216;watermark.png&#8217;);<br />
}<br />
$watermark_width = imagesx($watermark);<br />
$watermark_height = imagesy($watermark);<br />
$image = imagecreatetruecolor($watermark_width, $watermark_height);<br />
if(eregi(&#8216;.gif&#8217;,$src)) {<br />
$image = imagecreatefromgif($src);<br />
}<br />
elseif(eregi(&#8216;.jpeg&#8217;,$src)||eregi(&#8216;.jpg&#8217;,$src)) {<br />
$image = imagecreatefromjpeg($src);<br />
}<br />
elseif(eregi(&#8216;.png&#8217;,$src)) {<br />
$image = imagecreatefrompng($src);<br />
}<br />
else {<br />
exit(&#8220;Your image is not a gif, jpeg or png image. Sorry.&#8221;);<br />
}<br />
$size = getimagesize($src);<br />
$dest_x = $size[0] &#8211; $watermark_width &#8211; 0;<br />
$dest_y = $size[1] &#8211; $watermark_height &#8211; 0;<br />
imagecolortransparent($watermark,imagecolorat($watermark,0,0));<br />
imagecopyresampled($image, $watermark, $dest_x, $dest_y, 0, 0, $watermark_width, $watermark_height, $watermark_width, $watermark_height);</p>
<p>imagejpeg($image, &#8220;&#8221;, 95);<br />
imagedestroy($image);<br />
imagedestroy($watermark);</p></blockquote>
<p>Use any image editor you like and create a png file that will be your watermark image. Save that image with the name &#8220;<strong>watermark.png</strong>&#8221; and put it in your root directory.<br />
Also create a png image which is 1×1pixels and it must be transparent. Name that file &#8220;<strong>empty.png</strong>&#8221; and save it also in your root directory.</p>
<p>That 1×1px image is meant to be displayed on the thumbnail images. The thumbnails are to small to but a watermark on them, it wouldn&#8217;t look too good.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/auto-watermark-all-images-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Real State: Blogger template</title>
		<link>http://www.w3code.net/real-state-blogger-template/</link>
		<comments>http://www.w3code.net/real-state-blogger-template/#comments</comments>
		<pubDate>Thu, 17 May 2012 14:04:07 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger template]]></category>
		<category><![CDATA[Blogger theme]]></category>
		<category><![CDATA[Real State Blogger]]></category>
		<category><![CDATA[Real State template]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=1868</guid>
		<description><![CDATA[Description: Real State 01 is a free blogger template with 3 columns, right sidebar and rounded corners. Template author: Blogs Made in Spain Download Real State 01 for free in themeslib.com]]></description>
			<content:encoded><![CDATA[<p><strong>Description:</strong></p>
<ul>
<li>Real State 01 is a free blogger template with 3 columns, right sidebar and rounded corners.</li>
<li>Template author:	Blogs Made in Spain</li>
</ul>
<p>Download <a target="_blank" href="http://hightechsolo.com/blogger_templates/Real-State-01.zip">Real State</a> 01 for free in themeslib.com</p>
<p style="text-align: center;"><a href="http://www.w3code.net/wp-content/uploads//2010/08/Real-State-01.jpg"><img class="aligncenter size-full wp-image-1869" title="Real-State-01" src="http://www.w3code.net/wp-content/uploads//2010/08/Real-State-01.jpg" alt="" width="400" height="228" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/real-state-blogger-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Games Place: Blogger template</title>
		<link>http://www.w3code.net/games-place-blogger-template/</link>
		<comments>http://www.w3code.net/games-place-blogger-template/#comments</comments>
		<pubDate>Thu, 17 May 2012 02:06:01 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Themes Blogger]]></category>
		<category><![CDATA[Blogger template]]></category>
		<category><![CDATA[Blogger theme]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=1877</guid>
		<description><![CDATA[Description: Games Place is a free blogger template with 3 columns, right sidebar and rounded corners. Template author: Deluxe Templates Excellent layout for blogs about games. Download Games Place for free in themeslib.com]]></description>
			<content:encoded><![CDATA[<p><strong>Description:</strong></p>
<ul>
<li>Games Place is a free blogger template with 3 columns, right sidebar and rounded corners.</li>
<li>Template author:	Deluxe Templates</li>
<li>Excellent layout for blogs about games.</li>
</ul>
<p>Download <a target="_blank" href="http://hightechsolo.com/blogger_templates/Games-Place.zip">Games Place</a> for free in themeslib.com</p>
<p style="text-align: center;"><a href="http://www.w3code.net/wp-content/uploads//2010/08/Games-Place.jpg"><img class="aligncenter size-full wp-image-1878" title="Games-Place" src="http://www.w3code.net/wp-content/uploads//2010/08/Games-Place.jpg" alt="" width="400" height="228" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/games-place-blogger-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plugins To Maximize Your WordPress Blog Security 2012</title>
		<link>http://www.w3code.net/plugins-maximize-wordpress-blog-security-2012/</link>
		<comments>http://www.w3code.net/plugins-maximize-wordpress-blog-security-2012/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:38:49 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Best WP Plugin]]></category>
		<category><![CDATA[BulletProof Security Plugin]]></category>
		<category><![CDATA[Limit Login Attempts Plugin]]></category>
		<category><![CDATA[WordPress Blog Security]]></category>
		<category><![CDATA[WordPress Security Plugin]]></category>
		<category><![CDATA[WP Security Scan Plugin]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=3155</guid>
		<description><![CDATA[Hackingis the most painful term if you are a publisher,Day in and day out hackers are finding the weakness in websites.If you don&#8217;t take care of your website then it is quite obvious that you might become the victims of these unfriendly hackers.So you need to be prepared to avoid these threats and making sure to guard [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.w3code.net/wp-content/uploads/2012/05/WP-Security-Scan-Plugin.jpeg"><img class="alignleft size-full wp-image-3156" title="WP Security Scan Plugin" src="http://www.w3code.net/wp-content/uploads/2012/05/WP-Security-Scan-Plugin.jpeg" alt="" width="221" height="228" /></a>Hacking</strong>is the most painful term if you are a publisher,Day in and day out hackers are finding the weakness in websites.If you don&#8217;t take care of your website then it is quite obvious that you might become the victims of these unfriendly hackers.So you need to be prepared to avoid these threats and making sure to guard you WordPress Blog.<strong></strong></p>
<p><strong>For instance</strong> you have a WordPress blog which is not secured and a Hacker identifies your blog is low in security he will launch tons and tons of attacks on your website which will either down your website or it would steal your password.These days hacker are capable enough to even delete your entire blog so its better to take steps to prevent your blog from hacking.It could be a wake up alarm for us if we have a WordPress blog we must take needly steps to protect our blog from hackers and WordPress does have some useful plugins which could make our blog protected.So today <strong>we will learn how we can use these plugins to protect our WordPress Blog from Hackers.</strong></p>
<div><strong>1. Secure WordPress Plugin:</strong>A Wonderful plugin for WordPress security provides easy to use interface with user friendly experiance.Secure WordPress beefs up the security of your WordPress installation by removing error information on login pages, adds index.html to plugin directories, hides the WordPress version and much more.<strong><a target="_blank" href="http://wordpress.org/extend/plugins/secure-wordpress/" rel="nofollow" target="_blank"> WordPress Security Plugin</a></strong></div>
<div></div>
<div><strong>2.WP Security Scan Plugin: </strong>Another Great WordPress Plugin Checks your blog for any security flaws.Provides warnings,which areas are of your blogs is lacking security,secures your blogs database,it also protects your WordPress Admin panel,records and report suspicious activities.<strong><a target="_blank" href="http://wordpress.org/extend/plugins/wp-security-scan/" rel="nofollow" target="_blank"> WP Security Scan Plugin</a></strong></div>
<div>
<div>
<h3 align="justify"><strong>3. Limit Login Attempts Plugin:</strong></h3>
<div>This is another one of the best security plugin.Limit Login Attempts plugin limits the number of login attempts on your blog.It blocks IP of hackers who tries to make false logins.making a brute-force attack difficult.<strong><a target="_blank" href="http://wordpress.org/extend/plugins/limit-login-attempts/" rel="nofollow" target="_blank">Limit Login Attempts Plugin</a></strong></div>
<h3 align="justify"><strong>4.BulletProof Security Plugin:</strong></h3>
</div>
</div>
<div>A Complete security plugin for WordPress it is knows as<strong> &#8220;One Click Security Plugin&#8221;</strong> which allows you to protect your entire blog on one click<strong> </strong>that creates, copies, renames, moves or writes to the provided BulletProof Security .htaccess master files.It protect your websites root folder and wp-admin folder with the .htacces security protection and also has some additional security features.<strong><a target="_blank" href="http://wordpress.org/extend/plugins/bulletproof-security/" rel="nofollow" target="_blank">BulletProof Security Plugin</a></strong></div>
<div>
<div>
<h3 align="justify"><strong>5.WP-Malwatch:</strong></h3>
</div>
</div>
<div>It is the alarming plugin which does not protect your blog but it does alarm you when some one tries to get unnecessary access to your admin panel.<strong><a target="_blank" href="http://wordpress.org/extend/plugins/wp-malwatch/" rel="nofollow" target="_blank"> BulletProof Security Plugin</a></strong></div>
<div></div>
<div>So These were the Top 5 WordPress Security Plugins.You must use all 5 of these plugins as they will maximize your WordPress blogs security and they will not make your blog slow as they are very much user and search engine friendly.Use these plugins and comment back if you feel any difference in your blog security till then Peace Blessing and Happy Securing</div>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/plugins-maximize-wordpress-blog-security-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Plugin For WordPress to increase Traffic 2012</title>
		<link>http://www.w3code.net/seo-plugin-wordpress-increase-traffic-2012/</link>
		<comments>http://www.w3code.net/seo-plugin-wordpress-increase-traffic-2012/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:32:56 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Best WP Plugin]]></category>
		<category><![CDATA[Increase Traffic 2012]]></category>
		<category><![CDATA[SEO Plugin]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=3151</guid>
		<description><![CDATA[The World of internet Consist of More then million&#8217;s of Web Blog&#8217;s.To establish your self in the town of blogging you should have a good strategy to attract visitor.If you think you can achieve your goal by spreading your blog to your friends,family,then your goal of ruling the internet is far from near.You could only dominate the town of [...]]]></description>
			<content:encoded><![CDATA[<div><a href="http://www.w3code.net/wp-content/uploads/2012/05/wordpress-seo-plugin.png"><img class="alignleft size-full wp-image-3152" title="wordpress-seo-plugin" src="http://www.w3code.net/wp-content/uploads/2012/05/wordpress-seo-plugin.png" alt="" width="285" height="300" /></a>The World of internet Consist of More then million&#8217;s of Web Blog&#8217;s.To establish your self in the town of blogging you should have a good strategy to attract visitor.If you think you can achieve your goal by spreading your blog to your friends,family,then your goal of ruling the internet is far from near.You could only dominate the town of internet if you get thousand of visitor&#8217;s on daily bases.To get the visitors you have to attract high quality search engines like Google,Yahoo,Msn and etc.In other words we can say you have to improve your (SEO).To increase your SEO there are several method but one of the effective way is to use SEO plugin&#8217;s.WordPress is the only Blogging Platform which allow to work freely unlike other&#8217;s.Blogger is one of giant name but it does not provide liberty to it&#8217;s user,this is the reason why lot&#8217;s of user prefer WordPress and are converting their Blogger blog&#8217;s to WordPress.But one of the most important reason for the conversion is SEO (Search Engine Optimization) WordPress provide lot&#8217;s of plugin&#8217;s which provide convenience to Blog owner&#8217;s.WordPress contain lots of SEO plugin but we have selected Best top 5 SEO plugin&#8217;s For WordPress</div>
<div></div>
<div><strong>1.<a target="_blank" href="http://wordpress.org/extend/plugins/bwp-google-xml-sitemaps/" target="_blank">Better WordPress Google XML Sitemap:</a></strong>This plugin is very effective if you use it cleverly.This plugin will automatically create an XML sitemap of your blog.Which will notify Search Engine Bots about the update&#8217;s of your blog.This plugin is so fast that it complete it process in seconds</div>
<div></div>
<div><strong>2.</strong><a target="_blank" href="http://wordpress.org/extend/plugins/1-click-retweetsharelike/" target="_blank">1-Click Retweet/Share/Like</a><strong>:</strong>This plugin will simplify your social networking,it will automatically link your all post to top 30 most popular social networking website&#8217;s including Facebook,Twitter,Google Plus,LinkedIn Share and much more</div>
<div></div>
<div><strong>3.<a target="_blank" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All-in-one SEO Pack</a>:</strong>This is the most powerfull plugin for SEO.You don&#8217;t need any guidance to use this friendly plugin it is very easy to user friendly.You could use this plugin to improve your duplicate title tags and meta tags,Generates Title and Description of post automatically to build unique content</div>
<div></div>
<div><strong>4.</strong><a target="_blank" href="http://wordpress.org/extend/plugins/wp-minify/" target="_blank"><strong>WP Minify:</strong></a>Speed of website is most important part of Search engine optimization.If your website speed is slow it will be crawl slowly by bots so this plugin will help you to increase your website speed.This plugin will make your website 50 percent faster.</div>
<div></div>
<div><strong>5.</strong><a target="_blank" href="http://wordpress.org/extend/plugins/wordpress-seo/" target="_blank">WordPress SEO by Yoast</a><strong>: </strong>The most used WordPress Plugin for previous year.It have lots of feature&#8217;s like xml sitemap, webmaster tools verification, RSS Optimization, Social integration, breadcrumbs, page analysis, rich snippets and much more</div>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/seo-plugin-wordpress-increase-traffic-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Update Google+, Facebook And Twitter From WordPress</title>
		<link>http://www.w3code.net/auto-update-google-facebook-twitter-wordpress/</link>
		<comments>http://www.w3code.net/auto-update-google-facebook-twitter-wordpress/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:29:10 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[SEO tool]]></category>
		<category><![CDATA[Auto Facebook]]></category>
		<category><![CDATA[Auto Google Plus]]></category>
		<category><![CDATA[Auto Twitter]]></category>
		<category><![CDATA[Google Plus]]></category>
		<category><![CDATA[Internet Marketers]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=3143</guid>
		<description><![CDATA[It is not favoured by fortune but currently there are not any perfect tool available for updating your Google Plus Profile and Pages automatically just like Facebook, Twitter, FriendFeed etc. This is all because Google+ API is not released and available publicly. Application Programme Integration (API) allows developers to create the plugins like as Leenk.me. [...]]]></description>
			<content:encoded><![CDATA[<p>It is not favoured by fortune but currently there are not any perfect tool available for updating your <a href="http://www.w3code.net/google-1-plugin-overload/">Google Plus</a> Profile and Pages automatically just like Facebook, Twitter, FriendFeed etc. This is all because <strong>Google+ API</strong> is not released and available publicly. Application Programme Integration (API) allows developers to create the plugins like as <strong>Leenk.me</strong>. Google have released a Google+ API but it is read-only (hence posts only go one way). Some Plugins developers had rumored about WordPress Plugins for Updating Google + Pages directly via WordPress Blog but I found most of them not working.</p>
<p><a href="http://www.w3code.net/wp-content/uploads/2012/05/google-plus.jpg"><img class="alignright" title="Google Plus" src="http://www.w3code.net/wp-content/uploads/2012/05/google-plus.jpg" alt="Google+" width="256" height="192" /></a>After a lot of research and testing I found few possible ways to update your Google Plus Profile and Pages automatically just like you update all other Social Networks. However here is a Plugin called <a href="http://www.w3code.net/auto-post-google-twitter-facebook-wordpress/"><strong>Google Plus Poster</strong> Plugin</a> for WordPress which is able to update your Google Plus Profile and Pages via a mobile SMS Account. This service works in only US and India but it not seems to be a perfect way. The Plugin was first seen on a Thread at Warrior Forum but at present it&#8217;s not available.</p>
<p>The First API for Google+ was released on September 2011 and that allow only one way integration. So every wordpress plugin developer is seeking for the next release. This is unfortunate but no one outside of Google can exactly say when they will release a API that would allow integration in both directions. There are lots of tutorial websites are shouting about lots of paid and free tools to update your Google Plus Pages automatically but the fact is that without release of perfect API key it&#8217;s not possible to develop a free tool for the same.</p>
<h2>Possible Solution to Update Google+ Automatically</h2>
<p>After testing over 2 dozens of tools I found only one tool that could be useful and working perfectly. I am talking about Google Plus Automated Posting Plugin from NextScripts.com, They have been created a WordPress Plugin [<strong>Social Network Auto Poster</strong>] for that this all will cost you <strong>$49</strong> USD. This plugin can be used with any WordPress powered blog. If you runs a WordPress Powered Blog then its great tool. You can also Integrate your Facebook and Twitter Accounts with this plugin. In short, you can update your <strong>Facebook</strong> Fan Page, <strong>Twitter</strong> and <strong>Google+</strong> Page all at once automatically from your blog.</p>
<div id="attachment_1715">
<div class="wp-caption aligncenter" style="width: 570px"><a href="http://www.w3code.net/wp-content/uploads/2012/05/Social-Networks-AutoPoster.png"><img title="Social Networks AutoPoster" src="http://www.w3code.net/wp-content/uploads/2012/05/Social-Networks-AutoPoster.png" alt="AutoPoster Plugin" width="560" height="322" /></a><p class="wp-caption-text">Social Networks AutoPoster - Settings</p></div>
</div>
<div id="attachment_1716">
<div class="wp-caption aligncenter" style="width: 570px"><a href="http://www.w3code.net/wp-content/uploads/2012/05/Social-Networks-Auto-Poster-WordPress-Options.png"><img title="Social Networks AutoPoster WordPress Options" src="http://www.w3code.net/wp-content/uploads/2012/05/Social-Networks-Auto-Poster-WordPress-Options.png" alt="AutoPoster Options" width="560" height="392" /></a><p class="wp-caption-text">Social Networks AutoPoster - WordPress Options</p></div>
</div>
<p>You can download this Plugin free of Cost from WordPress Plugins Gallery But for Google+ activation you need to upload postToGooglePlus.php file to this plugin&#8217;s <strong>apis</strong> folder. Just Place this file in the required destination, input other required date and its all done. You can start Updating your Google+, Facebook and Twitter Account Directly from your WordPress Blog.</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/social-networks-auto-poster-facebook-twitter-g/" rel="nofollow" target="_blank">Social Networks AutoPoster WordPress Plugin</a> &#8211; You can Purchase full copy of Social Networks AutoPoster Plugin along with postToGooglePlus.php File from NextScrpit at following link. This all will cost you $49 only. And you could pay via PayPal and Google Checkout Payment Modes.</p>
<p><a target="_blank" href="http://www.nextscripts.com/google-plus-automated-posting" rel="nofollow" target="_blank">Google Plus Automated Posting &#8211; </a>The free WordPress plugin would not work with Google+ until you upload the required postToGooglePlus.php file to apis folder in plugin directory. The plugin is tested and I found it working perfectly. You can also check a demo at link mentioned above. Using this plugin is extremely simple and needs just one time settings. So just set and forget this. The plugin will keep updating your Social Networks with respect to your WordPress Blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/auto-update-google-facebook-twitter-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google +1 Plus Plugin Overload!</title>
		<link>http://www.w3code.net/google-1-plugin-overload/</link>
		<comments>http://www.w3code.net/google-1-plugin-overload/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:04:43 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Best WP Plugin]]></category>
		<category><![CDATA[Google Plus]]></category>
		<category><![CDATA[Internet Marketers]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=3125</guid>
		<description><![CDATA[Although Google+ is quite new to the social media scene it already has in excess of 10 million new users.  With statistics like that Google+ is bound to become the next big social networking site online. I haven’t spent a lot of time on Google Plus yet but one of the things that I really [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.w3code.net/wp-content/uploads/2012/05/google-1-button.jpg"><img class="alignleft size-medium wp-image-3126" title="google-1-button" src="http://www.w3code.net/wp-content/uploads/2012/05/google-1-button-300x255.jpg" alt="" width="300" height="255" /></a>Although Google+ is quite new to the social media scene it already has in excess of 10 million new users.  With statistics like that Google+ is bound to become the next big social networking site online.</p>
<p>I haven’t spent a lot of time on Google Plus yet but one of the things that I really like is how clean and easy the interface is.   There’s no clutter, no 140 character confinement and even better there’s the ability to organize your Google Plus experience into lists (or circles).</p>
<h2>Google Plus For Internet Marketers</h2>
<p>I can see that Google Plus is going to become super important for internet marketers for:</p>
<ul>
<li>SEO</li>
<li>Networking</li>
<li>Social Media</li>
<li>Communication (Hangouts could replace skype conference calls)</li>
</ul>
<p>One of the most informative articles that I have read about <a target="_blank" href="http://www.michellemacphearson.com/getting-your-thumbnail-in-google-search-results/" target="_blank">Google+ is from Michelle McPherson</a>.     This is an excellent read and I highly recommend after you have finished here you nip over and read this post.</p>
<p>One feature which makes Google+ different from other social networking site and social bookmarking is the all-new +1 Button (Plus-one button). It’s this small blue +1 icon with a big purpose:</p>
<p><strong>What does it mean to get +1?</strong></p>
<p>If someone gives your post a +1, what they’re basically saying is, “I like this and I think other people should check it out.” Google’s intention to release this button is to integrate social sharing in their search algorithm, making the +1 button more powerful than any other share button you’ll encounter on the web.</p>
<p>It’s only fitting, then, to add the Google +1 button to your blog.</p>
<p>Here are 15 Google+ Plugins rated 4 stars* and above which you can find on the web and use for free.</p>
<p><em><strong>*</strong></em><em> WordPress plugin directory rating</em></p>
<ol>
<li><strong>googleCards </strong></li>
</ol>
<p>Created by John Henson of PlusDevs.com</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/googlecards/" target="_blank">Download<strong></strong></a></p>
<p>This plugin will add a widget to your blog that will link to your Google+ profile so readers can follow or add you to their circles.</p>
<ol>
<li><strong>The Google+1 Plugin </strong></li>
</ol>
<p>Created by WPMUDev from WPMU.org and VeBailovity</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/google/" target="_blank">Download page <strong></strong></a></p>
<p>This plugin lets your readers add their +1’s to your website. It lets readers vote for posts and pages using the Google+1 widget.</p>
<ol>
<li><strong>Manual installation of the Google+1 Button </strong></li>
</ol>
<p>Created by Google (official code release)</p>
<p><a target="_blank" href="http://www.google.com/+1/button/" target="_blank">Download</a></p>
<p>This code works for WordPress sites and sites using other platforms. You need to add the URL to your Google+ profile to complete the code.</p>
<ol>
<li><strong>Google Plus Widget</strong></li>
</ol>
<p>Created by Widgetsplus.com</p>
<p><a target="_blank" href="http://widgetsplus.com" target="_blank">Download</a></p>
<p>Not a plugin but this is also a third-party code generator. This tool lets you add the Google+ widget to your site or blog.</p>
<ol>
<li><strong>WordPress Google Plus One Button </strong></li>
</ol>
<p>Created by Andrea Pernici</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wordpress-google-plus-one-button/" target="_blank">Download</a></p>
<p>This plugin automatically adds the Google+1 button to your WordPress posts.</p>
<ol>
<li><strong>Facebook, Twitter, Google plus one Share Buttons </strong></li>
</ol>
<p>Created by Jeriff Cheng of 92app.com</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/facebooktwittergoogle-plus-one-share-buttons/" target="_blank">Download</a></p>
<p>Aside from adding the Facebook ‘Like’ and Twitter share button to your page, this plugin will also install the Google+1 button to your blog.</p>
<ol>
<li><strong>Google Plus One Bottom </strong></li>
</ol>
<p>Created by ddd2500</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/google-plus-one-bottom/" target="_blank">Download</a></p>
<p>This plugin will add the Google+1 in every single posts page.</p>
<ol>
<li><strong>Add Twitter, Facebook Like, Google plus one Social share </strong></li>
</ol>
<p>Created by beingmaverick of<strong> http://www.searchtechword.com</strong></p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/twitter-facebook-google-plusone-share/" target="_blank">Download</a> <strong> </strong></p>
<p>An all-in-one share button, this plugin adds all three social networking share buttons to your blog namely, the Facebook ‘Like’ button, Twitter share button, and Google +1.</p>
<ol>
<li><strong>Google Plus One Button </strong></li>
</ol>
<p>Created by mfields</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/plus-one-button/" target="_blank">Download</a></p>
<p>Fast and easy to install, the Google Plus One Button plugin automatically adds the +1 buttons throughout your website.</p>
<ol>
<li><strong>Scriptrr Google + Profile widget </strong></li>
</ol>
<p>Created by Sandeep Verma of blog.svnlabs.com</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/scriptrr-google-profile/" target="_blank">Download</a></p>
<p>Google Plus Profile Widget allows users to plus your posts and follow or add you to their circles on Google+.</p>
<ol>
<li><strong>WordPress plugin – Google +1 Button </strong></li>
</ol>
<p>Created by Appointy.com</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/google-plus-one-google1/" target="_blank">Download</a></p>
<p>This is a pretty impressive plugin that boasts a variety of features: it adds the +1 button to your posts so your content may be rated and also shows a count of how many times people have plus’d your posts.</p>
<ol>
<li><strong>WP Google+1</strong></li>
</ol>
<p>Created by sebar of goopl.de</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wp1/" target="_blank">Download</a></p>
<p>Add the +1 button to your blog and show the number of shared articles as well.</p>
<ol>
<li><strong>Add Google +1 (Plus one) social share Button </strong></li>
</ol>
<p>Created by Rohan Pawale of techlunatic.com</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/add-google-plus-one-social-share-button/" target="_blank">Download <strong></strong></a></p>
<p>Automatically displays the +1 button above, below or on both sides of the post and admin may alter the button size to small, medium or tall.</p>
<ol>
<li><strong>Plus One</strong></li>
</ol>
<p>Created by metronet</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/plus-one/" target="_blank">Download </a></p>
<p>Easy to install, the plugin adds the +1 button to your blog or website.</p>
<ol>
<li><strong>WordPress Google +1 Button – Advanced Plugin, Includes Redirection</strong></li>
</ol>
<p>Created by <a target="_blank" href="http://blog.jacobwg.com/wp-plus-one/" target="_blank">jacobwg</a></p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/wp-plus-one/" target="_blank">Download <strong></strong></a></p>
<p>This is the ultimate +1 button on the web. In a nutshell, it lets you add the +1 button to your website and on each individual post and gives you the freedom to enable or disable a +1 on certain posts or pages.</p>
<p>Just in case that’s not enough for you, here’s a few more</p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/add-google-plusone/" target="_blank"><strong>Add Google PlusOne </strong></a></p>
<p><a target="_blank" href="http://wordpress.org/extend/plugins/google-1-button-automator/" target="_blank"><strong>Google +1 button automator </strong></a></p>
<p><strong><a target="_blank" href="http://wordpress.org/extend/plugins/google-recommend-widget/" target="_blank">Google Recommend Widget</a> </strong></p>
<p><strong><a target="_blank" href="http://wordpress.org/extend/plugins/wp-plusone-this/" target="_blank">WP PlusOne This</a> </strong></p>
<p><strong><a target="_blank" href="http://wordpress.org/extend/plugins/subscribe-connect-follow-widget/" target="_blank">Subscribe / Connect / Follow Widget</a> </strong></p>
<p><strong><a target="_blank" href="http://wordpress.org/extend/plugins/simple-social-sharing-widgets-icons-updated/" target="_blank">Simple Social – Sharing Widgets &amp; Icons Updated</a> </strong></p>
<p>Like this post? Don’t forget to +1!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/google-1-plugin-overload/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google+ (Google Plus) status update bot in PHP</title>
		<link>http://www.w3code.net/google-google-status-update-bot-php/</link>
		<comments>http://www.w3code.net/google-google-status-update-bot-php/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:01:26 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[PHP script]]></category>
		<category><![CDATA[SEO tool]]></category>
		<category><![CDATA[Auto Facebook]]></category>
		<category><![CDATA[Auto Google Plus]]></category>
		<category><![CDATA[Auto Twitter]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=3119</guid>
		<description><![CDATA[Finally! Google Plus status updater is here It is written in PHP, so it should be cross platform, which is a plus It needs the curl extension to work though. Well, the bot can log into your Google account and update your Google Plus status, but I’m sure you can extend it to other Google [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.w3code.net/wp-content/uploads//2012/05/Nut-Google-+1.jpg"><img class="alignleft size-medium wp-image-3120" title="Nut-Google-+1" src="http://www.w3code.net/wp-content/uploads//2012/05/Nut-Google-+1-300x216.jpg" alt="" width="300" height="216" /></a>Finally! Google Plus status updater is here <img src='http://www.w3code.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  It is written in PHP, so it should be cross platform, which is a plus <img src='http://www.w3code.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  It needs the curl extension to work though. Well, the bot can log into your Google account and update your Google Plus status, but I’m sure you can extend it to other Google products. All this is done without Google API, OAuth, tokens or any other annoying products. Post your comments, improvements and feature request below.</p>
<p>&nbsp;</p>
<div class="codesnip-container" >/**<br />
* Google+ (plus.google.com) PHP Curl bot<br />
* @since Sep 29 2011<br />
* @version 15.12.2011<br />
* @link http://360percents.com/<br />
* @author Luka Pušić<br />
*/<br />
/**<br />
* REQUIRED PARAMETERS<br />
*/<br />
$status = &#8216;testzzz&#8217;;<br />
$email = &#8216;your@email.com&#8217;;<br />
$pass = &#8216;yourpassw0rd&#8217;;</div>
<div class="codesnip-container" >/**<br />
* OPTIONAL PARAMETERS<br />
* sleeptime is an optional timeout parameter which makes us look less suspicious to Google<br />
* Enter pageid if you want to post to a page.<br />
*/<br />
$pageid = false;<br />
$cookies = &#8216;cookie.txt&#8217;;<br />
$sleeptime = 0;<br />
$uagent = &#8216;Mozilla/4.0 (compatible; MSIE 5.0; S60/3.0 NokiaN73-1/2.0(2.0617.0.0.7) Profile/MIDP-2.0 Configuration/CLDC-1.1)&#8217;;<br />
$pc_uagent = &#8216;Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1&#8242;;<br />
$debug = FALSE;</div>
<div class="codesnip-container" >function tidy($str) {<br />
return rtrim($str, &#8220;&amp;&#8221;);<br />
}</div>
<div class="codesnip-container" >/**<br />
* Handle cookie file<br />
*/<br />
@unlink($cookies); //delete previous cookie file if exists<br />
touch($cookies); //create a cookie file</div>
<div class="codesnip-container" >/**<br />
* MAIN BLOCK<br />
* login_data() just collects login form info<br />
* login($postdata) logs you in and you can do pretty much anything you want from here on<br />
*/<br />
login(login_data());<br />
sleep($sleeptime);<br />
if ($pageid) {<br />
update_page_status();<br />
} else {<br />
update_profile_status();<br />
} //update status with $GLOBAL['status'];<br />
sleep($sleeptime);<br />
logout(); //optional &#8211; log out</div>
<p>/**<br />
* 1. GET: http://plus.google.com/<br />
* Parse the webpage and collect form data<br />
* @return array (string postdata, string postaction)<br />
*/<br />
function login_data() {<br />
$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_COOKIEJAR, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_USERAGENT, $GLOBALS['uagent']);<br />
curl_setopt($ch, CURLOPT_URL, &#8220;https://plus.google.com/&#8221;);<br />
curl_setopt($ch, CURLOPT_COOKIEFILE, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);</p>
<p>$buf = utf8_decode(html_entity_decode(curl_exec($ch)));<br />
$buf = str_replace( &#8216;&amp;&#8217;, &#8216;&amp;&#8217;, $buf ); // just in case any correctly encoded<br />
$buf = str_replace( &#8216;&amp;&#8217;, &#8216;&amp;&#8217;, $buf ); // now encode them all again<br />
curl_close($ch);</p>
<p>echo &#8220;\n[+] Sending GET request to: https://plus.google.com/\n\n&#8221;;</p>
<p>$toreturn = &#8221;;</p>
<p>$doc = new DOMDocument;<br />
$doc-&gt;loadxml($buf);<br />
$inputs = $doc-&gt;getElementsByTagName(&#8216;input&#8217;);<br />
foreach ($inputs as $input) {<br />
switch ($input-&gt;getAttribute(&#8216;name&#8217;)) {<br />
case &#8216;Email&#8217;:<br />
$toreturn .= &#8216;Email=&#8217; . urlencode($GLOBALS['email']) . &#8216;&amp;&#8217;;<br />
break;<br />
case &#8216;Passwd&#8217;:<br />
$toreturn .= &#8216;Passwd=&#8217; . urlencode($GLOBALS['pass']) . &#8216;&amp;&#8217;;<br />
break;<br />
default:<br />
$toreturn .= $input-&gt;getAttribute(&#8216;name&#8217;) . &#8216;=&#8217; . urlencode($input-&gt;getAttribute(&#8216;value&#8217;)) . &#8216;&amp;&#8217;;<br />
}<br />
}<br />
return array(tidy($toreturn), $doc-&gt;getElementsByTagName(&#8216;form&#8217;)-&gt;item(0)-&gt;getAttribute(&#8216;action&#8217;));<br />
}</p>
<p>/**<br />
* 2. POST login: https://accounts.google.com/ServiceLoginAuth<br />
*/<br />
function login($postdata) {</p>
<p>$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_COOKIEJAR, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_COOKIEFILE, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_USERAGENT, $GLOBALS['uagent']);<br />
curl_setopt($ch, CURLOPT_URL, $postdata[1]);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);<br />
curl_setopt($ch, CURLOPT_POST, 1);<br />
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata[0]);<br />
$buf = curl_exec($ch); #this is not the g+ home page, because the b**** doesn&#8217;t redirect properly<br />
curl_close($ch);<br />
if ($GLOBALS['debug']) {<br />
echo $buf;<br />
}</p>
<p>echo &#8220;\n[+] Sending POST request to: &#8221; . $postdata[1] . &#8220;\n\n&#8221;;<br />
}</p>
<p>/**<br />
* 3. GET status update form:<br />
* Parse the webpage and collect form data<br />
*/<br />
function update_profile_status() {</p>
<p>$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_COOKIEJAR, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_COOKIEFILE, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_USERAGENT, $GLOBALS['uagent']);<br />
curl_setopt($ch, CURLOPT_URL, &#8216;https://m.google.com/app/plus/?v=compose&amp;group=m1c&amp;hideloc=1&#8242;);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);<br />
$buf = utf8_decode(html_entity_decode(str_replace(&#8216;&amp;&#8217;, &#8221;, curl_exec($ch))));<br />
$header = curl_getinfo($ch);<br />
curl_close($ch);<br />
if ($GLOBALS['debug']) {<br />
echo $buf;<br />
}</p>
<p>$params = &#8221;;<br />
$doc = new DOMDocument;<br />
$doc-&gt;loadxml($buf);<br />
$inputs = $doc-&gt;getElementsByTagName(&#8216;input&#8217;);<br />
foreach ($inputs as $input) {<br />
if (($input-&gt;getAttribute(&#8216;name&#8217;) != &#8216;editcircles&#8217;)) {<br />
$params .= $input-&gt;getAttribute(&#8216;name&#8217;) . &#8216;=&#8217; . urlencode($input-&gt;getAttribute(&#8216;value&#8217;)) . &#8216;&amp;&#8217;;<br />
}<br />
}<br />
$params .= &#8216;newcontent=&#8217; . urlencode($GLOBALS['status']);<br />
//$baseurl = $doc-&gt;getElementsByTagName(&#8216;base&#8217;)-&gt;item(0)-&gt;getAttribute(&#8216;href&#8217;);<br />
$baseurl = &#8216;https://m.google.com&#8217; . parse_url($header['url'], PHP_URL_PATH);</p>
<p>$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_COOKIEJAR, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_COOKIEFILE, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_USERAGENT, $GLOBALS['uagent']);<br />
//delete group=b0&amp; in the line below, to post just to your circles, not to public<br />
curl_setopt($ch, CURLOPT_URL, $baseurl . &#8216;?v=compose&amp;group=m1c&amp;group=b0&amp;hideloc=1&amp;a=post&#8217;);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);<br />
curl_setopt($ch, CURLOPT_REFERER, $baseurl . &#8216;?v=compose&amp;group=m1c&amp;group=b0&amp;hideloc=1&#8242;);<br />
curl_setopt($ch, CURLOPT_POST, 1);<br />
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);<br />
$buf = curl_exec($ch);<br />
$header = curl_getinfo($ch);<br />
curl_close($ch);<br />
if ($GLOBALS['debug']) {<br />
echo $buf;<br />
}</p>
<p>echo &#8220;\n[+] POST Updating status on: &#8221; . $baseurl . &#8220;\n\n&#8221;;<br />
}</p>
<p>/**<br />
* Not implemented yet!<br />
* just ignore this function for now<br />
*/<br />
function update_page_status() {</p>
<p>$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_COOKIEJAR, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_COOKIEFILE, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_USERAGENT, $GLOBALS['pc_uagent']);<br />
curl_setopt($ch, CURLOPT_URL, &#8216;https://plus.google.com/u/0/b/&#8217; . $GLOBALS['pageid'] . &#8216;/&#8217;);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);<br />
$buf = utf8_decode(html_entity_decode(str_replace(&#8216;&amp;&#8217;, &#8221;, curl_exec($ch))));<br />
curl_close($ch);<br />
if ($GLOBALS['debug']) {<br />
echo $buf;<br />
}<br />
}</p>
<p>/**<br />
* 3. GET logout:<br />
* Just logout to look more human like and reset cookie <img src='http://www.w3code.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
*/<br />
function logout() {<br />
echo &#8220;\n[+] GET Logging out: \n\n&#8221;;<br />
$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_COOKIEJAR, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_COOKIEFILE, $GLOBALS['cookies']);<br />
curl_setopt($ch, CURLOPT_USERAGENT, $GLOBALS['uagent']);<br />
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_URL, &#8216;https://www.google.com/m/logout&#8217;);<br />
$buf = curl_exec($ch);<br />
curl_close($ch);<br />
if ($GLOBALS['debug']) {<br />
echo $buf;<br />
}<br />
}</p>
<p>&nbsp;</p>
<div class="codesnip-container" >?&gt;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/google-google-status-update-bot-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.htaccess 301 Redirects for IP Ranges</title>
		<link>http://www.w3code.net/htaccess-301-redirects-ip-ranges/</link>
		<comments>http://www.w3code.net/htaccess-301-redirects-ip-ranges/#comments</comments>
		<pubDate>Wed, 16 May 2012 14:04:42 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[.htaccess 301 Redirects]]></category>
		<category><![CDATA[IP Ranges]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=1694</guid>
		<description><![CDATA[Sometimes they can be relentless and can really start to get quite annoying and so I searched for a method that once you have obtained their IP address could redirect them to another website altogether. The method is to use the .htaccess file in the root of a website’s directory to redirect the offender’s IP [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes they can be relentless and can really start to get quite annoying and so I searched for a method that once you have obtained their <a target="_blank" href="http://en.wikipedia.org/wiki/IP_address">IP address</a> could redirect them to another website altogether. The method is to use the <a target="_blank" href="http://en.wikipedia.org/wiki/Htaccess">.htaccess</a> file in the root of a website’s directory to redirect the offender’s IP address to a new location. An .htaccess file is the default directory configuration file used on <a target="_blank" href="http://en.wikipedia.org/wiki/Apache_HTTP_Server">Apache Servers</a> and can be used to rewrite URLs, to authenticate usernames and passwords or for customised error responses (error 404 pages etc). They can be created quite simply using any editor like notepad and are unusually saved without a filename and the extension of .htaccess.</p>
<ul>
<li>Your hosting needs to support <a target="_blank" href="http://www.php.net">PHP</a></li>
<li>Your hosting needs to be on an Apache Server – preferably Linux based – IIS will not support .htaccess files.</li>
<li>You need to check with your host that .htaccess files are allowed to be used. This should be fine in most cases.</li>
</ul>
<p>The first step is to get their IP address. On your blog this shouldn’t be a problem as you normally get their IP address when they post a comment/reply to one of your blog’s. With the forms on your website, those that use PHP can quite simply add one line of code to their form to e-mail script.</p>
<p>To block the offender from being able to access your website at all then you want to use the following in your .htaccess. Change the IP address to suit your offender and the destination URL. Save it as .htaccess and put it in the root of your website. Also change the \.php to \.html if your website uses html for pages extensions and not php.</p>
<p><strong>Using a single ip address: </strong></p>
<pre># permanently redirect specific IP request for entire site
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_HOST} 22\.22\.22\.239
RewriteRule \.php$ http://www.destinationwebsite.com/ [R=301,L]</pre>
<p><strong>Using an IP range:</strong></p>
<pre># permanently redirect specific IP request for entire site
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_HOST} 22\.22\.22
RewriteRule \.php$ http://www.destinationwebsite.com/ [R=301,L]</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/htaccess-301-redirects-ip-ranges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

