I am now running through the installation steps (this should take about 30 seconds)
If you receive a fatal error, refresh this page to continue the installation
Line 174 in /var/www/silverstripe/postgresql/code/PostgreSQLDatabase.php
165 if(isset($_REQUEST['previewwrite']) && in_array(strtolower(substr($sql,0,strpos($sql,' '))), array('insert','update','delete','replace'))) { 166 Debug::message("Will execute: $sql"); 167 return; 168 } 169 170 if(isset($_REQUEST['showqueries'])) { 171 $starttime = microtime(true); 172 } 173 174 $handle = pg_query($this->dbConn, $sql); 175 176 if(isset($_REQUEST['showqueries'])) { 177 $endtime = round(microtime(true) - $starttime,4); 178 Debug::message("\n$sql\n{$endtime}ms\n", false); 179 } 180