<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0" xml:base="http://www.poscribes.com">
<channel>
 <title>Poscribes - Apache, PHP and MySQL Tips and Scripts</title>
 <link>http://www.poscribes.com</link>
 <description>
.avTitle {font-weight: bold; text-decoration: underline;}
.avBody {font-weight: normal; text-decoration: none;}
.avAdHere {font-weight: bold; text-decoration: underline;}
								
								
Advertise Here</description>
 <language>en</language>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts" /><feedburner:info uri="poscribes-apache-php_and_mysql-tips_and_scripts" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/</creativeCommons:license><image><url>http://www.feedburner.com/fb/images/pub/fb_pwrd.gif</url></image><feedburner:emailServiceId>Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
 <title>Apache Web Server - How To Create Self-Signed SSL Certificates</title>
 <link>http://feedproxy.google.com/~r/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts/~3/wt8RoQQv4XI/apache_web_server_how_to_create_selfsigned_ssl_certificates</link>
 <description>&lt;p&gt;I was recently asked if I had any documentation on how to create a self-signed SSL certificate for the Apache Web Server.  As luck would have it, I indeed had exactly such an item!&lt;/p&gt;
&lt;p&gt;With this in mind I have decided to add this information here also for all to share.&lt;/p&gt;
&lt;p&gt;While this is targeted at creating a self-signed certificate, it can also be used to submit to a certificate authority.&lt;/p&gt;
&lt;p&gt;In the following example I am assuming that you have chosen to install a pre-compiled Win32 Binary that already includes OpenSSL.&lt;/p&gt;
&lt;p&gt;While Windows is the install of choice here, the syntax remains pretty much the same, only the file and directory structure differ.  As such, if you are using Linux, Mac OS or something else just adjust the directory locations for your particular install.&lt;/p&gt;
&lt;p&gt;The directory structure for this example is setup as follows:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
c:\www\apache22\conf&lt;br /&gt;
c:\www\apache22\conf\ssl.key&lt;br /&gt;
c:\www\apache22\conf\ssl.crt&lt;br /&gt;
c:\www\openssl\bin&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
To begin, open a command prompt and navigate to:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
c:\www\openssl\bin&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
Next, type the following to generate your key.&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
c:\www\openssl\bin&amp;gt;openssl genrsa -out c:\www\apache22\conf\ssl.key\local_server.key 1024&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
With the key created, we are ready to create the CSR (Certificate Signed Request) that will be used to generate the Self-Signed Certificate.&lt;/p&gt;
&lt;p&gt;Onceagain at the command prompt, type the following:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
c:\www\openssl\bin&amp;gt;openssl req -new -key c:\www\apache22\conf\ssl.key\local_server.key -out c:\www\apache22\conf\ssl.key\local_server.csr&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
You will then be prompted with a series of requests that will be incorporated into your certificate request.&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
Country Name (2 letter code) [AU]: US&lt;br /&gt;
State or Province Name (full name) [Some-State]: Florida&lt;br /&gt;
Locality Name (eg, city) []: Viera&lt;br /&gt;
Organization Name (eg, company) [Internet Widgits Pty Ltd]: Poscribes&lt;br /&gt;
Organizational Unit Name (eg, section) []: Poscribes Web&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
and then most importantly the common name otherwise known as the domain name that will be used with your SSL secured website.&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
Common Name (eg, YOUR name) []: www.poscribes.com&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
Email Address []: webmaster@poscribes.com&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
For the next item, leave it blank and just hit enter.&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
Please enter the following 'extra' attributes&lt;br /&gt;
to be sent with your certificate request&lt;br /&gt;
A challenge password []:&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
Optionally, you could specify a department name or some other identifier here.&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
An optional company name []:&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
Now that we have generated the certificate signed request we can go ahead and generate a Self-Signed Certificate.&lt;br /&gt;
(NOTE: The following should all be entered in one continuous string with no line breaks)&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
C:\www\openssl\bin&amp;gt;openssl x509 -req -days 365 -in c:\www\apache22\conf\ssl.key\local_server.csr -signkey&lt;br /&gt;
c:\www\apache22\conf\ssl.key\local_server.key -out c:\www\apache22\conf\ssl.crt\local_server.crt&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
That's it!&lt;/p&gt;
&lt;p&gt;The self-signed certificate has now been generated.&lt;/p&gt;
&lt;p&gt;Remember to change the respective &lt;strong&gt;SSLCertificateFile&lt;/strong&gt; and &lt;strong&gt;SSLCertificateKeyFile&lt;/strong&gt; entries in your &lt;strong&gt;SSL.CONF&lt;/strong&gt; file to match the respective certificate and key values entered.&lt;/p&gt;
&lt;p&gt;Restart the Apache Web Service and voila you have an SSL secured web site with a self-signed certificate!&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=wt8RoQQv4XI:afjKKDZSuMI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=wt8RoQQv4XI:afjKKDZSuMI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=wt8RoQQv4XI:afjKKDZSuMI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=wt8RoQQv4XI:afjKKDZSuMI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=wt8RoQQv4XI:afjKKDZSuMI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=wt8RoQQv4XI:afjKKDZSuMI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=wt8RoQQv4XI:afjKKDZSuMI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=wt8RoQQv4XI:afjKKDZSuMI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts/~4/wt8RoQQv4XI" height="1" width="1"/&gt;</description>
 <comments>http://www.poscribes.com/apache_web_server_how_to_create_selfsigned_ssl_certificates#comments</comments>
 <category domain="http://www.poscribes.com/categories/apache">apache</category>
 <category domain="http://www.poscribes.com/categories/server">server</category>
 <category domain="http://www.poscribes.com/categories/www">www</category>
 <pubDate>Thu, 04 Feb 2010 22:18:45 +0000</pubDate>
 <dc:creator>devans</dc:creator>
 <guid isPermaLink="false">882 at http://www.poscribes.com</guid>
<feedburner:origLink>http://www.poscribes.com/apache_web_server_how_to_create_selfsigned_ssl_certificates</feedburner:origLink></item>
<item>
 <title>Minimal Apache Web Server httpd.conf configuration file</title>
 <link>http://feedproxy.google.com/~r/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts/~3/k1cT8keY7p8/minimal_apache_web_server_httpd.conf_configuration_file</link>
 <description>&lt;p&gt;Following an install of Apache on Windows you are faced with the somewhat daunting process of wading through the httpd.conf file and deciding upon what is required for your particular circumstance.&lt;/p&gt;
&lt;p&gt;As a matter of course, I typically save the default httpd.conf file to another name and use a vastly trimmed down variant in place thereof.&lt;/p&gt;
&lt;p&gt;What I have pasted below represents such an example and trims the config file to a much more manageable 55-lines of code having stripped the unnecessary elements along with all of the comments. &lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
PidFile logs/httpd.pid&lt;br /&gt;
Listen 80&lt;br /&gt;
ServerName localhost&lt;br /&gt;
ServerTokens Prod&lt;br /&gt;
ServerSignature Off&lt;br /&gt;
FileETag None&lt;br /&gt;
UseCanonicalName Off&lt;br /&gt;
HostnameLookups Off&lt;br /&gt;
AddDefaultCharset IS-8859-1&lt;br /&gt;
ServerAdmin webadmin@localhost&lt;br /&gt;
ServerRoot "c:/www/Apache22"&lt;br /&gt;
DocumentRoot "c:/www/vhosts/localhost"&lt;br /&gt;
Timeout 45&lt;br /&gt;
KeepAlive On&lt;br /&gt;
KeepAliveTimeout 15&lt;br /&gt;
MaxKeepAliveRequests 100&lt;br /&gt;
ThreadsPerChild 150&lt;br /&gt;
MaxRequestsPerChild  1000&lt;br /&gt;
ErrorLog logs/error.log&lt;br /&gt;
LogLevel error&lt;br /&gt;
LogFormat "%h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined&lt;br /&gt;
LogFormat "%{Referer}i -&gt; %U" referer&lt;br /&gt;
LogFormat "%{User-agent}i" agent&lt;br /&gt;
CustomLog logs/access.log combined&lt;br /&gt;
LoadModule authz_host_module modules/mod_authz_host.so&lt;br /&gt;
LoadModule dir_module modules/mod_dir.so&lt;br /&gt;
LoadModule log_config_module modules/mod_log_config.so&lt;br /&gt;
LoadModule mime_module modules/mod_mime.so&lt;br /&gt;
LoadModule rewrite_module modules/mod_rewrite.so&lt;br /&gt;
DefaultType text/html&lt;br /&gt;
DirectoryIndex index.html&lt;br /&gt;
&amp;lt;FilesMatch "^\.ht"&amp;gt;&lt;br /&gt;
    Order allow,deny&lt;br /&gt;
    Deny from all&lt;br /&gt;
