skip to Main Content

Memcache PHP extension on windows 10 works intermittently – Apache

I have memcache extensions on apache/php windows 10 (details at the end) Created a simple test: $memcache = new Memcache; $memcache->addServer("ext-memcached.e-memcached.xxx.net",11211); $memcache->addServer("ext-memcached.e-memcached2.xxx.net",11211); $memcache->addServer("ext-memcached.e-memcached3.xxx.net",11211); $key='xxx_54921'; $settings = $memcache->get($key); print_r ($settings); the memcache servers are on AWS and they work well (production…

VIEW QUESTION

Enable CORS in httpd.conf – Apache

I'm developing a web application which makes REST calls to another web application outside its domain. But whenever it tries to make the REST call, I'm facing CORS issue in chrome. Error: No 'Access-Control-Allow-Origin' header is present on the requested…

VIEW QUESTION
Back To Top
Search