Advertisement
Guest User

Untitled

a guest
Jan 25th, 2012
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Alias /phpmyadmin "c:/wamp/apps/phpmyadmin3.4.5/"
  2.  
  3. # to give access to phpmyadmin from outside
  4. # replace the lines
  5. #
  6. # Order Deny,Allow
  7. # Deny from all
  8. # Allow from 127.0.0.1
  9. #
  10. # by
  11. #
  12. # Order Allow,Deny
  13. # Allow from all
  14. #
  15.  
  16. <Directory "c:/wamp/apps/phpmyadmin3.4.5/">
  17. Options Indexes FollowSymLinks MultiViews
  18. AllowOverride all
  19. Order Deny,Allow
  20. Deny from all
  21. Allow from 127.0.0.1
  22. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement