Guest User

Untitled

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