V1 Troubleshooting Installation - jzohrab/lute GitHub Wiki


This documentation is deprecated/obsolete. Lute v2 has been replaced by Lute v3, a full Python rewrite. Please see the Lute v3 manual which includes notes on installation. If you have Lute v2, you can easily migrate to v3. Thank you!


Because tech is fun. Google is your friend when it comes to troubleshooting. :-P

Windows

Pre-check: I'm assuming you've faithfully followed the Lute XAMPP install docs:

  • file unzipped in C:/xampp/htdocs/lute_release/
  • DB_PASSWORD and DB_HOSTNAME set correctly
  • etc.

XAMPP, Access Denied

Googling "xampp access denied" returns a few promising-looking hits.

1. change <Directory /> to Require all granted

Per this:

Change

<Directory />
    AllowOverride none
    Require all denied
</Directory>

to

<Directory />
    AllowOverride none
    Require all granted
</Directory>

Restart Apache.

2. Add Require all granted to <Directory "C:/xampp/htdocs/lute_release/public">

Per this:

Add Require all granted under the Allow from all line:

    Allow from all
    Require all granted

Restart Apache.

⚠️ **GitHub.com Fallback** ⚠️