diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1c8bc32e254269b0e44b8470437787e95ad0684..61eb93b6f9498dd0951373b7214a0c3d85186b5c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,6 @@
 Upcoming version:
 -----------------
+  - changed location of datasets on dbis-informatik (srid used as suffix now) (Nikolaus Krismer)
   - added support for chaging srid and fixed problem with exported datasets (did not contain density) (Nikolaus Krismer)
   - always installing phpliteadmin when using spatialite now (Nikolaus Krismer)
   - fixed problems with filenames in config (Nikolaus Krismer)
diff --git a/bootstrap/importData.sh b/bootstrap/importData.sh
index 430988efe04fb7782027afbf6f868f91f3475747..eb9fdefb37f3a5ffaac3244a119b53c57199ebc5 100755
--- a/bootstrap/importData.sh
+++ b/bootstrap/importData.sh
@@ -68,7 +68,7 @@ function fn_import_dataset() {
 	local OSM_FILE="$2"
 	local OSM_FILE_FILTERED="$3"
 	local BOUNDING="$4"
-	local SQL_EXPORT_FILE="${NAME,,}_export.sql.gz"
+	local SQL_EXPORT_FILE="${NAME,,}_export_${TARGET_SRID}.sql.gz"
 
 	echo "Importing data for region of $NAME"
 	echo "  - importing into postgis"
diff --git a/conf/postgresql.conf b/conf/postgresql.conf
index 69b5e319ae933ccfdae64dd6d06ef9054d1d8e6c..3befd6333e5d928df29e6c8bbe9018439634abc4 100644
--- a/conf/postgresql.conf
+++ b/conf/postgresql.conf
@@ -113,8 +113,9 @@ max_connections = 100			# (change requires restart)
 
 # - Memory -
 
+#shared_buffers = 128kB			# deactivates postgreSql caching
 shared_buffers = 128MB			# min 128kB
-					# (change requires restart)
+								# (change requires restart)
 #temp_buffers = 8MB			# min 800kB
 #max_prepared_transactions = 0		# zero disables the feature
 					# (change requires restart)