<?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>Mango Hosting .com &#187; linux</title>
	<atom:link href="http://www.mangohosting.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mangohosting.com</link>
	<description></description>
	<lastBuildDate>Sat, 06 Feb 2010 17:38:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Como configurar directorios protegidos en su cuenta de Hosting en Linux</title>
		<link>http://www.mangohosting.com/2008/05/05/como-configurar-directorios-protegidos-en-su-cuenta-de-hosting-en-linux/</link>
		<comments>http://www.mangohosting.com/2008/05/05/como-configurar-directorios-protegidos-en-su-cuenta-de-hosting-en-linux/#comments</comments>
		<pubDate>Mon, 05 May 2008 03:45:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting en Linux]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[seguridad]]></category>

		<guid isPermaLink="false">http://mangohosting.com/?p=65</guid>
		<description><![CDATA[There is an advantage to controlling access to certain parts of your domain. If, for instance, you wanted to make general information public, but only wanted to make specific information available to your customers you could use a feature of NCSA-based httpd servers commonly referred to as HTACCESS.
Using this access control method you can limit [...]]]></description>
			<content:encoded><![CDATA[<p>There is an advantage to controlling access to certain parts of your domain. If, for instance, you wanted to make general information public, but only wanted to make specific information available to your customers you could use a feature of NCSA-based httpd servers commonly referred to as <em>HTACCESS</em>.<span id="more-65"></span></p>
<p>Using this access control method you can limit access to certain branches of the directory tree. If you want to really understand how this works, nothing is better than reading the <a href="http://hoohoo.ncsa.uiuc.edu/docs/setup/access/Overview.html" target="_new">manual</a>.</p>
<div class="subtitle">Basic Access Control</div>
<p>You can control access to your webpage two different ways, by host filtering or user authentication. But keep in mind that neither method is fullproof. This should be considered as secure as a courtesy lock on a restroom door; nice, but ultimately ineffective.</p>
<p>The default name of the access control file is .htaccess but that is not written in stone. In the server configuration overview we looked at a file called srm.conf. This file had the following entry:</p>
<pre>AccessFileName .htaccess</pre>
<p>This is the default value, but any specified filename can be used. For the purposes of this chapter I will refer to the .htaccess file by name, but your server may use a different file name.</p>
<p>The method of control is very simple. Place a correctly formated file called .htaccess in a directory and you can restrict access via the web to that directory. Here is a simple example of an .htacess file:</p>
<pre>AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName "This is NOT a restricted directory"
AuthType Basic

&lt;Limit GET&gt;
order allow,deny
allow from all
&lt;/Limit&gt;</pre>
<p>The first two lines refer to files that contain lists of users and groups. I will cover the specific format of the files and their use later. The AuthName entry is displayed in the message box if the browser needs to request a username / password. AuthType is always Basic because the advanced authorization methods based on Kerberos or MD5 are detailed enough for books themselves.</p>
<p>The important parts for now are contained in the familiar looking &lt;Limit&gt; tag. GET is the only widely supported method. PUT was under developement to allow uploading and while POST is partially supported, its use is too complex for this document. Basically, to retrieve ANY document from this directory via the web, the web server will evaluate the .htaccess file and allow or deny access based on the outcome. The above example file is wide open and will allow anyone access. Let&#8217;s look at a more restrictive &lt;Limit&gt; rule.</p>
<pre>&lt;Limit GET&gt;
order deny,allow
deny from all
allow from mangohosting.com
&lt;/Limit&gt;</pre>
<p>This rule will cause everyone to be denied EXCEPT hosts from mangohosting.com. The server processes the rules in order and the first exception case is returned. Here is another way to look at it.</p>
<pre>&lt;Limit GET&gt;
order allow,deny
deny from mangohosting.com
&lt;/Limit&gt;</pre>
<p>By changing the order to allow,deny and changing the allow entry to deny we have created a ban list. Everyone EXCEPT mangohosting.com hosts can get documents from the directory.</p>
<pre>&lt;Limit GET&gt;
order deny,allow
allow from all
deny from mangohosting.com 192.168.10.
&lt;/Limit&gt;</pre>
<p>This rule set is evaluated the same as the one above it, but includes an additional deny rule for the 192.168.10. domain. The drawback to using a DNS name can be illustrated if the web server can not resolve an IP address to a domain name. If you rely completely on DNS names and DNS ever fails, you may find yourself locked out of your own site!</p>
<p>Host access control is the simplest way to control access, but what if you have a different ip address every time you log in and you don&#8217;t want to allow everyone from your domain access to the directory tree? I&#8217;m glad I asked that.</p>
<div class="subtitle">User Based Access Control</div>
<p>The most effective method of access restriction is the use of a username and password. By using two additional files, people can be granted acc</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mangohosting.com%2F2008%2F05%2F05%2Fcomo-configurar-directorios-protegidos-en-su-cuenta-de-hosting-en-linux%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 60px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mangohosting.com/2008/05/05/como-configurar-directorios-protegidos-en-su-cuenta-de-hosting-en-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cómo interpretar las estadísticas de su sitio web</title>
		<link>http://www.mangohosting.com/2008/05/05/como-interpretar-las-estadisticas-de-su-sitio-web/</link>
		<comments>http://www.mangohosting.com/2008/05/05/como-interpretar-las-estadisticas-de-su-sitio-web/#comments</comments>
		<pubDate>Mon, 05 May 2008 03:44:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutoriales, Guías, Cursos]]></category>
		<category><![CDATA[estadisticas]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sitio]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://mangohosting.com/?p=64</guid>
		<description><![CDATA[An important part of any web based business is understanding your visitors. One  of the tools that you can use in gaining a better overview of your traffic are  the statistics generated via the Mango Hosting control panel.
To access your web site traffic statistics:
» Log in to your control panel
» Select &#8220;view site [...]]]></description>
			<content:encoded><![CDATA[<p>An important part of any web based business is understanding your visitors. One  of the tools that you can use in gaining a better overview of your traffic are  the statistics generated via the Mango Hosting control panel.</p>
<p>To access your web site traffic statistics:<span id="more-64"></span></p>
<p>» Log in to your control panel<br />
» Select &#8220;view site stats&#8221;<br />
» Select the domain you wish to view</p>
<p>If you should see a message stating &#8220;No stats have been generated for this domain yet&#8221;, it means that you haven&#8217;t enabled your server logs.</p>
<p>» Select &#8220;Edit domain&#8221;<br />
» Select the domain you wish to enable statistics for<br />
» Select &#8220;Enable logs&#8221;</p>
<p>You then may have to wait up to 24 hours to view your stats as log processing only occurs once a day.</p>
<p><strong>Interpreting your statistics</strong></p>
<p>Your server log is basically a text file that records all of the activity on your web site. The statistics application used by Mango Hosting translates all this information into an easy-to-read format. Please bear in mind that statistics reporting applications are never 100% accurate &#8211; but they do act as good indicators.</p>
<p>Let&#8217;s break down the various terminology used on the report:</p>
<p><strong>Hits </strong></p>
<p>This is a request made to the server. As a page is made up of a number of elements such as the html itself, links to .js files and images, a single page request may generate a large number of hits. Hits are not a good way to measure the traffic on your site.</p>
<p><strong>Files</strong></p>
<p>This represents the total number of requests that resulted in an element being sent back to the user &#8211; with the exception of 404 File not found requests or where a person already has the requested element in their cache.</p>
<p><strong>Pages</strong></p>
<p>The URLs that would be considered the actual page being requested. This refers to pages that end in <strong>.htm</strong>, <strong>.html, .php</strong> and <strong>.cgi</strong>.</p>
<p><strong>Kbytes</strong></p>
<p>(KB) is 1024 bytes (1 Kilobyte). It&#8217;s a measurement of the data that was transferred from the server during the time period. There are 1024 Kilobytes in a Megabyte and 1024 Megabytes in a Gigabyte.</p>
<p><strong>Unique Sites</strong></p>
<p>This is the number of unique IP addresses/hostnames that made requests to the server. As many visitors can appear to come from a single site or from many IP addresses, this can be an inaccurate report of how many unique visitors have been on your site during the time period.</p>
<p>An IP address is a unique identifier. While you are using it, no one else on the web can utilize that particular set of numbers.</p>
<p><strong>Visits </strong></p>
<p align="left">A unique visit is defined as  someone with a unique IP address who is visiting your site for the first time that day. When a person logs on to their ISP they are assigned a unique IP address.</p>
<p align="left">No matter how many times a visitor refreshes pages or navigates through your web site, they will only be counted once for the day, making this measurement a more accurate way to estimate your site traffic. This is one of the more important statistics to take notice of.</p>
<p align="left"><strong>URL</strong></p>
<p>URL stands for Uniform Resource Locator. In your statistics, you&#8217;ll be able to see the most popular pages requested by your visitors.</p>
<p><strong>Unique referrers</strong></p>
<p>Unique referrers are those sources that bring a person to your site or pages requested by a browser once the visitor is on your site. This being the case, you&#8217;ll notice in this section that many of your own pages will appear.</p>
<p><strong>Unique usernames</strong></p>
<p>This displays the persons/computers who accessed your site via a login of some description.</p>
<p><strong>Unique agents</strong></p>
<p>These can be software browsers &#8211; such as Netscape, IE, Opera etc. or search engine spiders indexing your site.  The following is a summary of the most popular search engine spider names. A &#8220;spider&#8221; is an automated software application that follows links, collects data and then sends that information back to a database.</p>
<div>
<table class="textblue12px" border="1" cellspacing="0" cellpadding="4" bordercolor="#0055b5">
<tbody>
<tr>
<td><strong>Spider Name</strong></td>
<td><strong>Search Engine</strong></td>
</tr>
<tr>
<td>Googlebot</td>
<td>Google.com</td>
</tr>
<tr>
<td>TeomaAgent</td>
<td>Teoma.com</td>
</tr>
<tr>
<td>Zyborg</td>
<td>Wisenut.com</td>
</tr>
<tr>
<td>Architext spider</td>
<td>Excite.com</td>
</tr>
<tr>
<td>FAST-WebCrawler</td>
<td>FAST (AllTheWeb.com)</td>
</tr>
<tr>
<td>Slurp</td>
<td>Inktomi.com</td>
</tr>
<tr>
<td>Ask Jeeves</td>
<td>AskJeeves.com</td>
</tr>
<tr>
<td>ia_archiver</td>
<td>Alexa.com</td>
</tr>
<tr>
<td height="31">Scooter</td>
<td>AltaVista.com</td>
</tr>
<tr>
<td>Mercator</td>
<td>AltaVista.com</td>
</tr>
<tr>
<td>crawler@fast</td>
<td>FAST (AllTheWeb.com)</td>
</tr>
<tr>
<td>Crawler</td>
<td>Crawler.de</td>
</tr>
<tr>
<td>InfoSeek sidewinder</td>
<td>InfoSeek.com</td>
</tr>
<tr>
<td>Lycos_Spider_(T-Rex)</td>
<td>Lycos.com</td>
</tr>
<tr>
<td>MantraAgent</td>
<td>LookSmart.com</td>
</tr>
<tr>
<td>Moget</td>
<td>Goo.jp</td>
</tr>
<tr>
<td>WebCrawler</td>
<td>Webcrawler.com</td>
</tr>
</tbody>
</table>
</div>
<p>You may also see activity from web-strippers. Web strippers are also known    as off-line browsers &#8211; they are used by people who want to download your entire    site. More on this topic later in the article.</p>
<p><strong>Search strings</strong></p>
<p>Are generated from examining the referrer strings in your log and picking out the search criteria used to generate the search engine listing that caused the visitor to arrive on your site.</p>
<p><strong>Response Code</strong></p>
<p>These codes are generated by the web server and indicate the final status of each request made to it &#8211; whether the page was successfully delivered, unauthorized access was attempted or a request to a non-existent page occurred.</p>
<p><strong>Entry pages</strong></p>
<p>The first page visited when a visitor arrives on your site. In many instances, you may find that due to search engine listings, your home page is not the main point of entry. This is a point to keep in mind when designing a web site. Each page should be considered an entrance; so it&#8217;s crucial that your navigation is well thought out to ensure visitors can get from one page to any other page easily.</p>
<p><strong>Exit pages</strong></p>
<p>The last page visited before the user leaves the site.</p>
<p><strong>How to use this information</strong></p>
<p>Using these statistics, you can crunch it down further to ascertain the success of your site or potential trouble areas, for example:</p>
<p><strong>Visitor/Page view ratio</strong></p>
<p>If the number of pages divided by the number of pages only equalled 1:1, this could signify that visitors were leaving your site as soon as they arrived &#8211; that your site is not &#8217;sticky&#8217;. If you only have a site where the main content is a single page, then this wouldn&#8217;t apply. The higher the page to visitor ratio in most cases, the better, especially if you are running a content site. If your page to visitor ratio is very high, it may also mean that people are having problems finding information on your site, which in turn means extra bandwidth being used to locate the desired information &#8211; it all depends on your site topic and goals.</p>
<p><strong>Bloat pages</strong></p>
<p>Review the &#8220;Top URL&#8217;s&#8221; section and then divide the kilobytes for your most popular pages by the number of hits. You may find that one or two of your pages constitute the vast majority of your bandwidth usage unnecessarily. If you have very popular pages and you can trim them down a bit by removing superfluous code, the bandwidth savings can be huge.</p>
<p><strong>Bad links</strong></p>
<p><span>In the &#8220;Hits by Response Code&#8221; section, take note of the &#8220;Code 404 &#8211; Not Found&#8221; entry. If this is high, it may be that links on your site are pointing to content within your site that doesn&#8217;t exist or your linking partners are linking to non-existent content. These 404 errors can also be caused by &#8220;idiot bots&#8221; such as web stripping software.</span></p>
<p><span>To check your own site for bad links you can use this free online application from the W3C:</span></p>
<p><a href="http://validator.w3.org/checklink" target="_blank">http://validator.w3.org/checklink</a></p>
<p>By entering your index (home) page into the validator, it will check all links from that page, and then the links on subsequent pages depending on the settings you select.</p>
<p>Just a note in regards to 404&#8217;s &#8211; Mango Hosting has a function to allow you to create custom 404 error pages. This can greatly assist in keeping visitors on your site should they use a broken link. For further information view &#8220;<a href="http://www.mangohosting.com/es/custom-error-pages.shtml">Creating Custom Error Pages</a>&#8220;.</p>
<p><strong>Problem scripts</strong></p>
<p>Much the same as page bloat, certain scripts may cause excessive bandwidth usage due to the way they are coded. This can included JavaScript containers (.js).</p>
<p><strong>Web Strippers</strong></p>
<p>Web Strippers can be a real headache for content sites. Although they go under the innocent name of &#8220;offline browsers&#8221;, they can significantly increase the amount of bandwidth you use each month as people download entire sites to either read through offline, or for more sinister purposes. It&#8217;s difficult to keep these software agents out as there are new applications developed every day. The other problem is that many of these offline browsers can masquerade as popular browser software.</p>
<p>The best way to keep these strippers out of your web is by implementing exclusion statements in your robots.txt file. We don&#8217;t have a tutorial published on this subject as yet, but Mango Hosting clients are welcome to contact us and we&#8217;ll send you the instructions and a sample robots.txt file to help you with protecting your site. You can submit a request via our support form on the left hand side of this page, just ask for the support ticket to be forwarded to Michael Bloch.</p>
<p>We hope this tutorial has helped to clarify your web statistics and how they can be used.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mangohosting.com%2F2008%2F05%2F05%2Fcomo-interpretar-las-estadisticas-de-su-sitio-web%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 60px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mangohosting.com/2008/05/05/como-interpretar-las-estadisticas-de-su-sitio-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
