<?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>Helpful Hints &#187; Web</title>
	<atom:link href="http://helpful-hints.info/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://helpful-hints.info</link>
	<description>Find the best solution!</description>
	<lastBuildDate>Sat, 07 Apr 2012 12:42:58 +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>Defeating Base64 Decode virus in WordPress</title>
		<link>http://helpful-hints.info/defeating-base64-decode-virus-in-wordpress/</link>
		<comments>http://helpful-hints.info/defeating-base64-decode-virus-in-wordpress/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 18:25:47 +0000</pubDate>
		<dc:creator>pycckuu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[base64]]></category>
		<category><![CDATA[decode]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://helpful-hints.info/?p=407</guid>
		<description><![CDATA[Hello, ever noticed some weird keywords in your Google Webmaster Tools? This is how i actually draw attention to a problem on one site, i was cleaning from BASE64_DECODE problem in recent days. If you open your website and view source (ctrl+u) scroll to footer and you may notice all the junk stuff in there [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, ever noticed some weird keywords in your Google Webmaster Tools? This is how i actually draw attention to a problem on one site, i was cleaning from BASE64_DECODE problem in recent days.</p>
<p>If you open your website and view source (ctrl+u) scroll to footer and you may notice all the junk stuff in there with padding -5000px (this is done for this viagra and cialis links not to appear on the visible part of main page - they are hidden, but they exist).</p>
<p>So how do we fight it? My experience says, that you should start with a database. Because if you don't clean your database, it is useless to clean injected code in your php files, since it will appear over and over again.</p>
<p><strong>1. Database cleanup</strong><br />
Open your wp-config.php and find username (MySQL database username) and password (MySQL database password), as well as url for your PHPMyAdmin (MySQL hostname). Login, click your database and go to SQL tab. Enter this:<br />
SELECT * FROM wp_options WHERE (option_id LIKE '%base64_decode%' OR blog_id LIKE '%base64_decode%' OR option_name LIKE '%base64_decode%' OR option_value LIKE '%base64_decode%' OR autoload LIKE '%base64_decode%' OR option_id LIKE '%edoced_46esab%' OR blog_id LIKE '%edoced_46esab%' OR option_name LIKE '%edoced_46esab%' OR option_value LIKE '%edoced_46esab%' OR autoload LIKE '%edoced_46esab%' OR option_name LIKE 'wp_check_hash' OR option_name LIKE 'class_generic_support' OR option_name LIKE 'widget_generic_support' OR option_name LIKE 'ftp_credentials' OR option_name LIKE 'fwp' OR option_name LIKE 'rss_%') order by option_id</p>
<p>Your wp_options table may have a different name, if so change to your name.<br />
It will show up all entries in wp_options, which are not relevant to this table and should be deleted.</p>
<p><strong>2. Plugins and themes</strong><br />
Plugins and themes are also vulnerable if they are outdated or even worse - not supported anymore. Update all your plugins (and delete unnecessary), all your themes and DO delete the ones you are not using. It is a must! When i was fighting the virus i spend lots of time cleaning database and garbage from php files, but the problem was in func.php file in default wordpress theme, which was outdated and had a hole obviously. Quite stupid wasting so much time, when solution is so simple, isn't it?</p>
<p><strong>3. Cleaning .php files</strong><br />
Only after part 1 and 2 are done you may start to clean the code. Otherwise you will loose time, patience and may be even your blog. I suggest to download your site completely to your HDD. If you have windows, turn on indexing inside .php files. After you are done, search in your directory, you have downloaded, for base64_decode and all the garbage, which comes with it and clean your .php files from it.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpful-hints.info/defeating-base64-decode-virus-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check PHP version of you hosting or a web-server</title>
		<link>http://helpful-hints.info/check-php-version-of-you-hosting-or-a-web-server/</link>
		<comments>http://helpful-hints.info/check-php-version-of-you-hosting-or-a-web-server/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 21:23:24 +0000</pubDate>
		<dc:creator>pycckuu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php info]]></category>

		<guid isPermaLink="false">http://helpful-hints.info/?p=398</guid>
		<description><![CDATA[If you would like to know all the information about PHP version of the hosting you are using, make a file phpinfo.php with this code &#60;?php phpinfo() ?&#62; inside and then just upload to your web-server and run it!]]></description>
			<content:encoded><![CDATA[<p>If you would like to know all the information about PHP version of the hosting you are using, make a file phpinfo.php with this code <code><strong>&lt;?php phpinfo() ?&gt;</strong></code> inside and then just upload to your web-server and run it!</p>
]]></content:encoded>
			<wfw:commentRss>http://helpful-hints.info/check-php-version-of-you-hosting-or-a-web-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling your Recent activity on Odnoklassniki.ru</title>
		<link>http://helpful-hints.info/disabling-your-recent-activity-on-odnoklassniki-ru/</link>
		<comments>http://helpful-hints.info/disabling-your-recent-activity-on-odnoklassniki-ru/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 12:27:05 +0000</pubDate>
		<dc:creator>pycckuu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[odnoklassniki]]></category>
		<category><![CDATA[recent activity]]></category>

		<guid isPermaLink="false">http://helpful-hints.info/?p=392</guid>
		<description><![CDATA[Never wondered how to disable your recent activity on Odnoklassniki.ru? You won't actually find it in any settings on the site, which is really stupid. Disabling is easy - just visit this link: http://www.odnoklassniki.ru/dk?st.cmd=userMain&#038;st.layer.cmd=PopLayerConfigUserFeed and click disable. To enable your own feed just visit this link again.]]></description>
			<content:encoded><![CDATA[<p>Never wondered how to disable your recent activity on Odnoklassniki.ru? You won't actually find it in any settings on the site, which is really stupid.</p>
<p>Disabling is easy - just visit this link: <a href="http://www.odnoklassniki.ru/dk?st.cmd=userMain&#038;st.layer.cmd=PopLayerConfigUserFeed">http://www.odnoklassniki.ru/dk?st.cmd=userMain&#038;st.layer.cmd=PopLayerConfigUserFeed</a> and click disable. To enable your own feed just visit this link again.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpful-hints.info/disabling-your-recent-activity-on-odnoklassniki-ru/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Angry Birds now on your Google Chrome</title>
		<link>http://helpful-hints.info/angry-birds-now-on-your-google-chrome/</link>
		<comments>http://helpful-hints.info/angry-birds-now-on-your-google-chrome/#comments</comments>
		<pubDate>Sun, 22 May 2011 10:44:12 +0000</pubDate>
		<dc:creator>pycckuu</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://helpful-hints.info/?p=370</guid>
		<description><![CDATA[Great news - you can now play your favorite Angry Birds at work, at home or wherever you want with Google Chrome browser. Just visit this link and install the application - totally free. You need Google Chrome of course.]]></description>
			<content:encoded><![CDATA[<p><img src="https://lh4.googleusercontent.com/rL3D4vUvpNPX6vY6_as1cRmpq-oDZJxdKv80nwtcgLo3VmBNezeggEG3W9xOLK9WHUUNko2xAXs=s128-e365-h128" style="float:left; margin-right:4px">Great news - you can now play your favorite Angry Birds at work, at home or wherever you want with Google Chrome browser.</p>
<p>Just <a href="https://chrome.google.com/webstore/detail/aknpkdffaafgjchaibgeefbgmgeghloj">visit this link</a> and install the application - totally free. You need Google Chrome of course.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpful-hints.info/angry-birds-now-on-your-google-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Controlling uTorrent remotely through web</title>
		<link>http://helpful-hints.info/controlling-utorrent-remotely-through-web/</link>
		<comments>http://helpful-hints.info/controlling-utorrent-remotely-through-web/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 16:41:45 +0000</pubDate>
		<dc:creator>pycckuu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Windows Apps]]></category>

		<guid isPermaLink="false">http://helpful-hints.info/?p=309</guid>
		<description><![CDATA[Many of you probably are wondering how to download files from office, and when you get home your movies are ready to be watched. It is possible with uTorrent too! Just go to Options &#8594; Preferences (or ctrl+p) &#8594; Web UI To control uTorrent from the web use this url: http://yourip:port/gui. To determine what ip [...]]]></description>
			<content:encoded><![CDATA[<p>Many of you probably are wondering how to download files from office, and when you get home your movies are ready to be watched. It is possible with uTorrent too!</p>
<p>Just go to Options &rarr; Preferences (or ctrl+p) &rarr; Web UI</p>
<p><img src="http://helpful-hints.info/wp-content/uploads/2010/09/webui.png" alt="Setting up uTorrent web remote control" title="Setting up uTorrent web remote control"></p>
<p>To control uTorrent from the web use this url: http://yourip:port/gui. To determine what ip address you own you may visit: <a href="http://whatismyipaddress.com/">whatismyipaddress.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://helpful-hints.info/controlling-utorrent-remotely-through-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Favorites icon for your website</title>
		<link>http://helpful-hints.info/adding-favorites-icon-for-your-website/</link>
		<comments>http://helpful-hints.info/adding-favorites-icon-for-your-website/#comments</comments>
		<pubDate>Fri, 21 May 2010 14:25:01 +0000</pubDate>
		<dc:creator>pycckuu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[head]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://helpful-hints.info/?p=293</guid>
		<description><![CDATA[If you want to customize your visitors' experience, when visiting your website you would probably want to draw an icon. If so add this line inside &#60;head&#62;&#60;/head&#62; tags on every page of your website. Add this line between head tags: &#60;link rel="shortcut icon" href="http://yoursite.com/favicon.ico" type="image/x-icon" /&#62; For drawing a favicon i would probably recommend this [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to customize your visitors' experience, when visiting your website you would probably want to draw an icon. If so add this line inside &lt;head&gt;&lt;/head&gt; tags on every page of your website.</p>
<p>Add this line between head tags:<br />
&lt;link rel="shortcut icon" href="http://yoursite.com/favicon.ico"  type="image/x-icon" /&gt;</p>
<p>For drawing a favicon i would probably recommend this site: <a href="http://favicon.cc" target="_blank">Favicon.cc</a>. Or use Adobe Photoshop.</p>
<p>If you would like to create your favicon.ico from the image the best solution would be: <a href="http://tools.dynamicdrive.com/favicon/">this solution</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpful-hints.info/adding-favorites-icon-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specifying a subject and a body of the message in e-mail link</title>
		<link>http://helpful-hints.info/specifying-subject-and-body-of-message-in-e-mail-link/</link>
		<comments>http://helpful-hints.info/specifying-subject-and-body-of-message-in-e-mail-link/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 12:35:43 +0000</pubDate>
		<dc:creator>pycckuu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[subject]]></category>

		<guid isPermaLink="false">http://helpful-hints.info/?p=279</guid>
		<description><![CDATA[Very simple solution, which is very useful and saves your website visitors time when writing you a letter. &#60;a href="mailto:email@gmail.com?subject=Hello Web master&#038;body=Howdy master"&#62;email@gmail.com&#60;/a&#62; Result &#8212; email@gmail.com If you want to add another line in body, add another &#038;body=text in the end!]]></description>
			<content:encoded><![CDATA[<p>Very simple solution, which is very useful and saves your website visitors time when writing you a letter.</p>
<p>&lt;a href="mailto:email@gmail.com?subject=Hello Web master&#038;body=Howdy master"&gt;email@gmail.com&lt;/a&gt;</p>
<p>Result &mdash; <a href="mailto:email@gmail.com?subject=Hello Web master&#038;body=Howdy master">email@gmail.com</a></p>
<p>If you want to add another line in body, add another &#038;body=text in the end!</p>
]]></content:encoded>
			<wfw:commentRss>http://helpful-hints.info/specifying-subject-and-body-of-message-in-e-mail-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showing certain number of items in archive category in WordPress</title>
		<link>http://helpful-hints.info/showing-certain-number-of-items-in-archive-category/</link>
		<comments>http://helpful-hints.info/showing-certain-number-of-items-in-archive-category/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 11:42:42 +0000</pubDate>
		<dc:creator>pycckuu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[archive]]></category>

		<guid isPermaLink="false">http://helpful-hints.info/?p=35</guid>
		<description><![CDATA[Probably many of you faced a lot of items in archive showing on first page and all other pages in wordpress. To fix that go to you theme editor in wordpress, find sidebar.php, or left_sidebar.php/right_sidebar.php (depending on the theme you are using). Find something like that: &#60;?php wp_get_archives('type=monthly'); ?&#62; Replace with: &#60;?php wp_get_archives('type=monthly&#38;limit=5'); ?&#62; Where [...]]]></description>
			<content:encoded><![CDATA[<p>Probably many of you faced a lot of items in archive showing on first page and all other pages in wordpress.</p>
<p>To fix that go to you theme editor in wordpress, find sidebar.php, or left_sidebar.php/right_sidebar.php (depending on the theme you are using). Find something like that:<br />
<code>&lt;?php wp_get_archives('type=monthly'); ?&gt;</code></p>
<p>Replace with:<br />
<code>&lt;?php wp_get_archives('type=monthly&amp;limit=5'); ?&gt;</code></p>
<p>Where 5 is the number of items to be displayed.</p>
]]></content:encoded>
			<wfw:commentRss>http://helpful-hints.info/showing-certain-number-of-items-in-archive-category/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

