After login get “403 Forbidden”

A 403 error is usually caused by either a plugin, a corrupt .htaccess file (this isn’t the case since the installation is local) or wrong permission on crucial files. If you are running Linux, try to run this in your local shell:

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;