Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/config/pdo_mysql.template.php')
-rw-r--r--tests/config/pdo_mysql.template.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/config/pdo_mysql.template.php b/tests/config/pdo_mysql.template.php
new file mode 100644
index 0000000000..96397b6393
--- /dev/null
+++ b/tests/config/pdo_mysql.template.php
@@ -0,0 +1,30 @@
+; <?php exit; ?> DO NOT REMOVE THIS LINE
+; this file is just here for documentation purpose
+; the config.ini.php is normally created during the installation process
+; when this file is absent it triggers the Installation process
+; the config.ini.php file contains information about the super user and the database access
+
+[superuser]
+login= @superuser.loging@
+password= @superuser.password@
+email= @superuser.email@
+
+[database]
+host= @database.main.host@
+port= @database.main.port@
+username= @database.main.username@
+password= @database.main.password@
+dbname= @database.main.name@
+adapter= PDO_MYSQL
+tables_prefix= piwik_
+schema= Myisam
+
+[database_tests]
+host= @database.test.host@
+port= @database.test.port@
+username= @database.test.username@
+password= @database.test.password@
+dbname= @database.test.name@
+adapter= PDO_MYSQL
+tables_prefix= piwiktests_
+schema= Myisam