aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/CHANGES.md5
-rw-r--r--doc/INSTALL.md4
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/CHANGES.md b/doc/CHANGES.md
index b6e901fa9..99aaf7c98 100644
--- a/doc/CHANGES.md
+++ b/doc/CHANGES.md
@@ -16,6 +16,11 @@
* The partial at `general/_before_head_end.rhtml` should be changed in the theme to include this stylesheet
* [issue #281](https://github.com/sebbacon/alaveteli/issues/281) fixes some bugs relating to display of internationalised emails. To fix any wrongly displayed emails, you'll need to run the script at `script/clear-caches` so that the caches can be regenerated
* During this release, a bug was discovered in pdftk 1.44 which caused it to loop forever. Until it's incorporated into an official release, you'll need to patch it yourself or use the Debian package compiled by mySociety (see link in [issue 305](https://github.com/sebbacon/alaveteli/issues/305))
+* Ensure you have values for new config variables (see `config/general.yml-example`):
+ * EXCEPTION_NOTIFICATIONS_FROM
+ * EXCEPTION_NOTIFICATIONS_TO
+* The recommended Varnish config has changed, so that we ignore more cookies. You should review your Varnish config with respect to the example at `config/varnish-alaveteli.vcl`.
+* Consider setting elinks global config as described in the "Troubleshooting" section of INSTALL.md
# Version 0.4
diff --git a/doc/INSTALL.md b/doc/INSTALL.md
index 963d0b6f0..b95534e4f 100644
--- a/doc/INSTALL.md
+++ b/doc/INSTALL.md
@@ -83,8 +83,8 @@ constraints whilst running the tests they also need to be a superuser.
The following command will set up a user 'foi' with password 'foi':
- echo "CREATE DATABASE foi_development encoding = 'SQL_ASCII';
- CREATE DATABASE foi_test encoding = 'SQL_ASCII';
+ echo "CREATE DATABASE foi_development encoding 'SQL_ASCII' template template0;
+ CREATE DATABASE foi_test encoding 'SQL_ASCII' template template0;
CREATE USER foi WITH CREATEUSER;
ALTER USER foi WITH PASSWORD 'foi';
ALTER USER foi WITH CREATEDB;