Sophie

Sophie

distrib > Mageia > 6 > i586 > media > core-backports-src > by-pkgid > 984a1e2d9aa1f479a6ff963ee430d822 > files > 5

php-apcu-5.1.17-1.mga6.src.rpm

<?php
define('USE_AUTHENTICATION',1);		// Use (internal) authentication - best choice if
					// no other authentication is available
					// If set to 0:
					//  There will be no further authentication. You
					//  will have to handle this by yourself!
					// If set to 1:
					//  You need to change ADMIN_PASSWORD to make
					//  this work!
define('ADMIN_USERNAME','apcadmin');		// Admin Username
define('ADMIN_PASSWORD','_PASSWORD_');  	// Admin Password - CHANGE THIS TO ENABLE!!!

// (beckerr) I'm using a clear text password here, because I've no good idea how to let 
//           users generate a md5 or crypt password in a easy way to fill it in above

//define('DATE_FORMAT', "d.m.Y H:i:s");	// German
//define('DATE_FORMAT', "d/m/Y H:i:s");	// French
define('DATE_FORMAT', 'Y/m/d H:i:s'); 	// US

define('GRAPH_SIZE',200);		// Image size

//define('PROXY', 'tcp://127.0.0.1:8080');

?>