Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Error pages: Difference between revisions

From MoodleDocs
mNo edit summary
Line 34: Line 34:
<code>
<code>
DirectoryIndex disabled
DirectoryIndex disabled
ErrorDocument 404 /error/index.php
ErrorDocument 403 /error/index.php
</code>
</code>



Revision as of 01:13, 20 May 2020

This page is for any Moodle admins or developers who want to setup or customize error pages on their Moodle site. There is a variety of ways different errors can happen at different layers in a Moodle stack and because they each happen under different circumstance there cannot be a single way of handling them.

404 Normal Moodle errors and exceptions

These types of errors are things like you tried to access a course which no longer exists, or access a course which you don't have access to. Because these are "Moodle" pages they are themed correctly and normally there isn't much you want to do to improve them.

If you want to change the wording of the errors see:

https://docs.moodle.org/en/Language_customisation

If you want to change the theme, that is one and the same as normal theme customization:

https://docs.moodle.org/dev/Themes_overview

If a Moodle page throws an exception which isn't captured and results in an error page, and it will also helpfully, but blindly, link into this Moodle wiki where you might find more information on the error. This is great for sites in development or for admin type errors but typically less useful. You may want to divert users to your own support instead of off into a wiki page with generic Moodle information.

This links behavior can be changed and removed in your admin settings here:

/admin/settings.php?section=documentation

https://docs.moodle.org/dev/Exceptions

You can also simply hide the links using a capability too:

https://docs.moodle.org/38/en/Linking_Moodle_and_Docs#Removing_Moodle_Docs_links_for_teachers

403 Forbidden - Web server errors

For additional security you should not allow access to directory listings and you can also block access to certain files.

For more security you can serve a 404 instead of a 403, and if you prefer you can reuse the themed 404 page below.

Apache

DirectoryIndex disabled ErrorDocument 403 /error/index.php

https://httpd.apache.org/docs/2.4/mod/mod_dir.html#directoryindex

404 File not found - Web server errors

These are for errors which are technically outside of moodle such a 404 file not found at the server level rather than a 404 served by moodle. If you want to theme these the same as you normally would for anything non Moodle, but there is another option to send 404's to a Moodle themed php page so it gets the theming for free. You can see an example of what this error page looks like here:

https://moodle.org/errors/

Apache

You can configure this using: ErrorDocument 404 /error/index.php

nginx

error_page 404 /error/index.php;

502 Bad Gateway - Proxy / CDN issues

This means some upstream of your moodle server could not connect, ie nginx, varnish, a load balancer, proxy or CDN.

These error pages cannot be themed by at the application level and how to customize them depends on what is proxing moodle.

NOTE: It is very important if you do customize these to make sure you are not overriding the 40x and 50x error pages that Moodle may serve.

503 Service unavailable - Fatal Moodle bootstrap errors

TBA

These types of errors are more fundamental, and something has gone wrong so Moodle itself can't load, which means the error page can't access the database, MUC, or the language and strings API.

These are difficult to style, and there are many edge cases to capture. This should get fixed in this tracker:

https://tracker.moodle.org/browse/MDL-56041

503 Moodle under maintenance - Maintenance mode

During maintenance mode Moodle will serve a "503 Service Unavailable". This page can be customized:

https://docs.moodle.org/38/en/Maintenance_mode#CLI_maintenance_mode