Move files to logical positions, no more copying of files.

This commit is contained in:
DariusIII
2015-05-27 00:39:04 +02:00
parent f6632f2679
commit ffa9797126
1472 changed files with 27 additions and 41 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
//
// apt-get install php5-memcache
//
$memcache_enabled = extension_loaded("memcached");
if ($memcache_enabled)
echo "extension loaded";
else
echo "extension not loaded";
$mc = new Memcached();
$mc->connect("localhost", 11211) ;
print_r($mc->getStats());