Posts

Showing posts from May, 2015

Enable SSL in WAMP server

How to enable SSl on Wamp Server(apache2) - HTTPS Configuration In this article, I will show how to Configure/Enable SSL in Wamp Server.I have installed wampserver with apache 2.2.12 and php 5.3.5. I have to configure the Open SSL server. How to Setup HTTPS SSL on WAMP Server for apache 2.2 1. Install WAMPServer 2. Open Control Panel 3. Click System >> Select Advanced System Setting >> Select Environment Variables. 4.Create new system variable OPENSSL_CONF: Value: C:\wamp\bin\apache\apache2.2.12\conf\openssl.cnf 5. Create a SSL Certificate and Key for the Web Server Open command prompt and Run the following commands: > cd wamp\bin\apache\apache2.2.12\bin > openssl genrsa -des3 -out server.key 1024 > copy server.key server.key.org > openssl rsa -in server.key.org -out server.key > openssl req -new -x509 -nodes -sha1 -days 365 -key server.key -out server.crt -config C:\wamp\bin\apache\apache2.2.12\conf\openssl.cnf >openssl req -new -ne...

Memcache Installation in PHP (Wamp Server)

what is Memcache? Memcache is a caching system used to speed up web applications by holding small pieces of arbitrary data, it could be broadly compared to the $_SESSION variable in PHP, but memcache works across the whole application not just on a per user basis and has been successfully proven to make great gains in speed increases on web applications. Memcache was designed with Linux in mind and not windows, so it has posed some installation issues because Windows users are not so familiar with having to compile code from source as memcache does not come with any installation software. Installation: - Download this package, here - Unzip Memcached application in C:/memcached folder - Open command prompt, Type below command to install C:\memcached>memcached.exe -d install  - Now its time to start the Memcache server  C:\memcached>memcached.exe -d start (or)  C:\memcached>net start memcached The memcached service was started successfully. Hope ...