<?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</title>
	<atom:link href="http://www.proxyutza.com/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.1</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>New iPhone</title>
		<link>http://www.proxyutza.com/new-iphone/</link>
		<comments>http://www.proxyutza.com/new-iphone/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 13:05:21 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[ram]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=109</guid>
		<description><![CDATA[Gizmodo recently released an article about the new iPhone. The article had this picture included, which seems to show the new iPhone. Apple&#8217;s WWDC 2009 liveblog is just a weekend away so we should expect to see it unveiled there. The new iPhone wont have any extravagant new features like OLED display or back-lit apple [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.proxyutza.com/wp-content/uploads/2009/06/new-iphone-2009.jpeg"><img class="alignnone size-medium wp-image-111" title="new-iphone-2009" src="http://www.proxyutza.com/wp-content/uploads/2009/06/new-iphone-2009-300x239.jpg" alt="New iPhone 2009" width="504" height="401" /></a></p>
<p><a href="http://gizmodo.com/5266037/last-minute-rumor-updates-on-apple-wwdc-09">Gizmodo</a> recently released an article about the new iPhone. The article had this picture included, which seems to show the new iPhone. Apple&#8217;s WWDC 2009 liveblog is just a weekend away so we should expect to see it unveiled there. The new iPhone wont have any extravagant new features like OLED display or back-lit apple logo, like most of you would expect. Most people predict that the new iPhone will have an increase of cpu power and RAM size to better cope with people&#8217;s needs. And I think this is really a good strategy from Apple, cause people hate it when their phones are slow and the more and more complex apps that run on these phone demand more power.</p>
<p>There also are some price predictions for the<a title="new iPhone" href="http://www.youritronics.com/transform-your-new-iphone-into-old-school-iphone/" target="_blank"> new iPhone</a>. Nothing sure so far, so we&#8217;ll just have to wait until they launch it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/new-iphone/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>Magento &#8211; how to add download links on product page</title>
		<link>http://www.proxyutza.com/magento-how-to-add-download-links-on-product-page/</link>
		<comments>http://www.proxyutza.com/magento-how-to-add-download-links-on-product-page/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 10:46:05 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[xHTML]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=67</guid>
		<description><![CDATA[This is a serious drawback when using magento, i don&#8217;t know why they havent added this feature yet because other carts have it. Most of shops have products that ofer user guide or other downloads. It&#8217;s nice to be able to find them on the product page. For the moment there is only a small [...]]]></description>
			<content:encoded><![CDATA[<p>This is a serious drawback when using magento, i don&#8217;t know why they havent added this feature yet because other carts have it. Most of shops have products that ofer user guide or other downloads. It&#8217;s nice to be able to find them on the product page.</p>
<p>For the moment there is only a small hack that you can do to be able to display download links on your product page. I learned about it on the magento forums and adjusted the code to fit my theme.</p>
<p>So if you&#8217;re using the default magento theme, do the following:</p>
<p>1. create a new folder under media/catalog/product/ named pdf so it should be media/catalog/product/pdf/</p>
<p>2. Upload your pdf document to yourshop/media/catalog/product/pdf so it should be yourshop/media/catalog/product/pdf/pdfdocument.pdf</p>
<p>3. go to your product managing page under admin panel and edit the product. Now in the short description box you must add the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;divider&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h4<span style="color: #339933;">&gt;</span>Downloads<span style="color: #339933;">&lt;/</span>h4<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;short-description&quot;</span><span style="color: #339933;">&gt;&lt;</span>a title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Download ATmega88 dev board User Guide&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.youritronics.com/shop/media/catalog/product/pdf/atmega88-dev-userguide.pdf&quot;</span> target<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;_blank&quot;</span><span style="color: #339933;">&gt;</span>User Guide<span style="color: #339933;">.</span>pdf <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">392</span> Kb<span style="color: #009900;">&#41;</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Remember the description box adds &lt;BR&gt; for every new line you create, so place the code immediately after your last character from product description to get a nice alignment. Now your Download section should appear immediately after your short description.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/magento-how-to-add-download-links-on-product-page/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Magento Admin Menu Not Working (js 404 error)</title>
		<link>http://www.proxyutza.com/magento-admin-menu-not-working/</link>
		<comments>http://www.proxyutza.com/magento-admin-menu-not-working/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:16:47 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=64</guid>
		<description><![CDATA[While i was installing a Magento oscommerce platform I encountered a problem, a new problem i might add, because i never saw it before. I&#8217;ve worked before with Magento but never had any issues. This time, after getting it up and running i noticed that my admin menu wasn&#8217;t working, the options weren&#8217;t dropping down [...]]]></description>
			<content:encoded><![CDATA[<p>While i was installing a <strong>Magento oscommerce platform</strong> I encountered a problem, a new problem i might add, because i never saw it before. I&#8217;ve worked before with Magento but never had any issues. This time, after getting it up and running i noticed that my <strong>admin menu wasn&#8217;t working</strong>, the options weren&#8217;t dropping down as usual.</p>
<p>You obviously can&#8217;t work without a menu so i started googling the issue. The first page i looked into gave some indications but nothing clear, and those guys we&#8217;re having the problem on ver 1.0 of Magento which is really old.</p>
<p>After trying and testing various methods i finally got it to work, and here is how i did it:</p>
<ul>
<li>step1: replace app/code/core/Mage/Page/Block/Html/Head.php with this <a href="http://www.proxyutza.com/wp-content/uploads/2008/11/head.zip">head.php</a></li>
<li>step2: chmod 755 the js/ folder, and folders within.</li>
<li>step3: chmod 644 the javascript files inside js/lib/</li>
<li>step4: chmod 644 js/index.php</li>
<li>step5: there is no step 5 <img src='http://www.proxyutza.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  your menu is now working</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/magento-admin-menu-not-working/feed/</wfw:commentRss>
		<slash:comments>39</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>Servage : Great Come-Back Offer (30% Discount) !</title>
		<link>http://www.proxyutza.com/servage-great-come-back-offer-30-discount/</link>
		<comments>http://www.proxyutza.com/servage-great-come-back-offer-30-discount/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 07:01:39 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Servage]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=59</guid>
		<description><![CDATA[Since they had me in their database Servage emailed me with a great offer, 30% discount come-back offer, but i don&#8217;t quite understand it, because it should be named come-back-to-trouble. Yeah, they wanna give me a discount to get back to trouble and have all sorts of problems. Under no circumstances I am getting back [...]]]></description>
			<content:encoded><![CDATA[<p>Since they had me in their database Servage emailed me with a great offer, 30% discount come-back offer, but i don&#8217;t quite understand it, because it should be named come-back-to-trouble. Yeah, they wanna give me a discount to get back to trouble and have all sorts of problems.</p>
<p>Under no circumstances I am getting back to you guys <img src='http://www.proxyutza.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>This is Steffan from Servage Hosting again. I can see that you were<br />
once a Servage customer therefore I would like to take this<br />
opportunity give you a great offer!</p>
<p>For a limited time we offer a 30% discount to all users using<br />
this <span id="lw_1224399358_0" class="yshortcuts" style="border-bottom: 1px dashed #0066cc; background: transparent none repeat scroll 0% 0%; cursor: pointer;">coupon code</span> when signing up: MEGA1210</p>
<p>This offer includes:<br />
* 30% discount (the entire life of your account!)<br />
* 510 GB Diskspace<br />
* 5010 GB Transfer/month<br />
* <span id="lw_1224399358_1" class="yshortcuts" style="border-bottom: 1px dashed #0066cc; cursor: pointer;">Free Domain</span><br />
* And all other features included in our normal package</p></blockquote>
<p>Message marked as spam ! <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/servage-great-come-back-offer-30-discount/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just came back from vacation</title>
		<link>http://www.proxyutza.com/just-came-back-from-vacation/</link>
		<comments>http://www.proxyutza.com/just-came-back-from-vacation/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 19:00:08 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Anything]]></category>
		<category><![CDATA[Mountains]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=58</guid>
		<description><![CDATA[I just came back from a two week vacation. It was actually quite nice as the scenery was breath taking wherever you looked. Anyway words can&#8217;t really describe it, you have to see it yourself.]]></description>
			<content:encoded><![CDATA[<p>I just came back from a two week vacation. It was actually quite nice as the scenery was breath taking wherever you looked. Anyway words can&#8217;t really describe it, you have to see it yourself.</p>
<p><a href="http://www.proxyutza.com/wp-content/uploads/2008/06/dsc01172.jpg"><img class="alignnone size-medium wp-image-57" title="Piatra Craiuluiu scenery from Romanian mountains " src="http://www.proxyutza.com/wp-content/uploads/2008/06/dsc01172-300x168.jpg" alt="Piatra Craiuluiu scenery from Romanian mountains " width="300" height="168" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/just-came-back-from-vacation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GoodBye Servage!</title>
		<link>http://www.proxyutza.com/goodbye-servage/</link>
		<comments>http://www.proxyutza.com/goodbye-servage/#comments</comments>
		<pubDate>Fri, 30 May 2008 17:44:12 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Hostgator]]></category>
		<category><![CDATA[Servage]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=56</guid>
		<description><![CDATA[Today i left Servage forever. I canceled my account and moved this blog on hostgator. I had this option where i could say what i disliked about Servage, the reason why i was leaving them, and i wrote: &#8220;yes, STOP beeing hacked, this drives your customers away&#8221; Kindly they replyied: Hello Florin, We are very [...]]]></description>
			<content:encoded><![CDATA[<p>Today i left Servage forever. I canceled my account and moved this blog on hostgator. I had this option where i could say what i disliked about Servage, the reason why i was leaving them, and i wrote:</p>
<p>&#8220;yes, STOP beeing hacked, this drives your customers away&#8221;</p>
<p>Kindly they replyied:</p>
<p>Hello Florin,</p>
<p>We are very sorry to hear that you want to leave Servage Hosting. Also<br />
we were aware of the issue and have done a lot of measures to repair and<br />
close any security whole there could be.</p>
<p>Please just ignore my e-mail if you don&#8217;t consider to stay at Servage<br />
Hosting, but we would be happy to know what we can do to convenience you<br />
to stay?</p>
<p>&#8211;<br />
Best Regards,<br />
Patricia Feddersen, Customer Care Manager</p>
<p>Servage Hosting</p>
<p>They are so kind when replying but whats the point if they&#8217;re not helping me ? I&#8217;m never going back to Servage</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/goodbye-servage/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
