Skip to content

Instantly share code, notes, and snippets.

View YaroslavVlasenko's full-sized avatar

Yaroslav YaroslavVlasenko

View GitHub Profile
@odan
odan / xampp_php7_xdebug.md
Last active October 13, 2025 22:45
Installing Xdebug for XAMPP
@v1shwa
v1shwa / apache-permission.sh
Last active March 6, 2025 09:55
Ubuntu: Fix for Permissions denied on /var/www/html
# 1. Change owner of /var/www/html directory to apache user, here: www-data
sudo chown -R www-data:www-data /var/www/html
# 2. Allow Group to edit
sudo chmod -R 775 /var/www/html
# 3. Add yourself to apache group(www-data)
sudo usermod -a -G www-data ${USER}