<?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>Hello Thupten &#187; &#187; phpmyadmin</title>
	<atom:link href="https://www.thupten.feedback/tag/phpmyadmin/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.thupten.feedback</link>
	<description>Just another developer&#039;s blog</description>
	<lastBuildDate>Fri, 08 May 2026 23:50:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.2</generator>
	<item>
		<title>Block access to phpmyadmin from LAN network on Xampp</title>
		<link>https://www.thupten.feedback/2013/11/24/block-access-to-phpmyadmin-from-lan-network-on-xampp/</link>
		<comments>https://www.thupten.feedback/2013/11/24/block-access-to-phpmyadmin-from-lan-network-on-xampp/#respond</comments>
		<pubDate>Sun, 24 Nov 2013 23:59:45 +0000</pubDate>
		<dc:creator><![CDATA[thupten]]></dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.hellothupten.com/?p=538</guid>
		<description><![CDATA[Xampp on windows is set to allow phpmyadmin from your local network. To disable access from your network, Open httpd-xampp.conf located in xampp-folder\apache\conf\extra\httpd-xampp.conf Somewhere down in the bottom of this configuration file is the LocationMatch node Even though you would think the default Order is set to deny, allow with Deny from all. This configuration [&#8230;]]]></description>
				<content:encoded><![CDATA[Xampp on windows is set to allow phpmyadmin from your local network. To disable access from your network, Open <code>httpd-xampp.conf</code> located in <code>xampp-folder\apache\conf\extra\httpd-xampp.conf</code>

Somewhere down in the bottom of this configuration file is the LocationMatch node

Even though you would think the default Order is set to deny, allow with Deny from all. This configuration by default is set to Allow from 192.168.0.#. Remove this ip range and you are set.
<span id="more-538"></span>
Change this
<pre><code>
&lt;LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))"&gt;
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 \
fc00::/7 10.0.0.0/8 172.16.0.0/12 <b>192.168.0.0/16</b> \
fe80::/10 169.254.0.0/16

ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
&lt;/LocationMatch&gt;
</code></pre>

To this
<pre><code>
&lt;LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))"&gt;
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 \
fc00::/7 10.0.0.0/8 172.16.0.0/12 \
fe80::/10 169.254.0.0/16

ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
&lt;/LocationMatch&gt;
</code></pre>


Don&#8217;t forget to restart Apache. Now <code>http://localhost/myphpadmin</code> will result 403 Forbidden error.]]></content:encoded>
			<wfw:commentRss>https://www.thupten.feedback/2013/11/24/block-access-to-phpmyadmin-from-lan-network-on-xampp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
