-
Bug
-
Resolution: Deferred
-
Minor
-
None
-
4.5.3
-
None
-
MOODLE_405_STABLE
Hello,
As a preliminary, Angie is a fork of Nginx, so it works absolutely in the same way.
When I try to setup Moodle on my angie webserver, going to the admin panels keeps triggering an unsupportedwebserver exception.
This is due to this code at line 854 of lib/setuplib.php :
} else if (stripos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false) { |
We can make it work totally safely by replacing it with :
} else if (stripos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false || |
stripos($_SERVER['SERVER_SOFTWARE'], 'angie') !== false) { |
- will be (partly) resolved by
-
MDL-83391 Remove hard-coded "support" for webservers
-
- Closed
-