<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 02:59:07 +0000</lastBuildDate>
    <item>
      <title>(Bash) Check to see if a list of applications are running by testing host and port - deanhouseholder</title>
      <link>https://snipplr.com/view/74221/check-to-see-if-a-list-of-applications-are-running-by-testing-host-and-port</link>
      <description>&lt;p&gt;This script allows you to monitor a list of applications each running on servers in different environments.  For example, these can be webservers: apache/nginx/etc., application servers: tomcat/nodejs/IIS/etc., database servers: mysql/oracle/etc., or anything else that listens on a port.&#13;
&#13;
Instructions:&#13;
1) Edit the key/value pairs in the arrays: ENV_LIST, PORT_LIST, SERVERS, APPS with the data for your own applications&#13;
2) Run:  ./scriptname.sh&#13;
&#13;
Requirements:&#13;
This script does require "nc" to be installed.&#13;
&#13;
Note:&#13;
This works both on linux and cygwin.&lt;/p&gt;</description>
      <pubDate>Wed, 16 Apr 2014 05:41:48 UTC</pubDate>
      <guid>https://snipplr.com/view/74221/check-to-see-if-a-list-of-applications-are-running-by-testing-host-and-port</guid>
    </item>
    <item>
      <title>(PHP) PHP Download script for any filesize - deanhouseholder</title>
      <link>https://snipplr.com/view/72341/php-download-script-for-any-filesize</link>
      <description>&lt;p&gt;By default Apache won't allow you to download a file over 2GB.  This PHP script overcomes that along with some extra goodies.&#13;
