<?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/category/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>Automatic plugin upgrade from wordpress 2.5 is neat</title>
		<link>http://www.proxyutza.com/automatic-plugin-upgrade-from-wordpress-25-is-neat/</link>
		<comments>http://www.proxyutza.com/automatic-plugin-upgrade-from-wordpress-25-is-neat/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 16:27:07 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/automatic-plugin-upgrade-from-wordpress-25-is-neat/</guid>
		<description><![CDATA[As i was saying in the title the automatic upgrade function is cool, no more manually downloading files and overwriting them, you just press &#8220;automatic upgrade&#8221; and everything is done by wordpress. For example i tried automatic upgrading for Sociable plugin, here is the result: Downloading update from http://downloads.wordpress.org/plugin/sociable.2.6.2.zip Unpacking the update Deactivating the plugin [...]]]></description>
			<content:encoded><![CDATA[<p>As i was saying in the title the automatic upgrade function is cool, no more manually downloading files and overwriting them, you just press &#8220;automatic upgrade&#8221; and everything is done by wordpress. For example i tried automatic upgrading for Sociable plugin, here is the result:</p>
<p>Downloading update from http://downloads.wordpress.org/plugin/sociable.2.6.2.zip</p>
<p>Unpacking the update</p>
<p>Deactivating the plugin</p>
<p>Removing the old version of the plugin</p>
<p>Installing the latest version</p>
<p>Plugin upgraded successfully</p>
<p>Attempting reactivation of the plugin<br />
Plugin reactivated successfully.</p>
<p>Yeah, you&#8217;ve guessed, its done!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/automatic-plugin-upgrade-from-wordpress-25-is-neat/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrading to wordpress 2.5</title>
		<link>http://www.proxyutza.com/upgrading-to-wordpress-25/</link>
		<comments>http://www.proxyutza.com/upgrading-to-wordpress-25/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 15:31:06 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[gadgets]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/upgrading-to-wordpress-25/</guid>
		<description><![CDATA[Actually the title is not to good, because i didn&#8217;t upgrade to WordPress 2.5, i just installed this new version on a new gadgets blog i launched today and i have to tell you, if you consider upgrading you might be surprised, in the negative way, about the new interface. I mean i love the [...]]]></description>
			<content:encoded><![CDATA[<p>Actually the title is not to good, because i didn&#8217;t upgrade to WordPress 2.5, i just installed this new version on a new <a href="http://www.zipgadgets.com" title="Gadgets blog">gadgets blog</a> i launched today and i have to tell you, if you consider upgrading you might be surprised, in the negative way, about the new interface. I mean i love the new features, but the new interface just sucks, the colors are too bright, the text is too small, basically it will make your eyes red. I don&#8217;t know why they choose that orange color in the menu&#8230; But what else can i do ? eventually i will have to upgrade all my blogs to wordpress 2.5. I think the reaction i have is common among other bloggers, so maybe the wordpress team will release an update with colors a bit more acceptable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/upgrading-to-wordpress-25/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>
	</channel>
</rss>
