Skip to main content

Posts

Featured

[Ubuntu] Grant directory access on lampp

To use htdocs directory on lampp, you need to grant some access to current user. You can add user as owner on the htdocs directory use command : sudo chown $USER:<user> /opt/lampp/htdocs/ Example : sudo chown $USER:joe /opt/lampp/htdocs/ Than you need to add access using chmod, the command is: sudo chmod 755 /opt/lampp/htdocs/ Hope it solve the problem.

Latest Posts