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

github.com/erikdubbelboer/phpRedisAdmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorppeer <gid@fastmail.fm>2018-03-22 18:06:44 +0300
committerErik Dubbelboer <erik@dubbelboer.com>2018-03-23 02:33:36 +0300
commit9668550081e56b6a5ed0da033d111ccfdef42084 (patch)
tree90e99f2977da2ce30d532a5a8e881033cee026ff
parent36e35016a41bb0b8545d028f7db90e2f62b0e9c4 (diff)
added ',' to line 12
as response to: "PHP message: PHP Parse error: syntax error, unexpected ''auth'' (T_CONSTANT_ENCAPSED_STRING)"
-rw-r--r--includes/config.sample.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/config.sample.inc.php b/includes/config.sample.inc.php
index c11b25b..558f231 100644
--- a/includes/config.sample.inc.php
+++ b/includes/config.sample.inc.php
@@ -9,7 +9,7 @@ $config = array(
'port' => 6379,
'filter' => '*',
'scheme' => 'tcp', // Optional. Connection scheme. 'tcp' - for TCP connection, 'unix' - for connection by unix domain socket
- 'path' => '' // Optional. Path to unix domain socket. Uses only if 'scheme' => 'unix'. Example: '/var/run/redis/redis.sock'
+ 'path' => '', // Optional. Path to unix domain socket. Uses only if 'scheme' => 'unix'. Example: '/var/run/redis/redis.sock'
// Optional Redis authentication.
//'auth' => 'redispasswordhere' // Warning: The password is sent in plain-text to the Redis server.