]> git.pld-linux.org Git - packages/php-pecl-memcache.git/blob - config.php
php 5.2 deps
[packages/php-pecl-memcache.git] / config.php
1 <?php
2 /*
3  * Config for memcache.php administrative interface.
4  */
5
6 // Admin Username, use <null> (language construct, not string) to skip the check.
7 // For example if you want to restrict the access with webserver.
8 define('ADMIN_USERNAME', null);
9 // Admin Password
10 define('ADMIN_PASSWORD', 'memcache');
11
12 define('DATE_FORMAT', 'Y-m-d H:i:s');
13 define('GRAPH_SIZE', 200);
14 define('MAX_ITEM_DUMP', 50);
15
16 // add more as an array
17 $MEMCACHE_SERVERS[] = 'localhost:11211';
This page took 0.028207 seconds and 3 git commands to generate.