<?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>Proxyutza blog &#187; Wordpress</title>
	<atom:link href="http://www.proxyutza.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.proxyutza.com</link>
	<description>About all sorth of things: PHP, Hacks, Scripts, Servers, Linux, Technology, News, Trends</description>
	<lastBuildDate>Wed, 26 May 2010 10:37:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress hacked with Zend encoded script</title>
		<link>http://www.proxyutza.com/wordpress-hacked-with-zend-encoded-script/</link>
		<comments>http://www.proxyutza.com/wordpress-hacked-with-zend-encoded-script/#comments</comments>
		<pubDate>Wed, 26 May 2010 10:29:27 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[base_64]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=120</guid>
		<description><![CDATA[This time happened on Hostgator, I found the following code in my footer.php file: 1 2 &#60;?php @include_once&#40;ABSPATH . &#34;/wp-includes/wp-vars.php&#34;&#41;; ?&#62; &#60;?=@get_wp_results&#40;'f'&#41;;?&#62; This totally screwed my footer section and above that it made my website traffic go to zero. I immediately removed the code and discovered two files: wp-includes/wp-vars.php encoded with Zend which I am [...]]]></description>
			<content:encoded><![CDATA[<p>This time happened on Hostgator, I found the following code in my footer.php file:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #339933;">@</span><span style="color: #b1b100;">include_once</span><span style="color: #009900;">&#40;</span>ABSPATH <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;/wp-includes/wp-vars.php&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?=</span><span style="color: #339933;">@</span>get_wp_results<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'f'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>This totally screwed my footer section and above that it made my website traffic go to zero. I immediately removed the code and discovered two files:<br />
<strong>wp-includes/wp-vars.php </strong>encoded with Zend which I am unable to decode. It would be great if someone could decode this so we can see the malicious code.<br />
<strong>wp-includes/wp-version.php </strong>encoded with base_64 and decoded to :<br />
<strong>file_put_contents(&#8216;wp-common.php&#8217;,base64_decode($bb) )</strong></p>
<p>I deleted both of these files and everything seems ok now. I was unable to find wp-common.php so I assume it wasn&#8217;t created yet.<br />
wp-includes/wp-vars.php encoded with Zendwp-includes/wp-version.php</p>
<p>Downloads:<br />
<a href='http://www.proxyutza.com/wp-content/uploads/2010/05/wp-vars.zip'>wp-vars</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/wordpress-hacked-with-zend-encoded-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wp-admin/post-new.php redirects to blog index</title>
		<link>http://www.proxyutza.com/wp-adminpost-new-php-redirects-to-blog-index/</link>
		<comments>http://www.proxyutza.com/wp-adminpost-new-php-redirects-to-blog-index/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 23:25:28 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=118</guid>
		<description><![CDATA[After I upgraded the blog to wordpress v 2.9 I noticed something went wrong, both my post-new.php and edit.php pages were redirecting to the blog index with a 302 redirect (HTTP/1.x 302 Moved Temporarily). The first thing I did was to check the htaccess file from the index and from the wp-admin directory but the [...]]]></description>
			<content:encoded><![CDATA[<p>After I upgraded the blog to wordpress v 2.9 I noticed something went wrong, both my<strong> post-new.php</strong> and <strong>edit.php</strong> pages were <strong>redirecting to the blog index</strong> with a <strong>302 redirect</strong> (HTTP/1.x 302 Moved Temporarily). The first thing I did was to check the htaccess file from the index and from the wp-admin directory but the problem wasn&#8217;t coming from there. Next thing I disabled all of my plugins to see if one of the plugins was causing the problem but it wasn&#8217;t the case. Finally I thought I should reinstall wordpress because this was most likely a wordpress glitch. So if you find yourself in the same situation here is what you need to do to fix the redirect:</p>
<p>from the admin panel go to Tools&gt; Upgrade &gt; Re-install automatically , next wordpress will re-install the same version automatically. This fixed my problem and I can use the pages now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/wp-adminpost-new-php-redirects-to-blog-index/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Remove WordPress version tag from header</title>
		<link>http://www.proxyutza.com/remove-wordpress-version-tag-from-header/</link>
		<comments>http://www.proxyutza.com/remove-wordpress-version-tag-from-header/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 17:09:19 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wp_generator]]></category>
		<category><![CDATA[wp_head]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=76</guid>
		<description><![CDATA[Since version 2.5 WordPress inserts the version meta tag &#60;meta name=&#8221;generator&#8221; content=&#8221;WordPress 2.5&#8243; /&#62; automatically without you having the possibility to remove it from the header file. WordPress now uses &#60;?php wp_head(); ?&#62; a function that if you remove you&#8217;re removing more than just the wordpress version. So the solution is to add something to [...]]]></description>
			<content:encoded><![CDATA[<p>Since version 2.5 WordPress inserts the version meta tag <strong>&lt;meta name=&#8221;generator&#8221; content=&#8221;WordPress 2.5&#8243; /&gt; </strong>automatically without you having the possibility to remove it from the header file. WordPress now uses<strong> &lt;?php wp_head(); ?&gt;</strong> a function that if you remove you&#8217;re removing more than just the wordpress version. So the solution is to add something to your themes <strong>functions.php</strong> file.</p>
<p>Place this code: <strong><code>remove_action('wp_head', 'wp_generator');</code></strong> right before the closing php tag ?&gt; . Now check your source code, the wordpress version is not disclosed any more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/remove-wordpress-version-tag-from-header/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6.3 is available!</title>
		<link>http://www.proxyutza.com/wordpress-263-is-available/</link>
		<comments>http://www.proxyutza.com/wordpress-263-is-available/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 07:35:15 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=61</guid>
		<description><![CDATA[WordPress just launched a new version, thank god i have the automatic upgrade plugin because they launch new versions every month. I&#8217;m just a click away of the new wordpress. Hmmm lets see what this new wordpress brings to the table. late update: I&#8217;ts curious though that my other wordpress blogs think their up to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WordPress </strong>just launched a new version, thank god i have the automatic upgrade plugin because they launch new versions every month. I&#8217;m just a click away of the new wordpress. Hmmm lets see what this <strong>new wordpress</strong> brings to the table.</p>
<p>late update: I&#8217;ts curious though that my other wordpress blogs think their up to date <img src='http://www.proxyutza.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/wordpress-263-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 launched</title>
		<link>http://www.proxyutza.com/wordpress-25-launched/</link>
		<comments>http://www.proxyutza.com/wordpress-25-launched/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 21:54:55 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[AJAX]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/wordpress-25-launched/</guid>
		<description><![CDATA[Finally wordpress 2.5 was launched. I haven&#8217;t made the upgrade yet, since i&#8217;m not in the mood for upgrading 12 blog&#8217;s but i will do it tomorrow for sure. I think the most interesting features of the new wordpress are : the dashboard widgets, the multi-file upload with progress bar and the few click plugin [...]]]></description>
			<content:encoded><![CDATA[<p>Finally wordpress 2.5 was launched. I haven&#8217;t made the upgrade yet, since i&#8217;m not in the mood for upgrading 12 blog&#8217;s but i will do it tomorrow for sure. I think the most interesting features of the new wordpress are : the dashboard widgets, the multi-file upload with progress bar and the few click plugin upgrades. Ofcourse all the new features are cool, but we will have to see if they prove useful or not. As i wrote in my previous post, you have to be careful when making the upgrade because you can&#8217;t revert it with a simple rewrite of the files. So make sure you backup before you start.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/wordpress-25-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change your permalink structure and keep the old one too</title>
		<link>http://www.proxyutza.com/change-your-permalink-structure-and-keep-the-old-one-too/</link>
		<comments>http://www.proxyutza.com/change-your-permalink-structure-and-keep-the-old-one-too/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 17:58:32 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Permalinks]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/change-your-permalink-structure-and-keep-the-old-one-too/</guid>
		<description><![CDATA[After researching a bit i made up my mind to change the permalinks structure on my Electronics Blog. I ran the blog for about 8 months with the default permalinks structure which is /%year%/%monthnum%/%day%/%postname%/ . The reason i wanted to change the permalinks structure is pure SEO. I noticed that many other blogs are using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.proxyutza.com/adsense-manager-plugin-problems-after-upgrading/wordpress-logo/" rel="attachment wp-att-33" title="WordPress logo"><img src="http://www.proxyutza.com/wp-content/uploads/2008/03/wordpress-logo.thumbnail.png" alt="WordPress logo" align="left" /></a></p>
<p>After researching a bit i made up my mind to <strong>change the permalinks</strong> structure on my <a href="http://www.youritronics.com" title="Electronics blog" target="_blank">Electronics Blog</a>. I ran the blog for about 8 months with the default <strong>permalinks structure</strong> which is /%year%/%monthnum%/%day%/%postname%/ . The reason i wanted to change the permalinks structure is pure SEO. I noticed that many other blogs are using only the /%postname%/ as permalinks structure, so i figured they must know why, and as a plus it also looks nicer, i don&#8217;t really like long URLs, they are better shorter.</p>
<p>But as i was thinking at making the change a problem appeared in my mind: Google has all my pages indexed with the old <strong>permalinks</strong> structure which means when someone will try to access a result page from <a href="http://www.google.com" title="Google search-engine" target="_blank">Google</a> they will get a &#8220;not found&#8221; page on my blog, not to mention the loss of all my back-links on the articles, this will be like killing my blog, if I&#8217;d do this my traffic will go down with about 80 %. Not a good idea indeed.</p>
<p>So i did a little research on Google about permalinks migration, and i found a great plugin, <a href="http://www.deanlee.cn/wordpress/permalinks-migration-plugin/" title="permalinks plugin">The Permalinks Migration Plugin.</a> The plugin makes use of a directive named the &#8220;301 Redirect&#8221;. This redirect is acknowledged by all the search engines including Google, and what it does, is to redirect search engines and any user trying to access the old structure link to the new structure. And you wont loose a visitor, not even one.</p>
<p>You can download The <strong>Permalinks Migration Plugin</strong> from <a href="http://www.deanlee.cn/downloads/deans_permalinks_migration_v1.0.zip">here.</a> After unzipping you upload the files to your WordPress plugins directory and then you activate the plugin trough the admin panel. After you activated the plugin you need to go to Options &gt; PermalinksMigration : and set your old permalinks structure or it should be already set. Next you have to go to Options &gt; Permalinks and make the change to your new desired permalinks structure, i recommend the /%postname%/ as structure or /%category%/%postname%/ , apply the new settings and its done, your post will now show with the new permalinks, but every old link will be redirected to the new one. Isn&#8217;t this great ?</p>
<p>After seeing how easy it was to <strong>change the permalinks structure</strong> i also did it here, on this blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/change-your-permalink-structure-and-keep-the-old-one-too/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress v 2.5 has some issues</title>
		<link>http://www.proxyutza.com/wordpress-v-25-has-some-issues/</link>
		<comments>http://www.proxyutza.com/wordpress-v-25-has-some-issues/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 11:26:38 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/03/19/wordpress-v-25-has-some-issues/</guid>
		<description><![CDATA[After i read what some bloggers who updated their wordpress to the beta version, have said about it, im not thinking of upgrading, not a chance. They said that the new interface its not like it should be with warm colors, actually the combination of colors is not so good. And after you&#8217;ve upgraded you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.proxyutza.com/2008/03/14/adsense-manager-plugin-problems-after-upgrading/wordpress-logo/" rel="attachment wp-att-33" title="WordPress logo"><img src="http://www.proxyutza.com/wp-content/uploads/2008/03/wordpress-logo.thumbnail.png" alt="WordPress logo" /></a></p>
<p>After i read what some bloggers who updated their wordpress to the beta version, have said about it, im not thinking of upgrading, not a chance. They said that the new interface its not like it should be with warm colors, actually the combination of colors is not so good. And after you&#8217;ve upgraded you cant downgrade with a simple rewrite. Another issue is that xmlrpc.php is not compatible with windows live writer, the post is published on the blog, but in windows live writer it generates errors. And it seems that the admin interface for comments is missing the AJAX interface.</p>
<p>I am sure I&#8217;m gonna wait before upgrading</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/wordpress-v-25-has-some-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New wordpress v 2.5</title>
		<link>http://www.proxyutza.com/new-wordpress-v-25/</link>
		<comments>http://www.proxyutza.com/new-wordpress-v-25/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 20:00:18 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/03/18/new-wordpress-v-25/</guid>
		<description><![CDATA[WordPress has released a new version for testing, and if everything goes well it should become the new stable version. The new version should load faster and contain a new interface that will allow you to work faster while keeping the wordpress classic simplicity. A few of the new features are : A customizable dashboard, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.proxyutza.com/2008/03/14/adsense-manager-plugin-problems-after-upgrading/wordpress-logo/" rel="attachment wp-att-33" title="WordPress logo"><img src="http://www.proxyutza.com/wp-content/uploads/2008/03/wordpress-logo.thumbnail.png" alt="WordPress logo" /></a></p>
<p>WordPress has released a <a href="http://wordpress.org/development/2008/03/25-sneak-peek/">new version</a> for testing, and if everything goes well it should become the new stable version. The new version should load faster and contain a new interface that will allow you to work faster while keeping the wordpress classic simplicity. A few of the new features are : A customizable dashboard, multi-file upload, built-in galleries, one-click plugin upgrades, tag management, built-in Gravatars and full text feeds. We just have to wait a few days for the feedback from the testing users to be processed and once everything is ok, we should enjoy the new WordPress 2.5</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/new-wordpress-v-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugin list</title>
		<link>http://www.proxyutza.com/wordpress-plugin-list/</link>
		<comments>http://www.proxyutza.com/wordpress-plugin-list/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 11:51:52 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/03/17/wordpress-plugin-list/</guid>
		<description><![CDATA[This is just a small list of the plugin&#8217;s i use to make the wordpress experience much better. EasyTube: a plugin that allows you to easily insert youtube or google videos into your articles by using a sintax. GoogleAnalytics: this plugin inserts automatically the tracking code into every page of your blog. AdsenseManager: this plugin [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a small list of the plugin&#8217;s i use to make the wordpress experience much better.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/easytube/" title="EasyTube plugin">EasyTube</a>:</strong> a plugin that allows you to easily insert youtube or google videos into your articles by using a sintax.</p>
<p><strong><a href="http://www.semiologic.com/software/marketing/google-analytics/">GoogleAnalytics:</a></strong> this plugin inserts automatically the tracking code into every page of your blog.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/adsense-manager/" title="adsense manager plugin">AdsenseManager:</a></strong> this plugin allows you to easily manage your ads from a control panel, it also support other ad networks.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/maintenance-mode/" title="maintenance mode plugin">Maintenance Mode:</a></strong> this plugin proves to be really useful when you are making changes to your blog and want to tell your visitors about this in a pleasant way. The plugin adds a splash page to your blog that lets visitors know your blog is down for  maintenance while logged in administrators get full access to the blog including the front-end.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/simple-tags/" title="Simple tags wp plugin">Simple Tags:</a></strong> in my opinion this is the perfect wordpress plugin to manage your tags. It also incorporates other functions like Related Post and a highly versatile TagCloud.</p>
<p><strong><a href="http://www.joostdevalk.nl/wordpress/rss-footer/" title="rss footer wp plugin">RSS Footer:</a></strong> this wordpress plugin allows you to add a copyright into your RSS footer.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/wp-dbmanager/" title="wordpress db manager plugin">WP-DBManager:</a></strong> this plugin is probably the most lifesaver from all of them. It has a function for scheduled automatic back-up of your database and many other useful functions including emailing the back-up to your address.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/wp-ban/" title="wordpress ban plugin">WP-Ban:</a></strong> this wordpress plugin provides you with a nice administration panel where you can ban different ip ranges or single ip-s. When the banned ip-s access the blog it will display a custom ban message.</p>
<p><strong><a href="http://www.zappelfillip.de/2005-12-05/zap_newwindow/#english_zap_newwindow">Zap-NewWindow:</a></strong> Zap new windows plugin provides a nice functio: any link except from the blogs domain, will be opened in a new windows when clicked.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/subscribe-to-comments/">Subscribe to Comments:</a></strong> as the names states this wordpress plugin ads a litle box to the end of the comment form that users can opt for to receive email notifications from that article&#8217;s comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/wordpress-plugin-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adsense Manager plugin &#8211; problems after upgrading</title>
		<link>http://www.proxyutza.com/adsense-manager-plugin-problems-after-upgrading/</link>
		<comments>http://www.proxyutza.com/adsense-manager-plugin-problems-after-upgrading/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 12:53:47 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Adsense Manager]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/03/14/adsense-manager-plugin-problems-after-upgrading/</guid>
		<description><![CDATA[Its been a while i don&#8217;t know maybe 2 weeks, since the message with upgrade to a newer version started to appear on my plugin&#8217;s page for the Adsense Manager plugin, but i didn&#8217;t rushed into upgrading. Today though i decided to remove that message and upgrade to its latest version. Now i regret a [...]]]></description>
			<content:encoded><![CDATA[<p align="left"> <a href="http://www.proxyutza.com/2008/03/14/adsense-manager-plugin-problems-after-upgrading/wordpress-logo/" rel="attachment wp-att-33" title="WordPress logo"><img src="http://www.proxyutza.com/wp-content/uploads/2008/03/wordpress-logo.thumbnail.png" alt="WordPress logo" align="left" /></a></p>
<p>Its been a while i don&#8217;t know maybe 2 weeks, since the message with upgrade to a newer version started to appear on my plugin&#8217;s page for the Adsense Manager plugin, but i didn&#8217;t rushed into upgrading. Today though i decided to remove that message and upgrade to its latest version. Now i regret a bit i did that, because i thought everything is gonna go smoothly, but i was wrong. After copying the new files over the old ones, i accessed <a href="http://www.youritronics.com/" title="Electronics blog" target="_blank">my blog</a>(not this one, another blog of mine). And i had a nasty surprise, all my ads were gone, and in their spot there were this big blank spaces that messed up my layout. So i though that by uploading the old files i would just downgrade to my initial version and everything was going to be ok, but neah everything was even more messed up. PHP errors on my Manage Ads page now. At this moment i got pretty angry on this upgrade. So i uploaded again the new version, deleted all ads, and created new ones. Everything works ok now, but i had to put up like 1 hour of work for nothing, for a stupid upgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/adsense-manager-plugin-problems-after-upgrading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
