Skip to content

Instantly share code, notes, and snippets.

@barbwiredmedia
Created May 1, 2014 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barbwiredmedia/f916e343c1c6c6700fe6 to your computer and use it in GitHub Desktop.
Save barbwiredmedia/f916e343c1c6c6700fe6 to your computer and use it in GitHub Desktop.
Open XAMPP Windows to internal network. On http-xampp.conf add "Allow from all" after line 130 You will be able to acess directory from network IP. WIll have to restart server.
# Close XAMPP sites here
<LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8
Allow from all
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
http://stackoverflow.com/questions/6083323/error-when-trying-to-access-xampp-from-a-network
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment