SOCKETS

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mfalomir
Forum Newbie
Posts: 6
Joined: Tue Nov 05, 2002 9:29 pm

SOCKETS

Post by mfalomir »

Hello, Im trying to use the socket functions but Im getting this error and i don't know what to do...i hope you can help me ....

Warning: sockets: Unable to initialize module Module compiled with module API=20010901, debug=0, thread-safety=1 PHP compiled with module API=20020429, debug=0, thread-safety=1 These options need to match
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

you're mixing two versions of php.
20010901 < 20020429 i.e. your php core is newer than your extension-module(s)
Get the latest php-distribution (zip-package) from http://www.php.net/downloads.php and do a reinstall
Post Reply