&#13;
The script will read from standard url path the file on the server to download and display the filesize along with a link to download it.&#13;
&#13;
Setup:&#13;
&#13;
1) Create a directory called "d" on the root of your website and name this script "index.php"&#13;
&#13;
2) Create a .htaccess file with the following lines:&#13;
&#13;
RewriteEngine On&#13;
&#13;
RewriteBase /d/&#13;
&#13;
RewriteCond %{REQUEST_DIRECTORY} !-d [NC]&#13;
&#13;
RewriteRule ^(.*)$ index.php?f=$1 [L]&#13;
&#13;
3) Craft a url in the format of: http://[website_url]/d/path/to/download/filename.dat&#13;
&#13;
This will link to a file: http://[website_url]/path/to/download/filename.dat&#13;
&#13;
If you want, you can also craft a url with a trailing "&amp;" and it will automatically start downloading.&#13;
&#13;
Example: http://[website_url]/path/to/download/filename.dat&amp;&lt;/p&gt;</description>
      <pubDate>Thu, 12 Sep 2013 05:33:17 UTC</pubDate>
      <guid>https://snipplr.com/view/72341/php-download-script-for-any-filesize</guid>
    </item>
    <item>
      <title>(PHP) Check if Apache's mod_rewrite is installed. - phpdev</title>
      <link>https://snipplr.com/view/72021/check-if-apaches-modrewrite-is-installed</link>
      <description>&lt;p&gt;*Example:* &#13;
        &#13;
       if (!isRewriteMod()) exit('Please install Apache mod_rewrite module.');&lt;/p&gt;</description>
      <pubDate>Fri, 02 Aug 2013 02:46:45 UTC</pubDate>
      <guid>https://snipplr.com/view/72021/check-if-apaches-modrewrite-is-installed</guid>
    </item>
    <item>
      <title>(Apache) yii hide index.php - codesnip</title>
      <link>https://snipplr.com/view/72007/yii-hide-indexphp</link>
      <description>&lt;p&gt;Hiding index.php from url&lt;/p&gt;</description>
      <pubDate>Wed, 31 Jul 2013 10:48:59 UTC</pubDate>
      <guid>https://snipplr.com/view/72007/yii-hide-indexphp</guid>
    </item>
    <item>
      <title>(Other) .htaccess tricks - telltec</title>
      <link>https://snipplr.com/view/70436/htaccess-tricks</link>
      <description>&lt;p&gt;Several tricks for your .htaccess file.&lt;/p&gt;</description>
      <pubDate>Fri, 15 Mar 2013 20:57:45 UTC</pubDate>
      <guid>https://snipplr.com/view/70436/htaccess-tricks</guid>
    </item>
    <item>
      <title>(Apache) Fix 403 Forbidden wampserver tools (PHPmyadmin, sqlbuddy etc) on Windows 8 - rickygri</title>
      <link>https://snipplr.com/view/69861/fix-403-forbidden-wampserver-tools-phpmyadmin-sqlbuddy-etc-on-windows-8</link>
      <description>&lt;p&gt;To fix the issue with localhost under Windows 8 giving a 403 error (but working for 127.0.0.1) I did the following:&lt;/p&gt;</description>
      <pubDate>Fri, 08 Feb 2013 07:54:56 UTC</pubDate>
      <guid>https://snipplr.com/view/69861/fix-403-forbidden-wampserver-tools-phpmyadmin-sqlbuddy-etc-on-windows-8</guid>
    </item>
    <item>
      <title>(Apache) https transparent proxy - therobot</title>
      <link>https://snipplr.com/view/69523/https-transparent-proxy</link>
      <description>&lt;p&gt;The idea is to use this piece of code inside a virtualhost block&lt;/p&gt;</description>
      <pubDate>Thu, 17 Jan 2013 23:24:01 UTC</pubDate>
      <guid>https://snipplr.com/view/69523/https-transparent-proxy</guid>
    </item>
    <item>
      <title>(PHP) Get current URL with PHP in Apache or IIS - rickygri</title>
      <link>https://snipplr.com/view/69136/get-current-url-with-php-in-apache-or-iis</link>
      <description>&lt;p&gt;Get Current URL Path on Apache / IIS&lt;/p&gt;</description>
      <pubDate>Tue, 18 Dec 2012 00:24:54 UTC</pubDate>
      <guid>https://snipplr.com/view/69136/get-current-url-with-php-in-apache-or-iis</guid>
    </item>
    <item>
      <title>(Apache) domain.com-&gt;www.domain.com Apache Redirect - abwaters</title>
      <link>https://snipplr.com/view/69049/domaincomwwwdomaincom-apache-redirect</link>
      <description>&lt;p&gt;This redirect is domain independent.&lt;/p&gt;</description>
      <pubDate>Mon, 10 Dec 2012 04:56:17 UTC</pubDate>
      <guid>https://snipplr.com/view/69049/domaincomwwwdomaincom-apache-redirect</guid>
    </item>
    <item>
      <title>(PHP) Perfect PHP .htaccess rewrites - FatFolderDesigner</title>
      <link>https://snipplr.com/view/66655/perfect-php-htaccess-rewrites</link>
      <description>&lt;p&gt;These two snippets together, the first in the .htaccess file, and the second in your PHP create an elegantly simple solution to arbitrary URLs with php. For a breakdown and example check out the link.&#13;
