I am trying to install a PHP Extension.
Have copied the .so file to my extensions dir, added the reference to php.ini and re-booted. I have the following error when I try to execute a test page:
Warning: dl() [function.dl]: mymodule: Unable to initialize module Module compiled with module API=20090626, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=0 These options need to match in /home/mysite/public_html/myphppage.php on line 22
It would seem that I need to recompile this module to work with my PHP version: 5.2.17 as there is a compilation mismatch?
How do I do that?
Have copied the .so file to my extensions dir, added the reference to php.ini and re-booted. I have the following error when I try to execute a test page:
Warning: dl() [function.dl]: mymodule: Unable to initialize module Module compiled with module API=20090626, debug=0, thread-safety=0 PHP compiled with module API=20060613, debug=0, thread-safety=0 These options need to match in /home/mysite/public_html/myphppage.php on line 22
It would seem that I need to recompile this module to work with my PHP version: 5.2.17 as there is a compilation mismatch?
How do I do that?