Tuesday, May 01, 2018

How to fix Apache 2 not executing PHP files

sudo a2dismod mpm_event && sudo a2enmod mpm_prefork && sudo a2enmod php7.2

No comments:

Post a Comment

Git get all remote branches

git branch -r \ | grep -v '\->' \ | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \ | while read remote; do \ git branc...