&#13;
Don't want to follow the link, how about the quick version. The .htaccess redirects anything that doesn't exist to the PHP, where the script breaks it apart and places it all in the $_urlvars for your own uses.&lt;/p&gt;</description>
      <pubDate>Sat, 11 Aug 2012 17:02:37 UTC</pubDate>
      <guid>https://snipplr.com/view/66655/perfect-php-htaccess-rewrites</guid>
    </item>
    <item>
      <title>(Bash) Tail Apache logs - inreflection7</title>
      <link>https://snipplr.com/view/65296/tail-apache-logs</link>
      <description>&lt;p&gt;It can be useful to take a peek at what Apache is doing but I always forget the location of the Apache logs so I can use tail.&lt;/p&gt;</description>
      <pubDate>Fri, 01 Jun 2012 00:42:26 UTC</pubDate>
      <guid>https://snipplr.com/view/65296/tail-apache-logs</guid>
    </item>
    <item>
      <title>(Bash) Apache2 Controls - tregeagle</title>
      <link>https://snipplr.com/view/63471/apache2-controls</link>
      <description>&lt;p&gt;Now I've written it down maybe I'll remember it...&lt;/p&gt;</description>
      <pubDate>Tue, 21 Feb 2012 16:59:29 UTC</pubDate>
      <guid>https://snipplr.com/view/63471/apache2-controls</guid>
    </item>
    <item>
      <title>(Apache) Prevent Image Hotlinking - ederfortunatO</title>
      <link>https://snipplr.com/view/63336/prevent-image-hotlinking</link>
      <description>&lt;p&gt;stop bandwidth theft!&lt;/p&gt;</description>
      <pubDate>Wed, 15 Feb 2012 00:12:19 UTC</pubDate>
      <guid>https://snipplr.com/view/63336/prevent-image-hotlinking</guid>
    </item>
    <item>
      <title>(Apache) Performance-wise .htaccess - pentago</title>
      <link>https://snipplr.com/view/60448/performancewise-htaccess</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 01 Nov 2011 19:54:10 UTC</pubDate>
      <guid>https://snipplr.com/view/60448/performancewise-htaccess</guid>
    </item>
    <item>
      <title>(Apache) .htaccess Redirect ROOT to subdirectory - RainyDayMedia</title>
      <link>https://snipplr.com/view/59403/htaccess-redirect-root-to-subdirectory</link>
      <description>&lt;p&gt;I found this useful. Works as expected.&lt;/p&gt;</description>
      <pubDate>Wed, 05 Oct 2011 00:23:08 UTC</pubDate>
      <guid>https://snipplr.com/view/59403/htaccess-redirect-root-to-subdirectory</guid>
    </item>
    <item>
      <title>(PHP) Get Apache Version - Jotape</title>
      <link>https://snipplr.com/view/58336/get-apache-version</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 31 Aug 2011 09:24:21 UTC</pubDate>
      <guid>https://snipplr.com/view/58336/get-apache-version</guid>
    </item>
    <item>
      <title>(Other) Wordpress - htaccess - silentpro</title>
      <link>https://snipplr.com/view/58075/wordpress--htaccess</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 22 Aug 2011 04:42:53 UTC</pubDate>
      <guid>https://snipplr.com/view/58075/wordpress--htaccess</guid>
    </item>
    <item>
      <title>(Apache) Setting PHP Memory Limit in .htaccess - Huskie</title>
      <link>https://snipplr.com/view/57652/setting-php-memory-limit-in-htaccess</link>
      <description>&lt;p&gt;Useful for WordPress installations that need more than 32M of memory&lt;/p&gt;</description>
      <pubDate>Sat, 06 Aug 2011 00:09:55 UTC</pubDate>
      <guid>https://snipplr.com/view/57652/setting-php-memory-limit-in-htaccess</guid>
    </item>
    <item>
      <title>(Apache) .htaccess disable magic_quotes - jonathanpglick</title>
      <link>https://snipplr.com/view/57013/htaccess-disable-magicquotes</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 22 Jul 2011 04:11:28 UTC</pubDate>
      <guid>https://snipplr.com/view/57013/htaccess-disable-magicquotes</guid>
    </item>
    <item>
      <title>(PHP) htaccess for codeigniter - farstar78</title>
      <link>https://snipplr.com/view/56838/htaccess-for-codeigniter</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 19 Jul 2011 04:27:48 UTC</pubDate>
      <guid>https://snipplr.com/view/56838/htaccess-for-codeigniter</guid>
    </item>
    <item>
      <title>(PHP) Username and password generator for .htpasswd files - hairzo</title>
      <link>https://snipplr.com/view/56587/username-and-password-generator-for-htpasswd-files</link>
      <description>&lt;p&gt;Created by me as a quick and secure way of creating a username and password for basic authentication via a .htpasswd file on an Apache server.&#13;
&#13;
A live demo is available at http://www.chrishair.co.uk/supgha/&#13;
&#13;
Thanks.&lt;/p&gt;</description>
      <pubDate>Thu, 14 Jul 2011 07:18:15 UTC</pubDate>
      <guid>https://snipplr.com/view/56587/username-and-password-generator-for-htpasswd-files</guid>
    </item>
    <item>
      <title>(PHP) Explorer fÃ¡jl letÃ¶ltÃ©s bug ssl (https) - oozolii</title>
      <link>https://snipplr.com/view/55635/explorer-fjl-letlts-bug-ssl-https</link>
      <description>&lt;p&gt;Ha az internet explorerben nem sikerÃ¼l a fÃ¡jl letÃ¶ltÃ©se(olyan hibÃ¡t dob, hogy nem tudja letÃ¶lteni), akkor ezt a headerbe kell belerakni Ã©s mÃ¡r tÃ¶ltÅ‘dik is a fÃ¡jl.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Jun 2011 19:26:13 UTC</pubDate>
      <guid>https://snipplr.com/view/55635/explorer-fjl-letlts-bug-ssl-https</guid>
    </item>
    <item>
      <title>(Apache) Kill anything on port 80 - dan532</title>
      <link>https://snipplr.com/view/55338/kill-anything-on-port-80</link>
      <description>&lt;p&gt;(98)Address already in use: make_sock: could not bind to address [::]:80&lt;/p&gt;</description>
      <pubDate>Fri, 17 Jun 2011 02:42:51 UTC</pubDate>
      <guid>https://snipplr.com/view/55338/kill-anything-on-port-80</guid>
    </item>
    <item>
      <title>(Apache) Block hotlinking apache - silviud</title>
      <link>https://snipplr.com/view/55161/block-hotlinking-apache</link>
      <description>&lt;p&gt;you want to block other sites to hotlink your images or media files.&lt;/p&gt;</description>
      <pubDate>Sat, 11 Jun 2011 13:47:55 UTC</pubDate>
      <guid>https://snipplr.com/view/55161/block-hotlinking-apache</guid>
    </item>
    <item>
      <title>(Apache) Increase PHP file upload limit - shodan_uk</title>
      <link>https://snipplr.com/view/54831/increase-php-file-upload-limit</link>
      <description>&lt;p&gt;Add these lines to your .htaccess file to increase PHPs file upload size limit to 20Mb&lt;/p&gt;</description>
      <pubDate>Fri, 03 Jun 2011 19:00:46 UTC</pubDate>
      <guid>https://snipplr.com/view/54831/increase-php-file-upload-limit</guid>
    </item>
    <item>
      <title>(Apache) Cross Domain Font embedding for Firefox - demwunz</title>
      <link>https://snipplr.com/view/53703/cross-domain-font-embedding-for-firefox</link>
      <description>&lt;p&gt;This rule allows you to embed fonts cross domain. Especially good when you are serving your fonts from a CDN.&lt;/p&gt;</description>
      <pubDate>Wed, 18 May 2011 00:06:54 UTC</pubDate>
      <guid>https://snipplr.com/view/53703/cross-domain-font-embedding-for-firefox</guid>
    </item>
    <item>
      <title>(PHP) css minify / combine / param with PHP &amp; Apache (usefull for all) - giak</title>
      <link>https://snipplr.com/view/53640/css-minify--combine--param-with-php--apache-usefull-for-all</link>
      <description>&lt;p&gt;compress &amp; combine CSS files and param theme with PHP vars&lt;/p&gt;</description>
      <pubDate>Tue, 17 May 2011 07:06:00 UTC</pubDate>
      <guid>https://snipplr.com/view/53640/css-minify--combine--param-with-php--apache-usefull-for-all</guid>
    </item>
    <item>
      <title>(JavaScript) Routing Node.js in Apache - ericmuyser</title>
      <link>https://snipplr.com/view/53582/routing-nodejs-in-apache</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 14 May 2011 14:52:24 UTC</pubDate>
      <guid>https://snipplr.com/view/53582/routing-nodejs-in-apache</guid>
    </item>
    <item>
      <title>(Bash) Apache check syntax httpd.conf - hamsterbacke82</title>
      <link>https://snipplr.com/view/51418/apache-check-syntax-httpdconf</link>
      <description>&lt;p&gt;Syntax check for Red hat / Centos&lt;/p&gt;</description>
      <pubDate>Fri, 01 Apr 2011 13:20:39 UTC</pubDate>
      <guid>https://snipplr.com/view/51418/apache-check-syntax-httpdconf</guid>
    </item>
    <item>
      <title>(XML) Spring-Apache Commons DBCP Pool Configuration - hkarakose</title>
      <link>https://snipplr.com/view/49777/springapache-commons-dbcp-pool-configuration</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 28 Feb 2011 03:04:55 UTC</pubDate>
      <guid>https://snipplr.com/view/49777/springapache-commons-dbcp-pool-configuration</guid>
    </item>
    <item>
      <title>(Apache) Ubuntu apache vhost_alias setup - krillzip</title>
      <link>https://snipplr.com/view/49528/ubuntu-apache-vhostalias-setup</link>
      <description>&lt;p&gt;First of all this refers to a clean Ubuntu 10.04 install with the LAMP and OpenSSH packages installed, but can probably be applied in most cases.&#13;
&#13;
Duplicate the file /etc/apaches/sites-available/default, and name it subdomains.&#13;
&#13;
Edit the new file to look like this one.&#13;
&#13;
Enable the vhost_alias module, "a2enmod vhost_alias".&#13;
&#13;
Activate the new virtual host, "a2ensite subdomains".&#13;
&#13;
Reload apache, "/etc/init.d/apache2 reload".&#13;
&#13;
In order to change the configuration to your needs, [you can go here](&#13;
http://httpd.apache.org/docs/2.2/mod/mod_vhost_alias.html)&lt;/p&gt;</description>
      <pubDate>Wed, 23 Feb 2011 22:57:30 UTC</pubDate>
      <guid>https://snipplr.com/view/49528/ubuntu-apache-vhostalias-setup</guid>
    </item>
    <item>
      <title>(Bash) Virtual Hosts Creator - theriddlebrothers</title>
      <link>https://snipplr.com/view/49057/virtual-hosts-creator</link>
      <description>&lt;p&gt;Add an Apache virtual host via command line. Run as ./create mysite.domain.com&lt;/p&gt;</description>
      <pubDate>Wed, 16 Feb 2011 01:23:58 UTC</pubDate>
      <guid>https://snipplr.com/view/49057/virtual-hosts-creator</guid>
    </item>
    <item>
      <title>(Bash) Number of Connections by IP - klovera</title>
      <link>https://snipplr.com/view/48032/number-of-connections-by-ip</link>
      <description>&lt;p&gt;Returns a list of the number of connections by IP.&lt;/p&gt;</description>
      <pubDate>Fri, 28 Jan 2011 04:11:33 UTC</pubDate>
      <guid>https://snipplr.com/view/48032/number-of-connections-by-ip</guid>
    </item>
    <item>
      <title>(Perl) Apache Log File Analyzer - Affix</title>
      <link>https://snipplr.com/view/45916/apache-log-file-analyzer</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 18 Dec 2010 21:17:02 UTC</pubDate>
      <guid>https://snipplr.com/view/45916/apache-log-file-analyzer</guid>
    </item>
    <item>
      <title>(PHP) Fix to remove apache owner directory files - resting</title>
      <link>https://snipplr.com/view/45057/fix-to-remove-apache-owner-directory-files</link>
      <description>&lt;p&gt;Save in a php file and run in the directory.  &#13;
Remove directory files through ftp.  &#13;
Remove php file&lt;/p&gt;</description>
      <pubDate>Tue, 30 Nov 2010 20:44:54 UTC</pubDate>
      <guid>https://snipplr.com/view/45057/fix-to-remove-apache-owner-directory-files</guid>
    </item>
    <item>
      <title>(Apache) htaccess site optimizing - NiReiC</title>
      <link>https://snipplr.com/view/44372/htaccess-site-optimizing</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 18 Nov 2010 22:17:24 UTC</pubDate>
      <guid>https://snipplr.com/view/44372/htaccess-site-optimizing</guid>
    </item>
    <item>
      <title>(Other) PHP Header for UTF-8 - minipark</title>
      <link>https://snipplr.com/view/43909/php-header-for-utf8</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 11 Nov 2010 00:51:11 UTC</pubDate>
      <guid>https://snipplr.com/view/43909/php-header-for-utf8</guid>
    </item>
    <item>
      <title>(Apache) Configuring Multiple Domains within WAMP for Local Development - Meander365</title>
      <link>https://snipplr.com/view/43706/configuring-multiple-domains-within-wamp-for-local-development</link>
      <description>&lt;p&gt;Great for developing multiple sites under a wamp install.  Removes the headache of paths and domains and changing them when deploying to their live environment.&lt;/p&gt;</description>
      <pubDate>Sun, 07 Nov 2010 16:29:20 UTC</pubDate>
      <guid>https://snipplr.com/view/43706/configuring-multiple-domains-within-wamp-for-local-development</guid>
    </item>
    <item>
      <title>(Apache) Ativa compressÃ£o de arquivos ( utilizando gzip ) - joaobarbosa</title>
      <link>https://snipplr.com/view/43323/ativa-compresso-de-arquivos--utilizando-gzip-</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 31 Oct 2010 06:31:22 UTC</pubDate>
      <guid>https://snipplr.com/view/43323/ativa-compresso-de-arquivos--utilizando-gzip-</guid>
    </item>
    <item>
      <title>(PHP) Removendo \"index.php\" da url - joaobarbosa</title>
      <link>https://snipplr.com/view/43322/removendo-indexphp-da-url</link>
      <description>&lt;p&gt;2 etapas: .htaccess e config.php&lt;/p&gt;</description>
      <pubDate>Sun, 31 Oct 2010 06:30:15 UTC</pubDate>
      <guid>https://snipplr.com/view/43322/removendo-indexphp-da-url</guid>
    </item>
    <item>
      <title>(Apache) Alterar o tempo em que arquivos irÃ£o expirar - joaobarbosa</title>
      <link>https://snipplr.com/view/43318/alterar-o-tempo-em-que-arquivos-iro-expirar</link>
      <description>&lt;p&gt;Adicionhar o cÃ³digo ao arquivo .htaccess do site&lt;/p&gt;</description>
      <pubDate>Sun, 31 Oct 2010 06:24:05 UTC</pubDate>
      <guid>https://snipplr.com/view/43318/alterar-o-tempo-em-que-arquivos-iro-expirar</guid>
    </item>
    <item>
      <title>(PHP) Parsing Apache logs - newsok</title>
      <link>https://snipplr.com/view/42941/parsing-apache-logs</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 26 Oct 2010 03:41:18 UTC</pubDate>
      <guid>https://snipplr.com/view/42941/parsing-apache-logs</guid>
    </item>
    <item>
      <title>(Apache) Cache Images Apache Server - iloveitaly</title>
      <link>https://snipplr.com/view/42327/cache-images-apache-server</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 15 Oct 2010 07:37:21 UTC</pubDate>
      <guid>https://snipplr.com/view/42327/cache-images-apache-server</guid>
    </item>
    <item>
      <title>(Apache) All FTP users on server - fillyouin</title>
      <link>https://snipplr.com/view/42128/all-ftp-users-on-server</link>
      <description>&lt;p&gt;List all FTP users on server&lt;/p&gt;</description>
      <pubDate>Tue, 12 Oct 2010 21:37:05 UTC</pubDate>
      <guid>https://snipplr.com/view/42128/all-ftp-users-on-server</guid>
    </item>
    <item>
      <title>(Apache) Find all permissions of 777: - fillyouin</title>
      <link>https://snipplr.com/view/42127/find-all-permissions-of-777</link>
      <description>&lt;p&gt;use this to find all files/folders which have been given 777 (write all) permissions on a linux server&lt;/p&gt;</description>
      <pubDate>Tue, 12 Oct 2010 21:35:35 UTC</pubDate>
      <guid>https://snipplr.com/view/42127/find-all-permissions-of-777</guid>
    </item>
    <item>
      <title>(Prolog) Personalizar paginas de error - juannaviap</title>
      <link>https://snipplr.com/view/41835/personalizar-paginas-de-error</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 08 Oct 2010 10:03:15 UTC</pubDate>
      <guid>https://snipplr.com/view/41835/personalizar-paginas-de-error</guid>
    </item>
    <item>
      <title>(Apache) Set content expiration  in htaccess - odenijs</title>
      <link>https://snipplr.com/view/41772/set-content-expiration--in-htaccess</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 07 Oct 2010 21:12:04 UTC</pubDate>
      <guid>https://snipplr.com/view/41772/set-content-expiration--in-htaccess</guid>
    </item>
    <item>
      <title>(PHP) php-log - Process log files with PHP - dom111</title>
      <link>https://snipplr.com/view/40524/phplog--process-log-files-with-php</link>
      <description>&lt;p&gt;Iâ€™ve recently had to quickly parse an Apache log file, to get basic usage statistics for a site over a month and wanted the ability to quickly process any general logs and store them in a MySQL table, so Iâ€™ve made a small package class.log.&#13;
&#13;
Included in the package are:&#13;
&#13;
class.log.php (the main class)&#13;
class.log.processor.php (an interface for a log processor, very basic!!)&#13;
class.log.output.php (a simple extension of the processor (outputs &lt;p&gt; tags with &lt;span&gt;s)&#13;
class.log.mysql.php (a simple mysql importer of the processed data)&#13;
parse.php (a simple implementation, bringing all the classes together)&#13;
The class is designed to use one line at a time from the log retrieved, and the regular expression specified in class.log.php can be modified to parse different types of logs as long as the matches array is also updated.&#13;
&#13;
Iâ€™ve only used this for apache logs currently, which it managed quite well, Iâ€™m not sure if Iâ€™d use this script in an automated script, but Iâ€™ll leave that for you to decide.&lt;/p&gt;</description>
      <pubDate>Wed, 15 Sep 2010 20:07:44 UTC</pubDate>
      <guid>https://snipplr.com/view/40524/phplog--process-log-files-with-php</guid>
    </item>
    <item>
      <title>(Bash) show ssl certificate info - therobot</title>
      <link>https://snipplr.com/view/40224/show-ssl-certificate-info</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 10 Sep 2010 02:06:30 UTC</pubDate>
      <guid>https://snipplr.com/view/40224/show-ssl-certificate-info</guid>
    </item>
    <item>
      <title>(Apache) apache error log command - adriamooney</title>
      <link>https://snipplr.com/view/39887/apache-error-log-command</link>
      <description>&lt;p&gt;how to get your apache error log&lt;/p&gt;</description>
      <pubDate>Thu, 02 Sep 2010 14:09:28 UTC</pubDate>
      <guid>https://snipplr.com/view/39887/apache-error-log-command</guid>
    </item>
  </channel>
</rss>
