|
From: <var...@us...> - 2021-07-02 09:24:19
|
Revision: 10342
http://sourceforge.net/p/phpwiki/code/10342
Author: vargenau
Date: 2021-07-02 09:24:10 +0000 (Fri, 02 Jul 2021)
Log Message:
-----------
config/config-dist.ini: mysql --> mysqli
Modified Paths:
--------------
trunk/config/config-dist.ini
Modified: trunk/config/config-dist.ini
===================================================================
--- trunk/config/config-dist.ini 2021-06-29 15:26:44 UTC (rev 10341)
+++ trunk/config/config-dist.ini 2021-07-02 09:24:10 UTC (rev 10342)
@@ -418,17 +418,17 @@
;
; For a MySQL database, the following should work:
;
-; mysql://user:password@host/databasename
+; mysqli://user:password@host/databasename
;
; To connect over a unix socket, use something like
;
-; mysql://user:password@unix(/path/to/socket)/databasename
+; mysqli://user:password@unix(/path/to/socket)/databasename
;
-; Valid values for dbtype are mysql, pgsql, or sqlite.
+; Valid values for dbtype are mysqli, pgsql, or sqlite.
;
-DATABASE_DSN = "mysql://guest@unix(/var/lib/mysql/mysql.sock)/test"
+DATABASE_DSN = "mysqli://guest@unix(/var/lib/mysql/mysql.sock)/test"
-; Keep persistent connections: (mysql_pconnect, ...)
+; Keep persistent connections: (mysqli_pconnect, ...)
; Recommended is false for bigger servers, and true for small servers
; with not so many connections. postgresql: Please leave it false. Default: false
; Should really be set as database option in the DSN above.
@@ -772,7 +772,7 @@
;
; A database DSN to connect to. Defaults to the DSN specified for the Wiki
; as a whole.
-;DBAUTH_AUTH_DSN = "mysql://wikiuser:@127.0.0.1/phpwiki"
+;DBAUTH_AUTH_DSN = "mysqli://wikiuser:@127.0.0.1/phpwiki"
;
; USER/PASSWORD queries
;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|