Re: Intalling Libevent on Windows

2010-05-09 Thread IsaacMyPHPHero
I looked further into the problem after you mentioned the library. It's for PHP and the extension was not installed. I confirmed that Memcached is indeed running (as a service) but it's not communicating with PHP. Following instructions from the PHP manual, I typed in the command... pecl install

Re: Intalling Libevent on Windows

2010-05-08 Thread Henrik Schröder
When you declare the what now? Memcached is a service, you can check if it's installed properly as a service in the service management console, and you can also telnet to port 11211 on your machine to see if it's responding properly. Again, you do not need to install libevent, it's not something y

Re: Intalling Libevent on Windows

2010-05-08 Thread Isaac Reyes
Thank you Henrik. Memcached just doesn't work, even though I installed it and started it correctly. When I declare the Memcached class, I get an error saying that it does not exist. So I suspect the problem is with Libevent since I never really installed it - there are no clear instructio

Re: Intalling Libevent on Windows

2010-05-08 Thread Henrik Schröder
What do you mean "up and running" ? It's a code library that memcached links to, not some sort of stand-alone service it uses. What specific problem do you have with running Memcached in windows? /Henrik On Fri, May 7, 2010 at 23:09, IsaacMyPHPHero wrote: > Hi, > > Can someone please walk me

Intalling Libevent on Windows

2010-05-07 Thread IsaacMyPHPHero
Hi, Can someone please walk me through on how to get libevent up and running on Windows? My Memcached is not working and I suspect it is because of this. Thank you.