Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
525 views
in Q2A Core by

Me mudé de 1.7.5 at1.8.1

Ayuda

1 Answer

+1 vote
by

Looks like that is a problem with the Memcached server itself, not Q2A or PHP. First check that your Memcahced server is running, which you can do with a plain PHP script like this:

<?php
$m = new Memcached;
$m->addServer('127.0.0.1', 11211);
print_r($m->getStats());

If you Google that error there are many resources with solutions, not sure which ones will work for you.

by
Thank you Scott . But how i do this Code on my hosting.
I go and create a folder and eject my domain web whit these Code into the folder or how is it?
by
You can just put that code in a PHP file (eg ‘test.php’) then upload it to your site and visit the URL yoursite.com/test.php
...