(Requirements: PHP 5.4+)
The PHPRedisAdmin application allows you to work with the Redis database in a web interface, having full access to all data.
To install PHPRedisAdmin, do the following:
cd ~/example.com/subdomain/dir/
Instead example.com/subdomain/dir
specify the desired path.
git clone https://github.com//erikdubbelboer/phpRedisAdmin . ; git clone https://github.com/nrk/predis.git vendor
To add a Redis server in the manager, do the following:
include/config.inc.php
.<?php $config = array( 'servers' => array( array( 'name' => explode("/",__DIR__)[2], 'filter' => '*', 'scheme' => 'unix', 'path' => '/home/' . explode("/",__DIR__)[2] . '/.system/redis.sock', 'hide' => false, ), ), 'seperator' => ':', 'showEmptyNamespaceAsKey' => false, 'hideEmptyDBs' => false, 'cookie_auth' => false, 'maxkeylen' => 100, 'count_elements_page' => 100, 'keys' => false, 'scansize' => 1000 );