If you have a Brother printer hooked up to your network this app is extremely useful. I use it quite often to scan and print PDFs, photos or text documents.
It automatically finds your printer on the network making things very simple.
If you have a Brother printer hooked up to your network this app is extremely useful. I use it quite often to scan and print PDFs, photos or text documents.
It automatically finds your printer on the network making things very simple.
Android comes with a limited built in file browser. I find it is lacking in many ways which is why I like ASTRO File Manager. It offers many options including the ability to backup your apps to your SD Card and has many add-ons. One of the add-ons even allows you to connect to windows/samba shares on the network.
As our cell phone become smart and contain more data they become larger and larger targets for virus and malware. Android already has several known cases of malware and virus which can affect it.
An easy solution is to load in an app to protect you. I have played with a few of them and I really like Lookout’s Mobile Security the best. It provides several other features besides the protection and is completely free. They do have a premium version you can purchase but the free one provides enough protection on it’s own.
Besides having the virus and malware scanner they also have a “Find My Phone” feature which will allow you from their website locate your phone or make your phone “scream” (even if it is on vibrate) to help you find it.
The third free thing they offer is a limited backup of your data. The free version will only backup your contact. The premium version will backup your call history and pictures as well.
The premium version besides offering more backup options will also provide “Privacy Advisor” which will “analyze apps that access your private information”, which is another thing many Android apps have been found guilty of. They also provide a “Safe Browsing” feature in the premium version which protects you from phishing and malware links while you are surfing the web from your device.
If you ever find your self in the terrible situation of having your phone lost or stolen there is a great free app by the people at Lookout Inc.
This app can be install from the Android Market, where it will automatically start itself up and send you an email with the location of your phone. So even if you were not prepared for this situation you may not be out of luck.
One of the problems you can sometimes face with a website is people mirroring your site or search bots excessively connecting to you. This is very easy to fix by limiting the number of connections an IP address is allowed to make.
To do this you just need to install the mod_limitipconn Apache module. If you are using Fedora or CentOS you can easily install this module through yum:
yum install mod_limitipconn
Once it is installed it is very easy to config. You need to add the following line to your httpd.conf file:
LoadModule limitipconn_module modules/mod_limitipconn.so
Then you just need to add in the settings for the module. I have included some samples below:
<IfModule mod_limitipconn.c>
<Location />
MaxConnPerIP 3
NoIPLimit image/*
NoIPLimit application/javascript
</Location>
<Location /phpmyadmin/*>
NoIPLimit *
</Location>
</IfModule>
The above settings consist of two parts, the location and then the settings for that location. What is really nice is you can say certain folders are allowed more connections then others. This is very important now that most browsers use multiple threads to download a single page. This means that for a normal person to connect and view your website the browser may establish multiple connections.
In the above example you will see that I set the location to “/” (which means the entire site), then I say there is a MaxConnPerIP of 3, so I only want a max of three connections at a time from a single IP. The next thing you will see is NoIPLimit image/* and NoIPLimit application/javascript. Without these two settings multiple thread browser have a lot of problems loading pages since they often open up a connection for each of these content types plus one for the regular text on the site. The other thing to keep in mind when doing this is that NoIPLimit is looking for a MIME type and not a path.
Now the other thing you may want to do is set section of the website where there will be no limit at all. This is done again by setting the location (the example I used was phpmyadmin) and then saying NoIPLimit on any file type.
You must be logged in to post a comment.