From 3c9974a5f8a898cfedf4d6f2d2e738a9630ff47e Mon Sep 17 00:00:00 2001 From: adolfintel Date: Wed, 22 Aug 2018 17:23:25 +0200 Subject: [PATCH] Updated doc.md --- doc.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc.md b/doc.md index c2ed9ca..f7a8622 100644 --- a/doc.md +++ b/doc.md @@ -331,10 +331,12 @@ If you see a table called `speedtest_users`, empty, you did it right. ### Configuring `telemetry.php` Open `telemetry_settings.php` with notepad or a similar text editor. Set your preferred database, ``$db_type="mysql";``, ``$db_type="sqlite";`` or ``$db_type="postgresql";`` + If you choose to use Sqlite3, you must set the path to your database file: ```php -$Sqlite_db_file = "../telemetry.sql"; +$Sqlite_db_file = "../../telemetry.sql"; ``` +Sqlite doesn't require any additional configuration. If you choose to use MySQL, you must also add your database credentials: ```php