<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>AskApache</title>
	<atom:link href="https://www.askapache.com/feed/?specfeedburner=feedburner" rel="self" type="application/rss+xml"/>
	<link/>
	<description>Advanced Web Development</description>
	<lastBuildDate>Thu, 13 Aug 2026 07:22:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
		<itunes:explicit>no</itunes:explicit><itunes:subtitle>Advanced Web Development</itunes:subtitle><item>
		<title>Htaccess Mod_Rewrite – Crazy Advanced Master Class</title>
		<link>https://www.askapache.com/htaccess/crazy-advanced-mod_rewrite-tutorial/</link>
					<comments>https://www.askapache.com/htaccess/crazy-advanced-mod_rewrite-tutorial/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Tue, 03 Mar 2026 18:55:32 +0000</pubDate>
				<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[RewriteCond]]></category>
		<category><![CDATA[RewriteRule]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=1209</guid>

					<description><![CDATA[<p><a href="https://www.askapache.com/htaccess/mod_rewrite-tips-and-tricks/"><img src="https://www.askapache.com/s/u.askapache.com/2008/09/gnu_logo11-545x500.jpg" alt="" width="545" height="500" /></a><strong>htaccess rewrite</strong> Master Class!  If you understand the basics of mod_rewrite, or if you literally write the mod_rewite.c code, this article will transform your thinking.  The transformation is profound. Deeply effective.  Culmination of the best of the best mod_rewrite tricks for understanding and learning exactly what rewrite is doing.<br class="C" /></p>
<p>The post <a href="https://www.askapache.com/htaccess/crazy-advanced-mod_rewrite-tutorial/">Htaccess Mod_Rewrite &#8211; Crazy Advanced Master Class</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/htaccess/crazy-advanced-mod_rewrite-tutorial/feed/</wfw:commentRss>
			<slash:comments>48</slash:comments>
		
		
			</item>
		<item>
		<title>Chmod, Umask, Stat, Fileperms, and File Permissions</title>
		<link>https://www.askapache.com/security/chmod-stat/</link>
					<comments>https://www.askapache.com/security/chmod-stat/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Tue, 17 Feb 2026 11:16:56 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[File Permissions]]></category>
		<category><![CDATA[umask]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=1800</guid>

					<description><![CDATA[<p><a class="IFL" id="id8" href="https://www.askapache.com/security/chmod-umask-fileperms-stat-tricks/"></a>Unix file permissions are one of the more difficult subjects to grasp.. Well, ok maybe "grasp" isn't the word.. Master is the right word.. Unix file permissions is a hard topic to fully master, mainly I think because there aren't many instances when a computer user encounters them seriously, and bitwise is oldschool.  This contains a listing of all possible permission masks and bits from a linux, php, and web hosting view.... cuz you guys <em>AskApache Regs</em> Rock! <br class="C" /></p>
<p>The post <a href="https://www.askapache.com/security/chmod-stat/">Chmod, Umask, Stat, Fileperms, and File Permissions</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/security/chmod-stat/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
			</item>
		<item>
		<title>PHP fsockopen for FAST DNS lookups over UDP</title>
		<link>https://www.askapache.com/php/php-fsockopen-dns-udp/</link>
					<comments>https://www.askapache.com/php/php-fsockopen-dns-udp/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Wed, 28 Jan 2026 18:03:39 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[fsockopen]]></category>
		<category><![CDATA[gethostbyaddr]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[OpenDNS]]></category>
		<category><![CDATA[socket]]></category>
		<category><![CDATA[udp]]></category>
		<category><![CDATA[UltraDNS]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=8835</guid>

					<description><![CDATA[<p>While reading up on gethostbyaddr on PHP.net, I saw a nice idea for using fsockopen to connect over UDP port 53 to any Public DNS server, like Google DNS <code>8.8.8.8</code>, and sending the reverse addr lookup in oh about 100 bytes, then getting the response in oh about 150 bytes!  All in less than a second.  This is how/why to read/write data directly to the wire!  This would be extremely valuable for use in things like my <a href="https://www.askapache.com/online-tools/http-headers-tool/">online header tool</a> because it's faster than any other method.  As usual, I went a bit overboard optimizing it to be lean and fast.</p>
<p>The post <a href="https://www.askapache.com/php/php-fsockopen-dns-udp/">PHP fsockopen for FAST DNS lookups over UDP</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/php/php-fsockopen-dns-udp/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Advanced Windows Batch File Scripting</title>
		<link>https://www.askapache.com/windows/advanced-batch-scripting/</link>
					<comments>https://www.askapache.com/windows/advanced-batch-scripting/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Thu, 05 Jun 2025 18:14:02 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Batch File]]></category>
		<category><![CDATA[Batch Scripting]]></category>
		<category><![CDATA[Command Prompt]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=4577</guid>

					<description><![CDATA[<p><a class="IFL" href="https://www.askapache.com/windows/advanced-batch-scripting/"><img src="https://www.askapache.com/s/u.askapache.com/2010/09/windows-batch-file-example-116x45.png" alt="Windows Batch Programming Example" title="Windows Batch Programming Example" width="116" height="45" /></a>If for some reason you need to use windows .bat batch file scripting to do some task, or you just want to learn the most universal batch programming language on Windows machines, you lucked out and found the AskApache example.  My expertise is the shell, in this article the shell is Windows <code>cmd.exe</code>.  It has some pretty advanced windows shell usage, including pipes and redirection, but it's the modular linux-like coding approach that earns this script it's "advanced" title.</p>
<pre>:SETPROMPT
set PROMPT=$_[%USERNAME%@%USERDOMAIN%]$S[$P]$_$M$G &#38;&#38; EXIT /B</pre>
<p><a class="IFL" href="https://www.askapache.com/s/u.askapache.com/2010/09/Untitled-1.png"><img src="https://www.askapache.com/s/u.askapache.com/2010/09/Untitled-1-116x38.png" alt="Create an AT job to run as system in Notepad++ IDE" title="Create an AT job to run as system in Notepad++ IDE" width="116" height="38" class="size-thumbnail wp-image-4618" /></a>My favorite tool (and I've tried sooo many) for editing most Windows files and especially .bat files is the free and open-source <a href="http://notepad-plus-plus.org/">Notepad++</a>.  Set that up and you will have a color-syntax-highlighted editor for Batch Scripting that works very very well.<br class="C" /></p>
<p>The post <a href="https://www.askapache.com/windows/advanced-batch-scripting/">Advanced Windows Batch File Scripting</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/windows/advanced-batch-scripting/feed/</wfw:commentRss>
			<slash:comments>37</slash:comments>
		
		
			</item>
		<item>
		<title>Crazy POWERFUL Bash Prompt</title>
		<link>https://www.askapache.com/linux/bash-power-prompt/</link>
					<comments>https://www.askapache.com/linux/bash-power-prompt/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Mon, 06 Jan 2025 20:02:34 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Prompt]]></category>
		<category><![CDATA[PROMPT_COMMAND]]></category>
		<category><![CDATA[PS1]]></category>
		<category><![CDATA[sed]]></category>
		<category><![CDATA[ssh]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=4069</guid>

					<description><![CDATA[<p><a class="IFL" href='https://www.askapache.com/linux/bash-power-prompt/' title='bash power prompt PS1'><img width="350" height="65" src="https://www.askapache.com/s/u.askapache.com/2010/03/bash-power-prompt-ps1-350x65.png" class="attachment-thumbnail" alt="bash power prompt PS1" title="bash power prompt PS1" /></a>This <a href='https://www.askapache.com/linux/bash-power-prompt/' title='amazing bash linux prompt'>amazing bash linux prompt</a> does more than meets the eye.  If you want to know how to become really good with technology, linux is the secret sauce behind the AskApache articles.  Open Source is elixir of the web.  Thanks to everyone who helped me for the past 20 years.  <strong>I use linux/bsd</strong> because <strong>homey don't play</strong>, so this is geared to be as productive a prompt as I can make it.</p>
<p><strong>Don't have much time.. or just don't care?</strong> Not a problem, here are the 3 lines to copy and paste - you can just paste them right in your shell to test it, or add to a startup script.<br class="C" /></p>
<pre style='font-size:8px'>export AA_P="export PVE=\"\\033[m\\033[38;5;2m\"\$(( \`sed -n \"s/MemFree:[\\t ]\\+\\([0-9]\\+\\) kB/\\1/p\" /proc/meminfo\` / 1024 ))\"\\033[38;5;22m/\"\$((\`sed -n \"s/MemTotal:[\\t ]\\+\\([0-9]\\+\\) kB/\\1/p\" /proc/meminfo\`/ 1024 ))MB\"\\t\\033[m\\033[38;5;55m\$(&#60; /proc/loadavg)\\033[m\";echo -en \"\""
export PROMPT_COMMAND="history -a;((\$SECONDS % 10==0 ))&#38;&#38;eval \"\$AA_P\";echo -en \"\$PVE\";"
export PS1="\\[\\e[m\\n\\e[1;30m\\][\$\$:\$PPID \\j:\\!\\[\\e[1;30m\\]]\\[\\e[0;36m\\] \\T \\d \\[\\e[1;30m\\][\\[\\e[1;34m\\]\\u@\\H\\[\\e[1;30m\\]:\\[\\e[0;37m\\]\${SSH_TTY} \\[\\e[0;32m\\]+\${SHLVL}\\[\\e[1;30m\\]] \\[\\e[1;37m\\]\\w\\[\\e[0;37m\\] \\n(\$SHLVL:\\!)\\\$ " &#38;&#38; eval $AA_P</pre>
<p>The post <a href="https://www.askapache.com/linux/bash-power-prompt/">Crazy POWERFUL Bash Prompt</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/linux/bash-power-prompt/feed/</wfw:commentRss>
			<slash:comments>15</slash:comments>
		
		
			</item>
		<item>
		<title>View Your Server Environment Variables using Htaccess Mod_Rewrite</title>
		<link>https://www.askapache.com/htaccess/view-server-environment-variables-htaccess-modrewrite/</link>
					<comments>https://www.askapache.com/htaccess/view-server-environment-variables-htaccess-modrewrite/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Wed, 04 Sep 2024 17:48:10 +0000</pubDate>
				<category><![CDATA[Htaccess]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=5263</guid>

					<description><![CDATA[<p><img class="IFL" src="https://www.askapache.com/s/u.askapache.com/2011/10/response-header1-116x116.png" alt="Firebug Net view of Request Headers added to Response Headers with Htaccess" width="116" height="116" class="alignnone size-thumbnail wp-image-5266" />Get your real server info<br class="C" /></p>
<p>The post <a href="https://www.askapache.com/htaccess/view-server-environment-variables-htaccess-modrewrite/">View Your Server Environment Variables using Htaccess Mod_Rewrite</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/htaccess/view-server-environment-variables-htaccess-modrewrite/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>.htaccess Examples: Cookies, Variables, Custom Headers</title>
		<link>https://www.askapache.com/htaccess/htaccess-fresh/</link>
					<comments>https://www.askapache.com/htaccess/htaccess-fresh/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Sat, 03 Aug 2024 02:45:29 +0000</pubDate>
				<category><![CDATA[Htaccess]]></category>
		<guid isPermaLink="false">https://www.askapache.com/htaccess/htaccess-fresh/</guid>

					<description><![CDATA[<p><a class="IFL" href='https://www.askapache.com/htaccess/htaccess-fresh/' title='Cookie Manipulation in .htaccess with RewriteRule'><img src='https://www.askapache.com/s/u.askapache.com/2007/10/cookies.png' alt='Cookie Manipulation in .htaccess with RewriteRule' /></a><strong>Fresh <a href="https://www.askapache.com/htaccess/">.htaccess</a> code</strong> for you!  Check out the Cookie Manipulation and environment variable usage with mod_rewrite!  I also included a couple Mod_Security .htaccess examples.  <strong>Enjoy!</strong><br class="C" /></p>
<p>Originally Posted: 3/29/2008</p>
<p>The post <a href="https://www.askapache.com/htaccess/htaccess-fresh/">.htaccess Examples: Cookies, Variables, Custom Headers</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/htaccess/htaccess-fresh/feed/</wfw:commentRss>
			<slash:comments>14</slash:comments>
		
		
			</item>
		<item>
		<title>Hacking VLAN switched networks</title>
		<link>https://www.askapache.com/hacking/hacking-vlan-switched-networks/</link>
					<comments>https://www.askapache.com/hacking/hacking-vlan-switched-networks/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Fri, 02 Aug 2024 06:27:11 +0000</pubDate>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=541</guid>

					<description><![CDATA[<p><a  class="IFL" href='https://www.askapache.com/s/u.askapache.com/2008/03/vlan-bypass.jpg'><img src="https://www.askapache.com/s/u.askapache.com/2008/03/vlan-bypass-150x150.jpg" alt="Bypassing VLAN security on networked switches" title="Bypassing VLAN security on networked switches" width="150" height="150" /></a>There isn't much vlan info on the net in terms of specifics and I had to learn all about it because I needed to log in to a switch that was on a different vlan. With the help of the Ettercap developers NaGA and ALoR I figured it out.<br class="C" /></p>
<p>Originally Posted: 3/30/2004</p>
<p>The post <a href="https://www.askapache.com/hacking/hacking-vlan-switched-networks/">Hacking VLAN switched networks</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/hacking/hacking-vlan-switched-networks/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Apache Compression, Vary, mod_deflate</title>
		<link>https://www.askapache.com/optimize/mod_deflate-compression-vary/</link>
					<comments>https://www.askapache.com/optimize/mod_deflate-compression-vary/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Sat, 23 Apr 2022 01:49:47 +0000</pubDate>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[httpd.conf]]></category>
		<category><![CDATA[mod_deflate]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=10431</guid>

					<description><![CDATA[<p><a href="https://www.askapache.com/optimize/mod_deflate-compression-vary/" title="Setting up Apache Compression in Htaccess and Httpd.conf files"><img src="https://www.askapache.com/s/u.askapache.com/2022/04/mod_deflate-apache-compression.png" alt="Apache mod_deflate module" style="max-width:90%" /></a><br class="C" /></p>
<p>The post <a href="https://www.askapache.com/optimize/mod_deflate-compression-vary/">Apache Compression, Vary, mod_deflate</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/optimize/mod_deflate-compression-vary/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Respond with 200 OK for 404 Not Found</title>
		<link>https://www.askapache.com/htaccess/send-200-ok-response-404-not-found-htaccess/</link>
					<comments>https://www.askapache.com/htaccess/send-200-ok-response-404-not-found-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Thu, 14 Apr 2022 20:36:54 +0000</pubDate>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[ErrorDocument]]></category>
		<category><![CDATA[Redirect]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=7994</guid>

					<description><![CDATA[<p><a class="IFL" href="https://www.askapache.com/htaccess/send-200-ok-response-404-not-found-htaccess/"><img src="https://www.askapache.com/s/u.askapache.com/2022/04/wide.jpeg" alt="Htaccess Wizard" width="250" height="130" /></a>What if you'd like to send a <em>200 OK</em> response instead of the default <em>404 Not Found</em> response using Apache <code>.htaccess</code> files or<code> httpd.conf</code>? One use would be to make sure upstream caches cache any request on an api server, as 404's are not cached.<br class="C" /></p>
<p>The post <a href="https://www.askapache.com/htaccess/send-200-ok-response-404-not-found-htaccess/">Respond with 200 OK for 404 Not Found</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/htaccess/send-200-ok-response-404-not-found-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Libcurl Error Codes</title>
		<link>https://www.askapache.com/php/libcurl-error-codes/</link>
					<comments>https://www.askapache.com/php/libcurl-error-codes/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Fri, 30 Apr 2021 06:37:16 +0000</pubDate>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cURL]]></category>
		<category><![CDATA[Error]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=450</guid>

					<description><![CDATA[<p><a href="https://www.askapache.com/php/libcurl-error-codes/"><img src="https://www.askapache.com/s/u.askapache.com/2008/01/curl-libcurl-150x110.jpg" alt="" width="150" height="110" class="alignnone size-thumbnail wp-image-478" /></a></p>
<p>The post <a href="https://www.askapache.com/php/libcurl-error-codes/">Libcurl Error Codes</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/php/libcurl-error-codes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google Trends for SEO / Apache Htaccess</title>
		<link>https://www.askapache.com/htaccess/google-trends-seo-apache-htaccess/</link>
					<comments>https://www.askapache.com/htaccess/google-trends-seo-apache-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Fri, 30 Apr 2021 06:26:25 +0000</pubDate>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Google Trends]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=10225</guid>

					<description><![CDATA[<p>.htaccess Topic vs htaccess Keyword</p>
<p><script type="text/javascript" src="https://ssl.gstatic.com/trends_nrtr/2431_RC04/embed_loader.js"></script> <script type="text/javascript"> trends.embed.renderExploreWidget("TIMESERIES", {"comparisonItem":[{"keyword":"/m/02pdtl","geo":"","time":"today 5-y"},{"keyword":"htaccess","geo":"","time":"today 5-y"}],"category":0,"property":""}, {"exploreQuery":"date=today%205-y&#038;q=%2Fm%2F02pdtl,htaccess","guestPath":"https://trends.google.com:443/trends/embed/"}); </script></p>
<p>The post <a href="https://www.askapache.com/htaccess/google-trends-seo-apache-htaccess/">Google Trends for SEO / Apache Htaccess</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/htaccess/google-trends-seo-apache-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ListOfErrors</title>
		<link>https://www.askapache.com/apache/listoferrors/</link>
					<comments>https://www.askapache.com/apache/listoferrors/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Sat, 16 May 2020 07:51:36 +0000</pubDate>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[2.4]]></category>
		<category><![CDATA[Error]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=9977</guid>

					<description><![CDATA[<p>The post <a href="https://www.askapache.com/apache/listoferrors/">ListOfErrors</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/apache/listoferrors/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Apache 2.4 and PHP-FPM</title>
		<link>https://www.askapache.com/hosting/apache-2-4-and-php-fpm/</link>
					<comments>https://www.askapache.com/hosting/apache-2-4-and-php-fpm/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Sat, 16 May 2020 07:49:23 +0000</pubDate>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php-fpm]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=9935</guid>

					<description><![CDATA[<p>The post <a href="https://www.askapache.com/hosting/apache-2-4-and-php-fpm/">Apache 2.4 and PHP-FPM</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/hosting/apache-2-4-and-php-fpm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>GRUB_INIT_TUNE – Play sound through pcspkr</title>
		<link>https://www.askapache.com/linux/grub_init_tune-play-sound-through-pcspkr/</link>
					<comments>https://www.askapache.com/linux/grub_init_tune-play-sound-through-pcspkr/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Sat, 04 Apr 2020 04:34:45 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[GRUB]]></category>
		<category><![CDATA[GRUB_INIT_TUNE]]></category>
		<category><![CDATA[grub.cfg]]></category>
		<category><![CDATA[speaker]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=10313</guid>

					<description><![CDATA[<p><a class="IFL" href="https://www.askapache.com/linux/grub_init_tune-play-sound-through-pcspkr/"><img src="https://www.askapache.com/s/u.askapache.com/2020/04/91_tunes-for-grub-1024x501.png" alt="" width="640" height="313" /></a>Play a tune directly on your pcspeaker right before the grub boot manager loads.<br class="C" /></p>
<p>The post <a href="https://www.askapache.com/linux/grub_init_tune-play-sound-through-pcspkr/">GRUB_INIT_TUNE &#8211; Play sound through pcspkr</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/linux/grub_init_tune-play-sound-through-pcspkr/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>MariaDB with LZ4 Compression Howto for CentOS</title>
		<link>https://www.askapache.com/linux/mariadb-lz4-compression-howto-centos/</link>
					<comments>https://www.askapache.com/linux/mariadb-lz4-compression-howto-centos/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Fri, 24 Jan 2020 19:13:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[InnoDB]]></category>
		<category><![CDATA[lz4]]></category>
		<category><![CDATA[MariaDB]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=10022</guid>

					<description><![CDATA[<p>I really really wanted to run the latest MariaDB with LZ4 Page Compression.. it is a game changer for many types of large databases I deal with.   So I compiled it manually in a way that is repeatable and follows best-practices and it's now powering this site.  Now I can use InnoDB Page Compression with lzo, lzma, bzip2, snappy, or my favorite algorithm: LZ4.</p>
<p><a href="https://www.askapache.com/linux/mariadb-lz4-compression-howto-centos/" class="CENT cent"><img src="https://www.askapache.com/s/u.askapache.com/2019/09/mariadb.jpg" alt="" width="663" height="356" class="CENT cent" /></a></p>
<p>Thought this would be a good chance to post a howto, and show that there is a lot you can do by compiling software yourself and breaking the package management one-click install shackles.</p>
<p>The post <a href="https://www.askapache.com/linux/mariadb-lz4-compression-howto-centos/">MariaDB with LZ4 Compression Howto for CentOS</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/linux/mariadb-lz4-compression-howto-centos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Serving WebP images for PNG and JPG files</title>
		<link>https://www.askapache.com/htaccess/serving-webp-images-for-png-jpg/</link>
					<comments>https://www.askapache.com/htaccess/serving-webp-images-for-png-jpg/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Thu, 31 Oct 2019 00:44:00 +0000</pubDate>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[accept]]></category>
		<category><![CDATA[Header]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[RewriteCond]]></category>
		<category><![CDATA[RewriteRule]]></category>
		<category><![CDATA[vary]]></category>
		<category><![CDATA[webp]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=10084</guid>

					<description><![CDATA[<p><a class="IFL" href="https://www.askapache.com/s/u.askapache.com/2016/10/htaccess-webp-1.png"><img src="https://www.askapache.com/s/u.askapache.com/2016/10/htaccess-webp-1.png" alt="htaccess-webp"></a>One of the biggest speed bottlenecks of sites today are images, specifically unoptimized images or large scaled images.  With Apaches Rewrite module we can convert all existing jpegs and png files (and most gifs) to webp, then transparently rewrite them so that a request for img.png from a browser that supports webp will receive img.webp.<br class="C" /></p>
<p>The post <a href="https://www.askapache.com/htaccess/serving-webp-images-for-png-jpg/">Serving WebP images for PNG and JPG files</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/htaccess/serving-webp-images-for-png-jpg/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Internet Census 2012 – Port scanning using insecure embedded devices – Carna Botnet</title>
		<link>https://www.askapache.com/hacking/internet-census-2012-port-scanning-using-insecure-embedded-devices-carna-botnet/</link>
					<comments>https://www.askapache.com/hacking/internet-census-2012-port-scanning-using-insecure-embedded-devices-carna-botnet/#respond</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Mon, 22 Jul 2019 05:41:30 +0000</pubDate>
				<category><![CDATA[Hacking]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=8206</guid>

					<description><![CDATA[<p><a class="IFL" href="https://www.askapache.com/hacking/internet-census-2012-port-scanning-using-insecure-embedded-devices-carna-botnet/"><img src="https://www.askapache.com/s/u.askapache.com/2013/03/hilbert_icmp_map-600x480.png" alt="" /></a>While playing around with the Nmap Scripting Engine (NSE) we discovered an amazing number of open embedded devices on the Internet. Many of them are based on Linux and allow login to standard BusyBox with empty or default credentials. We used these devices to build a distributed port scanner to scan all IPv4 addresses. These scans include service probes for the most common ports, ICMP ping, reverse DNS and SYN scans. We analyzed some of the data to get an estimation of the IP address usage.<br class="C" /></p>
<p>The post <a href="https://www.askapache.com/hacking/internet-census-2012-port-scanning-using-insecure-embedded-devices-carna-botnet/">Internet Census 2012 &#8211; Port scanning using insecure embedded devices &#8211; Carna Botnet</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/hacking/internet-census-2012-port-scanning-using-insecure-embedded-devices-carna-botnet/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Advanced WordPress wp-config.php Tweaks</title>
		<link>https://www.askapache.com/wordpress/advanced-wp-config-php-tweaks/</link>
					<comments>https://www.askapache.com/wordpress/advanced-wp-config-php-tweaks/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Sat, 03 Mar 2018 08:23:37 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp-config.php]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=3341</guid>

					<description><![CDATA[<p>The bottom line for this article is that I want to make WordPress as fast, secure, and easy to install, run, and manage because I am using it more and more for client production sites, I will work for days in order to solve an issue so that I never have to spend time on that issue again. Time is money in this industry and that is ultimately (time) what there is to gain by tweaking WordPress.</p>
<p class="cnote"><strong>Note:</strong> I spent no time on readability, this is primarily a read the code and figure it out article.. This is for advanced users looking for a reference or discussion and for those of you looking to advance.  Feedback would be great <em>if you make it that far..</em></p>
<p>The post <a href="https://www.askapache.com/wordpress/advanced-wp-config-php-tweaks/">Advanced WordPress wp-config.php Tweaks</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/wordpress/advanced-wp-config-php-tweaks/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress .htaccess in-depth</title>
		<link>https://www.askapache.com/htaccess/wordpress-htaccess-in-depth/</link>
					<comments>https://www.askapache.com/htaccess/wordpress-htaccess-in-depth/#comments</comments>
		
		<dc:creator><![CDATA[AskApache]]></dc:creator>
		<pubDate>Fri, 05 Jan 2018 03:42:34 +0000</pubDate>
				<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.askapache.com/?p=264</guid>

					<description><![CDATA[<p><a class="IFL" href="https://www.askapache.com/htaccess/wordpress-htaccess-in-depth/"><img src="https://www.askapache.com/s/u.askapache.com/2012/11/permalinks-300x253.png" alt="WordPress Permalinks" title="WordPress Permalinks" width="300" height="253" class="alignnone size-medium wp-image-7342" /></a>WordPress uses a file named <code>.htaccess</code> to rewrite all requests to the main <code>index.php</code> file.  This article explains what the htaccess file rules look like and what they actually do.<br class="C" /></p>
<p>The post <a href="https://www.askapache.com/htaccess/wordpress-htaccess-in-depth/">WordPress .htaccess in-depth</a> appeared first on <a href="https://www.askapache.com">AskApache</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.askapache.com/htaccess/wordpress-htaccess-in-depth/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>