- $CFG->wwwroot: http://example.com/moodle
- $CFG->alternateloginurl : /my/super/login.php
- Login url will be: http://example.com/moodle/my/super/login.php (moodle root based)
- ALTER DATABASE moodle SET search_path = 'moodle,public'; -- If you wish to use a default schema.
+* Database (DML) layer:
+ - new sql_equal() method available for places where case sensitive/insensitive varchar comparisons are required.
+ * PostgreSQL connections now use advanced options to reduce connection overhead. These options are not compatible
+ with some connection poolers. The dbhandlesoptions parameter has been added to allow the database to configure the
+ required defaults. The parameters that are required in the database are;
+ ALTER DATABASE moodle SET client_encoding = UTF8;
+ ALTER DATABASE moodle SET standard_conforming_strings = on;
++ ALTER DATABASE moodle SET search_path = 'moodle,public'; -- Optional, if you wish to use a custom schema.
+ You can set these options against the database or the moodle user who connects.
=== 3.1 ===