Kali ini saya mencoba menginstall xampp ubuntu di VPV server. Dulu belum pernah menggunakan xampp di server, biasanya hanya install apache, mysql, dan phpmyadmin. Namun kali ini iseng saja untuk install xampp di vps.
Kendala pertama yaitu di phpmyadmin, tidak bisa di akses karena hanya tertulis local, dan saya edit di hhtpd-xampp.conf
letaknya di /opt/lampp/etc/extra
dengan mengganti text
Nothing worked for me but following thing was awesome:
1) Open
httpd-xampp.conf
which is at
/opt/lampp/etc/extra/
2) Find <Directory "/opt/lampp/phpmyadmin">
3) Now just add Require all granted before
4) So the code will look like this
<Directory "/opt/lampp/phpmyadmin">
AllowOverride AuthConfig Limit
Order allow,deny
Allow from all
Require all granted
</Directory>
5) Now finally Restart the xampp with this command /opt/lampp/lampp restart
That's it and you are Done!
It also work with xampp. :)