&amp;lt;/FilesMatch&amp;gt;&lt;br /&gt;
AccessFileName .htaccess&lt;br /&gt;
&amp;lt;Directory /&amp;gt;&lt;br /&gt;
    Options None&lt;br /&gt;
    AllowOverride None&lt;br /&gt;
    Order deny,allow&lt;br /&gt;
    Deny from all&lt;br /&gt;
&amp;lt;/Directory&amp;gt;&lt;br /&gt;
&amp;lt;Directory "c:/www/vhosts/localhost"&amp;gt;&lt;br /&gt;
    Options Indexes FollowSymLinks&lt;br /&gt;
    AllowOverride None&lt;br /&gt;
    Order allow,deny&lt;br /&gt;
    Allow from all&lt;br /&gt;
&amp;lt;/Directory&amp;gt;&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteCond %{REQUEST_METHOD} ^TRACE&lt;br /&gt;
RewriteRule .* - [F]&lt;br /&gt;
TraceEnable Off&lt;br /&gt;
&amp;lt;IfModule mime_module&amp;gt;&lt;br /&gt;
    TypesConfig conf/mime.types&lt;br /&gt;
&amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;It should be noted that when modifying this for your own purposes, remember to pay special attention to the file location references throughout and align these to your own directory structure and configuration for Apache.&lt;/p&gt;
&lt;p&gt;This configuration was designed for use with an Apache 2.2 release but should also work with the Apache 2.0 version too.&lt;/p&gt;
&lt;p&gt;Also, while I have directed this configuration toward Microsoft Windows, there is no reason why, with the file modifications already referenced above, that this would not work for Apache installations on other operating systems too.&lt;/p&gt;
&lt;p&gt;I'd love to hear other suggestions regarding optimizing this code even further or feedback on how such a configuration helped you out in some way.&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=k1cT8keY7p8:r82_rJBPB9E:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=k1cT8keY7p8:r82_rJBPB9E:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=k1cT8keY7p8:r82_rJBPB9E:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=k1cT8keY7p8:r82_rJBPB9E:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=k1cT8keY7p8:r82_rJBPB9E:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=k1cT8keY7p8:r82_rJBPB9E:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=k1cT8keY7p8:r82_rJBPB9E:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=k1cT8keY7p8:r82_rJBPB9E:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts/~4/k1cT8keY7p8" height="1" width="1"/&gt;</description>
 <comments>http://www.poscribes.com/minimal_apache_web_server_httpd.conf_configuration_file#comments</comments>
 <category domain="http://www.poscribes.com/categories/apache">apache</category>
 <category domain="http://www.poscribes.com/categories/downloads">downloads</category>
 <category domain="http://www.poscribes.com/categories/linux">linux</category>
 <category domain="http://www.poscribes.com/categories/scripts">scripts</category>
 <category domain="http://www.poscribes.com/categories/server">server</category>
 <category domain="http://www.poscribes.com/categories/windows">windows</category>
 <pubDate>Wed, 09 Dec 2009 19:53:35 +0000</pubDate>
 <dc:creator>devans</dc:creator>
 <guid isPermaLink="false">876 at http://www.poscribes.com</guid>
<feedburner:origLink>http://www.poscribes.com/minimal_apache_web_server_httpd.conf_configuration_file</feedburner:origLink></item>
<item>
 <title>Using Forfiles in a BAT script to Purge Old Data on Windows</title>
 <link>http://feedproxy.google.com/~r/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts/~3/ZGsHEG1n00g/using_forfiles_in_a_BAT_script_to_purge_old_data_on_windows</link>
 <description>&lt;p&gt;As somewhat a continuance from my post regarding the use &lt;a href="http://www.poscribes.com/using_7zip_in_a_BAT_script_as_part_of_your_backup_strategy"&gt;7-Zip&lt;/a&gt; as part of an overall backup solution therein also lies the need for a file retention strategy too.&lt;/p&gt;
&lt;p&gt;If we simply allow the creation of daily or weekly backups to run unchecked then dependant upon the size of the archive, the frequency of the backup job and ultimately the amount of available disk space we reach some kind of threshold.  This necessitates the need for a retention strategy.&lt;/p&gt;
&lt;p&gt;Daily backups may be viewed as no longer relevant after 24-hours in which case you could simply overwrite the data with the new information or if your retention schedule is defined as such, purge the information after say one week of retention.&lt;/p&gt;
&lt;p&gt;The same could also be said for weekly or monthly backups for which you have defined that 30 days (for weekly) or 90 days (for monthly) is sufficient.&lt;/p&gt;
&lt;p&gt;Having established your basis for a retention strategy you then have the task to follow through with executing and maintaining the retention strategy.  Busy schedules being what they are we do not always have time to check without fail that we have compiled sufficient backups and can safely purge the remainder.  Sooner rather than later this will start to feel like a neverending task, but do not worry we can make this easy!&lt;/p&gt;
&lt;p&gt;To begin you will need to download the tool &lt;strong&gt;forfiles.exe&lt;/strong&gt;.  This can be obtain from &lt;a href="http://www.codeplex.com/SharedCache/Project/Download/FileDownload.aspx?DownloadId=19171" target="_blank"&gt; here &lt;/a&gt;.  Extract the downloaded file to your c:\ root directory and then continue to read below.&lt;/p&gt;
&lt;p&gt;To automate this process we can simply create a .BAT file that does the purging for us and assign this task to be executed via the Windows Scheduler at pre-defined intervals.&lt;/p&gt;
&lt;p&gt;For the weekly backups we can purge related information weekly and for the monthly backups we can purge on a quarterly basis.&lt;/p&gt;
&lt;p&gt;Here is an example of a .BAT script that could be run weekly to purge data older than 30-days.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
forfiles /P c:\ /M *backup.zip /D -30 /C "cmd /C del @file"&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Here is an example of a .BAT script that could be run monthly to purge data older than 90-days.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
forfiles /P c:\ /M *backup.zip /D -90 /C "cmd /C del @file"&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;In this next example we are using 'forfiles' to maintain log files to a safe level.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
forfiles /P d:\logs /S /M *.log /D -30 /C "cmd /C del @file"&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;So what does the above really mean?  Basically speaking we are telling forfiles to begin at the path (/P) of d:\logs then recursively (/S) search the directory for files identified as *.log (/M *.log).  It then goes on to check for files being dated 30 days or older (/D -30) and run from the command line (/C "cmd) the specified command for each file (/C del @file"), in this case the delete command.&lt;/p&gt;
&lt;p&gt;To re-iterate here we have a script that is designed to recursively search the log directory for files named *.log (where * indicates a wildcard) and providing they are more than 30 days old delete them.&lt;/p&gt;
&lt;p&gt;Naturally this example is aimed at maintaining a directory of logs to a sufficient level that it does not choke the drive on which it resides.  It you only have a single logical drive, the default c:\ for example, filling this drive with log files that are rotated daily or backup archives created at a regular interval spells trouble at some point!  &lt;/p&gt;
&lt;p&gt;By utilising the 'forfiles' application you are able to maintain a healthy level of files on your system without sacrificing the availability of your system/applications and or backup data.&lt;/p&gt;
&lt;p&gt;I hope this page has helped you gain an understanding into what is a great way for maintaing file systems to appropriate levels.  If anyone has any other great uses for this tool please let me know.&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=ZGsHEG1n00g:Mcght16gkB4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=ZGsHEG1n00g:Mcght16gkB4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=ZGsHEG1n00g:Mcght16gkB4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=ZGsHEG1n00g:Mcght16gkB4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=ZGsHEG1n00g:Mcght16gkB4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=ZGsHEG1n00g:Mcght16gkB4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?a=ZGsHEG1n00g:Mcght16gkB4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts?i=ZGsHEG1n00g:Mcght16gkB4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Poscribes-Apache-PHP_and_MySQL-Tips_and_Scripts/~4/ZGsHEG1n00g" height="1" width="1"/&gt;</description>
 <comments>http://www.poscribes.com/using_forfiles_in_a_BAT_script_to_purge_old_data_on_windows#comments</comments>
 <category domain="http://www.poscribes.com/categories/desktop">desktop</category>
 <category domain="http://www.poscribes.com/categories/howto">howto</category>
 <category domain="http://www.poscribes.com/categories/scripts">scripts</category>
 <category domain="http://www.poscribes.com/categories/server">server</category>
 <category domain="http://www.poscribes.com/categories/tools">tools</category>
 <category domain="http://www.poscribes.com/categories/windows">windows</category>
 <pubDate>Fri, 13 Nov 2009 16:25:34 +0000</pubDate>
 <dc:creator>devans</dc:creator>
 <guid isPermaLink="false">874 at http://www.poscribes.com</guid>
<feedburner:origLink>http://www.poscribes.com/using_forfiles_in_a_BAT_script_to_purge_old_data_on_windows</feedburner:origLink></item>
</channel>
</rss>
