Menu

#1 Allow from all /

1.0
closed
rob
None
2020-04-18
2016-11-23
il--ya
No

I use older version of Apache (2.2.15) and I get the following error when I run installation script:
[Tue Nov 22 19:33:09 2016] [crit] [client xxx.xxx.xxx.xxx] configuration error: couldn't perform authentication. AuthType not set!: /install.php

Workaround (found on stackoverflow)
Modify <Directory/> in httpd.conf:

    <Directory />
        DirectoryIndex index.php
        Options Indexes
        <IfVersion < 2.4>
            Allow from all
        </IfVersion>
        <IfVersion >= 2.4>
            Require all granted
        </IfVersion>
    </Directory>

Also need to make sure that version module is loaded.

Please update your installatoin doc.

Discussion

  • rob

    rob - 2020-04-18
    • status: open --> closed
    • Milestone: 2.0 --> 1.0
     
  • rob

    rob - 2020-04-18

    This has been resolved in the most recent release.

     

Log in to post a comment.