A tiny update which fixes a database connection problem for installation using PostgreSQL lower than 9.1
If you are not in this case, the automatic update will run as usual.
If you are in this case, in order to do this very next automatic update, you have to follow this procedure:
- Open the file /inc/libs/clearbricks/dblayer/class.pgsql.php
- Insert a new line before the line number 103 and put the following code in this line, then save the file:
return;
You should have something like that:
/** @ignore */ private function db_post_connect($handle,$database) { return; $result = $this->db_query($handle,"SELECT * FROM pg_collation WHERE (collcollate LIKE '%.utf8')"); if($this->db_num_rows($result) > 0) { $this->db_result_seek($result, 0); $row = $this->db_fetch_assoc($result); $this->utf8_unicode_ci = '"'.$row['collname'].'"'; } }
This modification will give you again access to your installation.
In order to apply the automatic update, you will have, first, to install a specific plugin, FakeMeUp (available on the DotAddict website), which allow to bypass the control of modified files before update.
Once this plugin installed, make the update and when finished, disable or uninstall the FakeMeUp plugin, as you wish.
Your dashboard should also offer you to upgrade your installation today or tomorrow (depending on your settings). There's also a patch for the developers who prefer this method.
CHANGELOG of this release :
Dotclear 2.10.4 - 2016-11-02 =========================================================== * PostgreSQL < 9.1 fix