<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>LAMPdocs: Linux, Apache, MySQL, PHP</title>
	
	<link>http://www.lampdocs.com/blog</link>
	<description>Linux, Apache, MySQL, PHP: Docs, Tricks and Secrets</description>
	<lastBuildDate>Sun, 05 Sep 2010 19:10:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/lampdocs" /><feedburner:info uri="lampdocs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to Make Opera Open On-Page Search Results in a New Tab</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/-AWF8RvmBWs/</link>
		<comments>http://www.lampdocs.com/blog/2010/09/how-to-make-opera-open-on-page-search-results-in-a-new-tab/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 19:10:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[opera search new tab]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=905</guid>
		<description><![CDATA[Since my default browser is Firefox, I frequently use its ability to select some text in the page and &#8220;Search Google For [selected text comes here]&#8220;. Opera provides this functionality too, the only bad thing is that results are open in the same window. This way I have to go back to the page, then [...]]]></description>
			<content:encoded><![CDATA[<p>Since my default browser is <strong>Firefox</strong>, I frequently use its ability to select some text in the page and &#8220;Search Google For [selected text comes here]&#8220;. <strong>Opera</strong> provides this functionality too, the only bad thing is that results are open in the same window. This way I have to go back to the page, then select the text, then copy it to clipboard, and then use Google Search. </p>
<p>There is a keyboard shortcut that simplifies this procedure. If you need to open search results in a new page, you have to select the text you like to search for, then <strong>Hold Ctrl+Shift</strong>, then <strong>Right click</strong> your mouse and select &#8220;<strong>Search</strong>&#8220;. It&#8217;s very strange that I cannot do this without pressing two additional buttons on the keyboard, anyway, this is simpler than to copy and paste the text you look for. Hope this saves you some time. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/A93FCO1udEgndyxHPRnBnhCkL0A/0/da"><img src="http://feedads.g.doubleclick.net/~a/A93FCO1udEgndyxHPRnBnhCkL0A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/A93FCO1udEgndyxHPRnBnhCkL0A/1/da"><img src="http://feedads.g.doubleclick.net/~a/A93FCO1udEgndyxHPRnBnhCkL0A/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/-AWF8RvmBWs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/09/how-to-make-opera-open-on-page-search-results-in-a-new-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/09/how-to-make-opera-open-on-page-search-results-in-a-new-tab/</feedburner:origLink></item>
		<item>
		<title>How to Determine Path to unzip With PHP</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/HSroMo-KGWY/</link>
		<comments>http://www.lampdocs.com/blog/2010/09/how-to-determine-path-to-unzip-with-php/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 18:50:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[PHP Solutions]]></category>
		<category><![CDATA[path to unzip php]]></category>
		<category><![CDATA[php find unzip]]></category>
		<category><![CDATA[php unzip location]]></category>
		<category><![CDATA[system binaries php]]></category>
		<category><![CDATA[unzip php]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=900</guid>
		<description><![CDATA[How to determine the location of system binaries with PHP]]></description>
			<content:encoded><![CDATA[<p>Sometimes you need to know paths to some system software that needs to be executed with your script. For example, in order to unzip a file without installing or using any specific PHP classes or extensions, you need to know where the <strong>unzip</strong> binary is located. </p>
<p>The solution is very simple. The only restriction is that you should have rights to use <strong>exec()</strong> or <strong>system()</strong>. Though, I don&#8217;t think there is any reason to deal with the paths if you are not allowed to run system applications. Here is the code: </p>
<p><code><br />
$var=exec ("which unzip");<br />
echo $var;<br />
</code></p>
<p>What does this code do? It catches the output of system which command to a variable. Then you can use this variable for your purposes. Of course, you should verify the value of the variable before using it. You may also need to echo something, if unzip is not installed. </p>
<p>This technology can be applied to any other system binary you need to know the path of. <strong>$var=exec (&#8220;which sh&#8221;);</strong> will tell you the location of sh, if you need to run any shell scripts with your PHP script, and so on. </p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.lampdocs.com/blog/2008/11/how-to-unzip-an-uploaded-file-with-php/" title="How to Unzip an Uploaded File with PHP (November 17, 2008)">How to Unzip an Uploaded File with PHP</a> (1)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/rtY8FSsm7PFOqH4bTSX6xHw1bwQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/rtY8FSsm7PFOqH4bTSX6xHw1bwQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rtY8FSsm7PFOqH4bTSX6xHw1bwQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/rtY8FSsm7PFOqH4bTSX6xHw1bwQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/HSroMo-KGWY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/09/how-to-determine-path-to-unzip-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/09/how-to-determine-path-to-unzip-with-php/</feedburner:origLink></item>
		<item>
		<title>7 Basic Rules of Working With Online Payment Systems</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/kFvIGMOF6z0/</link>
		<comments>http://www.lampdocs.com/blog/2010/09/7-basic-rules-of-working-with-online-payment-systems/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 09:10:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[epassporte visa]]></category>
		<category><![CDATA[withdraw funds frequently]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=896</guid>
		<description><![CDATA[Basic advices to deal with online payment systems. ]]></description>
			<content:encoded><![CDATA[<p>Yesterday all Epassporte account owners have found a message in their account telling that Epassporte activity was blocked by VISA International and they are no longer able to issue new cards. Al the funds in member accounts have become frozen. Though Epassporte owner encourages us not to worry about this, it is a certain phenomenon in Online Business. </p>
<p>Several years ago a famous Russian payment system named Fethard has faced problems just like these. Funds were frozen for an undefined period of time. I haven&#8217;t seen any changes during last years, and I was happy I had no money there. But most people that had funds there have not received them yet. Since I have been living online for last 7 years, I think I can give some advices to newcomers. </p>
<p>1. <strong>Do not store big amount of funds</strong> on Online Payment Processor accounts. These systems are not as trusty as bank accounts and bank issued credit cards. If your account is blocked, you&#8217;ll have to wait until the situation is resolved. </p>
<p>2. Do <strong>log in to your online accounts frequently</strong>. I have an issue with Moneybookers, that&#8217;s why I already know that it is important. You should log in at least once a week to ensure that there are no problems. </p>
<p>3. Ensure that all the necessary <strong>verification steps are done</strong>. Most online payment systems require to upload documents, recent utility bills, etc. It is a good practice to contact them to find out whether you can do anything to verify your account. If something goes wrong, it is important to have a verified account. </p>
<p>4. <strong>Write down all the contact details</strong> for these payment systems. If their site goes down, you can get in touch with them using these numbers. Some payment providers have even ICQ support (Like Epassporte&#8217;s Michael). </p>
<p>5.<strong> Do not send money to unauthorized</strong> and potentially fraudulent accounts. Even if you&#8217;re planning to deal with some stuff like that, create a separate account and don&#8217;t touch your official one <img src='http://www.lampdocs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>6. <strong>Do not leave payment memos blank</strong>. If you perform any transfers using your online accounts, make sure that your payments have &#8220;human readable&#8221; destinations. </p>
<p>7. <strong>Withdraw your funds frequently</strong>. This seems to be easy enough, the only thing is you need to have funds to withdraw. This means: receive as many funds as possible <img src='http://www.lampdocs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope this information saves you from potential financial losses. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/dleQuVlIQev5g5hlTRxch213hss/0/da"><img src="http://feedads.g.doubleclick.net/~a/dleQuVlIQev5g5hlTRxch213hss/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dleQuVlIQev5g5hlTRxch213hss/1/da"><img src="http://feedads.g.doubleclick.net/~a/dleQuVlIQev5g5hlTRxch213hss/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/kFvIGMOF6z0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/09/7-basic-rules-of-working-with-online-payment-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/09/7-basic-rules-of-working-with-online-payment-systems/</feedburner:origLink></item>
		<item>
		<title>yum: error: no dbpath has been set on Centos VPS</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/_Fxc-x2SXpU/</link>
		<comments>http://www.lampdocs.com/blog/2010/08/yum-error-no-dbpath-has-been-set-on-centos-vps/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 08:23:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=892</guid>
		<description><![CDATA[yum no dbpath error: a solution for VPS]]></description>
			<content:encoded><![CDATA[<p>If you have to deal with VPS, there are some specific solutions, that should be known by a Linux administrator. Today I will post the solution for yum error. </p>
<p>You can get this error on software update. For example, when trying to update ImageMagick:</p>
<blockquote><p>-bash-3.1# yum update ImageMagick<br />
Loading &#8220;installonlyn&#8221; plugin<br />
error: no dbpath has been set<br />
error: cannot open Packages database in /%{_dbpath}<br />
Traceback (most recent call last):<br />
File &#8220;/usr/bin/yum&#8221;, line 29, in ?<br />
yummain.main(sys.argv[1:])<br />
File &#8220;/usr/share/yum-cli/yummain.py&#8221;, line 82, in main<br />
base.getOptionsConfig(args)<br />
File &#8220;/usr/share/yum-cli/cli.py&#8221;, line 206, in getOptionsConfig<br />
errorlevel=opts.errorlevel)<br />
File &#8220;/usr/lib/python2.4/site-packages/yum/__init__.py&#8221;, line 132, in<br />
doConfigSetup<br />
self.conf = config.readMainConfig(startupconf)<br />
File &#8220;/usr/lib/python2.4/site-packages/yum/config.py&#8221;, line 598, in<br />
readMainConfig<br />
yumvars['releasever'] = _getsysver(startupconf.installroot,<br />
startupconf.distroverpkg)<br />
File &#8220;/usr/lib/python2.4/site-packages/yum/config.py&#8221;, line 661, in<br />
_getsysver<br />
idx = ts.dbMatch(&#8216;provides&#8217;, distroverpkg)<br />
TypeError: rpmdb open failed</p></blockquote>
<p>Let&#8217;s see the error message. It tells us: <strong>error: no dbpath has been set</strong>. How should we proceed? </p>
<p>First of all, you need to try to clear the database. Here is the set of commands that should help you to do this: </p>
<blockquote><p>#yum clean all<br />
#rm -f /var/lib/rpm/__db*<br />
#rpm &#8211;rebuilddb<br />
#yum update </p></blockquote>
<p>If this doesn&#8217;t help, here is another set: </p>
<blockquote><p>#rm /dev/urandom<br />
#mknod -m 644 /dev/urandom c 1 9</p></blockquote>
<p>After that, run </p>
<blockquote><p>#yum clean all</p></blockquote>
<p>This should do the trick. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/DLHJREpoOYZou3qiVv7CbrdwIlk/0/da"><img src="http://feedads.g.doubleclick.net/~a/DLHJREpoOYZou3qiVv7CbrdwIlk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DLHJREpoOYZou3qiVv7CbrdwIlk/1/da"><img src="http://feedads.g.doubleclick.net/~a/DLHJREpoOYZou3qiVv7CbrdwIlk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/_Fxc-x2SXpU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/08/yum-error-no-dbpath-has-been-set-on-centos-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/08/yum-error-no-dbpath-has-been-set-on-centos-vps/</feedburner:origLink></item>
		<item>
		<title>How to Start a Daemon Automatically in Linux</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/UMt0EqdtyJc/</link>
		<comments>http://www.lampdocs.com/blog/2010/08/how-to-start-a-daemon-automatically-in-linux/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 10:43:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[start apache automatically]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=890</guid>
		<description><![CDATA[How to start apache automatically with /etc/init.d/rc.local]]></description>
			<content:encoded><![CDATA[<p>If you need to start anything automatically in Linux, you should alter some files that are processed during system startup. There are lots of ways to do this; I will show you how to <a href="http://www.lampdocs.com/blog/tag/start-apache-automatically/" class="st_tag internal_tag" rel="tag" title="Posts tagged with start apache automatically">start Apache automatically</a>. Note, that this installation of Apache does not allow to start it using <strong>chkconfig httpd on</strong>. </p>
<p>In order to setup automatic start, we will have to deal with <strong>/etc/init.d/rc.local</strong> . This is the file, that is processed on system startup and it will allow you to run anything you like. We need to start Apache using <strong>/usr/local/apache2/bin/apachectl start</strong>. Let&#8217;s add this string to the end of your <strong>/etc/init.d/rc.local</strong></p>
<blockquote><p>#!/bin/sh<br />
#<br />
# This script will be executed *after* all the other init scripts.<br />
# You can put your own initialization stuff in here if you don&#8217;t<br />
# want to do the full Sys V style init stuff.</p>
<p>touch /var/lock/subsys/local<br />
/usr/local/apache2/bin/apachectl start</p></blockquote>
<p>That&#8217;s all! Now your httpd daemon will be automatically started at boot. You can start any daemon this way. If you know any more methods to start daemons, please, add them in comments. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/ezuY9qBjFryiTYbi6nlkp5Neuok/0/da"><img src="http://feedads.g.doubleclick.net/~a/ezuY9qBjFryiTYbi6nlkp5Neuok/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ezuY9qBjFryiTYbi6nlkp5Neuok/1/da"><img src="http://feedads.g.doubleclick.net/~a/ezuY9qBjFryiTYbi6nlkp5Neuok/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/UMt0EqdtyJc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/08/how-to-start-a-daemon-automatically-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/08/how-to-start-a-daemon-automatically-in-linux/</feedburner:origLink></item>
		<item>
		<title>Auto Disconnect Idle GPRS Connection on Windows Mobile Devices</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/75SEAvRY9PA/</link>
		<comments>http://www.lampdocs.com/blog/2010/08/auto-disconnect-idle-gprs-connection-on-windows-mobile-devices/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 16:58:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=887</guid>
		<description><![CDATA[How to auto disconnect GPRS or 3G connection on Windows mobile. ]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s very strange that Windows Mobile Devices have a lot of tweaks abd settings that can be done by modifying registry values. Don&#8217;t know why Microsoft didn&#8217;t set up any kind of visual interface for doing that. Anyway, today I will share you a very useful trick to enable <strong>GPRS connection</strong> abort. </p>
<p>Windows mobile devices are used to connect to the Internet when necessary. Especially, if you are using any custom ROMs, there are lots of software that require Internet connection. For example, Weather forecast plugins and time synchronization software, automatic E-mail check and so on. Every time the connection is established, it requires your phone to use a higher frequency (GRPS or 3G connectivity, that depends on your carrier). After your software has performed data exchange, the connection remains unterminated. This means it starts draining your battery and you have to charge it again and again. </p>
<p>The solution is to enable automatic disconnection for all <strong>GPRS connections</strong>. It won&#8217;t affect your working software, as even ICQ keeps sending pings to the server, or some dummy packets to keep connection alive. There is a registry tweak, and let me show you where it is. </p>
<p>I am using <a href="http://www.ghisler.com/pocketpc.htm">Total Commander for Pocket PC</a> to edit my device&#8217;s registry. It&#8217;s free, but you&#8217;re welcome to use any shareware solutions. Open your favorite registry editor and navigate to the following keys: </p>
<blockquote><p>HKEY_LOCAL_MACHINE\Comm\ConnMgr\Planner\Settings\<br />
SuspendResume = GPRS_bye_if_device_off<br />
CacheTime = xxx (where xxx are seconds before auto disconnect)</p></blockquote>
<p>The first value isn&#8217;t so easy to change with Total Commander, that&#8217;s why I would suggest you to install a CAB file that will do this for you. <a href="http://andrewsayshello.com/andrew/wm6/GPRS_1_Minute_Auto_Disconnect.CAB.zip">Here</a> is the cab that will enable GPRS auto disconnect after 60 seconds of inactivity. Of course, you can change <strong>CacheTime </strong>parameter to any value you like. I have left it at 300 seconds.    </p>
<p>This works perfectly on my Acer S200 and it should save battery of any WM device. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/B8sHdQvTYICQhsh-DKL5EzaE_4I/0/da"><img src="http://feedads.g.doubleclick.net/~a/B8sHdQvTYICQhsh-DKL5EzaE_4I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/B8sHdQvTYICQhsh-DKL5EzaE_4I/1/da"><img src="http://feedads.g.doubleclick.net/~a/B8sHdQvTYICQhsh-DKL5EzaE_4I/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/75SEAvRY9PA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/08/auto-disconnect-idle-gprs-connection-on-windows-mobile-devices/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/08/auto-disconnect-idle-gprs-connection-on-windows-mobile-devices/</feedburner:origLink></item>
		<item>
		<title>Mobile Device User Agent List Ready for Download</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/Ol6ZCtzsWrA/</link>
		<comments>http://www.lampdocs.com/blog/2010/07/mobile-device-user-agent-list-ready-for-download/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 08:36:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=881</guid>
		<description><![CDATA[Mobile user agent list for wap site development]]></description>
			<content:encoded><![CDATA[<p>I am not sure where you can use this list, I just would like to share it with you. I think you might need it developing WAP sites. Here is the link: <a href="http://rapidshare.com/files/409542961/agents_.txt.html">Mobile User Agent List</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/ynpV3LySeOrSnUmAMcvSNa6qR-M/0/da"><img src="http://feedads.g.doubleclick.net/~a/ynpV3LySeOrSnUmAMcvSNa6qR-M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ynpV3LySeOrSnUmAMcvSNa6qR-M/1/da"><img src="http://feedads.g.doubleclick.net/~a/ynpV3LySeOrSnUmAMcvSNa6qR-M/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/Ol6ZCtzsWrA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/07/mobile-device-user-agent-list-ready-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/07/mobile-device-user-agent-list-ready-for-download/</feedburner:origLink></item>
		<item>
		<title>How to Delete Files Older Than a Week in a Folder in Linux</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/2u9Um0hC3wk/</link>
		<comments>http://www.lampdocs.com/blog/2010/07/how-to-delete-files-older-than-a-week-in-a-folder-in-linux/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 07:22:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Tricks]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=878</guid>
		<description><![CDATA[How to delete files order than a week in linux]]></description>
			<content:encoded><![CDATA[<p>Sometimes you need to delete some archive files, that are older than the specified date. It&#8217;s simple enough in Linux. Here is the command that allows you to do this: </p>
<blockquote><p>find /path/to/folder/* -mtime +7 -exec rm {} \;</p></blockquote>
<p>Please, note, that you need to keep spaces between command arguments. </p>
<p>This command is suitable for folders that contain a large number of files. In order to force file deletion you need to add -f key.</p>
<blockquote><p>find /path/to/folder/* -mtime +7 -exec rm {} \;</p></blockquote>
<p>If you need to move these files instead of deletion, here is the solution:</p>
<blockquote><p>find /path/to/folder/* -mtime +7 -exec mv {} /path/test-mv-to/ \;</p></blockquote>
<p>Hope this helps you to deal with archive files and big folders. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/QVgqTvq6TAYUD2ohg1j1FFk9EiI/0/da"><img src="http://feedads.g.doubleclick.net/~a/QVgqTvq6TAYUD2ohg1j1FFk9EiI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QVgqTvq6TAYUD2ohg1j1FFk9EiI/1/da"><img src="http://feedads.g.doubleclick.net/~a/QVgqTvq6TAYUD2ohg1j1FFk9EiI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/2u9Um0hC3wk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/07/how-to-delete-files-older-than-a-week-in-a-folder-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/07/how-to-delete-files-older-than-a-week-in-a-folder-in-linux/</feedburner:origLink></item>
		<item>
		<title>How to Install Operating System on Asus EEE 901</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/OgkNeMCh7FA/</link>
		<comments>http://www.lampdocs.com/blog/2010/07/how-to-install-operating-system-on-asus-eee-901/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 15:36:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microsoft Windows]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=874</guid>
		<description><![CDATA[How to fix " Reboot and select proper boot device" on eee 901 boot]]></description>
			<content:encoded><![CDATA[<p>As I have told about before, my second laptop is Asus EEE 901. It came with Windows pre-installed and it was very slow when I have unpacked it. There was almost no free space on C, and there were some program installed, and finally my decision to get rid of this stuff made me to try reinstalling operating system on this netbook. </p>
<p>Let me mention that I don&#8217;t have a USB DVD-ROM drive, that&#8217;s why I had to deal with flash disks. I have tried to create some bootable flash drives, and let me share the software that has a simple and user-friendly interface, and, of course, it&#8217;s free. It is called <a href="http://www.msfn.org/board/topic/120444-how-to-install-windows-from-usb-winsetupfromusb-with-gui/">WinSetupFromUSB</a> and you can download it using the link above. It allows you to create a bootable installation flash drive to install almost any version of Windows you like. </p>
<p>I have tries some flash drives, but none of them allowed me to boot. I have tried all possible BIOS settings, but result was the same each time: error message telling me &#8220;Reboot and select proper boot device&#8221;. </p>
<p>The solution was very simple, yet not documented. If you need to boot your EEE 901 netbook from a flash drive, you have to try <strong>hitting and holding-down the [Esc] key when the ASUS  splash screen appears during the boot-up process</strong>. It will then show you the boot menu. I can&#8217;t understand the reason, and there are no official docs from ASUS (I haven&#8217;t found any of them). </p>
<p>I would like to say a special thank you to guy from <a href="http://forum.eeeuser.com/viewtopic.php?id=83278">Eeeuser forum</a>, their solution really helped me to find out the simplest way to boot from my flash drive. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/65gAKabwQ2np16KMTjNmO9YdAI8/0/da"><img src="http://feedads.g.doubleclick.net/~a/65gAKabwQ2np16KMTjNmO9YdAI8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/65gAKabwQ2np16KMTjNmO9YdAI8/1/da"><img src="http://feedads.g.doubleclick.net/~a/65gAKabwQ2np16KMTjNmO9YdAI8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/OgkNeMCh7FA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/07/how-to-install-operating-system-on-asus-eee-901/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/07/how-to-install-operating-system-on-asus-eee-901/</feedburner:origLink></item>
		<item>
		<title>How to Remove A Shortcut in Windows Mobile Start Menu</title>
		<link>http://feedproxy.google.com/~r/lampdocs/~3/kZBtFgXzKDs/</link>
		<comments>http://www.lampdocs.com/blog/2010/04/how-to-remove-a-shortcut-in-windows-mobile-start-menu/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 13:45:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/blog/?p=872</guid>
		<description><![CDATA[How to delete a shortcut in windows mobile start menu]]></description>
			<content:encoded><![CDATA[<p>This post will describe the simplest ever solution to remove a shortcut in Windows Mobile 6.1 Menu. This worked on my HTC Tytn, and it should work on any Windows-Enabled phone. If, for any reason, you are unable to delete your shortcut using Settings->Menus, all you need to do is to delete your shortcut using file system. In order to delete it, you need to navigate to Phone Memory\Windows\Start Menu and delete all the unnecessary shortcuts. <a href="http://www.christec.co.nz/blog/archives/213">Here</a> is a complete guide for shortcuts and I hope you will find it helpful. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/ral3x4LY4GwPQDv2rdzGzYeUrVM/0/da"><img src="http://feedads.g.doubleclick.net/~a/ral3x4LY4GwPQDv2rdzGzYeUrVM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ral3x4LY4GwPQDv2rdzGzYeUrVM/1/da"><img src="http://feedads.g.doubleclick.net/~a/ral3x4LY4GwPQDv2rdzGzYeUrVM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/lampdocs/~4/kZBtFgXzKDs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/blog/2010/04/how-to-remove-a-shortcut-in-windows-mobile-start-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lampdocs.com/blog/2010/04/how-to-remove-a-shortcut-in-windows-mobile-start-menu/</feedburner:origLink></item>
	</channel>
</rss>
