tags:

views:

138

answers:

1

When i tried to connect to Apache Cassandra server using the php code i got an error "Fatal error: Call to undefined function uuid_make()". I can find that PHP UUID extension was missing in PHP installation. Can anyone please suggest from where i can download the DLL file for PHP installation in my Windows 7 Machine.

+1  A: 

Since there's no .dll file for the PHP UUID extension available online... you need to compile it from source. It shouldn't be too hard...

Download it here: http://pecl.php.net/package/uuid

Follow the instructions here: http://php.net/manual/en/install.pecl.windows.php

You can also install directly from PECL, instructions here: http://wiki.php.net/internals/windows/stepbystepbuild

philfreo