Advertisement
Virajsinh

Localhost phpmyadmin Database Access Local Area Network

Aug 27th, 2022
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Reference Link
  2. -----------------
  3. https://stackoverflow.com/questions/5524116/accessing-localhost-xampp-from-another-computer-over-lan-network-how-to
  4. https://stackoverflow.com/questions/16813138/how-connect-to-phpmyadmin-from-other-hosts
  5.  
  6. Step 1 : Open XAMPP Controller
  7. Step 2 : Apache > Config > httpd-xampp.conf
  8. Step 3 :
  9. <Directory "C:/xampp/phpMyAdmin">
  10. Options Indexes FollowSymLinks MultiViews
  11. AllowOverride all
  12. #Require local
  13. ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
  14. Require all granted
  15. #Allow from 127.0.0.1 // User For Specific IP To Access
  16. #Allow from localhost ::1 127.0.0.1
  17. </Directory>
  18. Step 4 : Save File And Restart Apache.
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement