php -v gives this

PHP Warning:  PHP Startup: memcache: Unable to initialize module
Module compiled with module API=20060613
PHP    compiled with module API=20090626
These options need to match in Unknown on line 0
PHP Warning:  PHP Startup: memcache: Unable to initialize module
Module compiled with module API=20060613
PHP    compiled with module API=20090626
These options need to match in Unknown on line 0
bogus test name tests/

ps. i've upgraded from php 5.2 to 5.3. before this everything worked okay.

link|improve this question

40% accept rate
feedback

5 Answers

When you update the version of PHP (especially when going from version X.Y to version X.Z), you must update the PHP extensions as well.


This is because PHP extensions are developped in C, and are "close" to the internals of PHP -- which means that, if the APIs of those internals change, the extension must be re-compiled, to use the new versions.

And, between PHP 5.2 and PHP 5.3, for what I remember, there have been some modifications in the internal data-structures used by the PHP engine -- which means extensions must be re-compiled, in order to match that new version of those data-structures.


How to update your PHP extensions will depend on which system you are using.

If you are on windows, you can find the .ddl for some extensions here : http://downloads.php.net/pierre/
For more informations about the different versions, you can take a look at what's said on the left-sidebar of windows.php.net.

If you are on Linux, you must either :

  • Check what your distribution provides
  • Or use the pecl command, to re-download the sources of the extensions in question, and re-compile them.
link|improve this answer
that's what i actually thought i should do. I have openSUSE 11.2 unfortunately, my distr. doesn't provide anything, what should I do to recompile php or its extensions -- google gives a lot thought scattered info... thx. – soshial Mar 7 '10 at 0:00
You probably don't need to recompile PHP itself : you have already updated it ;; to re-install/compile the extensions, the simplest way (at least for memcache) will be the pecl command ;; something like pecl upgrade memcache, I suppose, might do the trick (You'll need what's required to build/compile stuff) ;;; for more informations, you can take a look at php.net/manual/en/install.pecl.php – Pascal MARTIN Mar 7 '10 at 0:09
i tried to recompile php and all my module and nothing worked, but somehow "pear install -f pecl/memcache" did the trick for me :) anyway, thank you) – soshial Mar 7 '10 at 9:54
Well, glad you found a solution :-) – Pascal MARTIN Mar 7 '10 at 12:22
I had the same problem and I tried pecl upgrade <modulename> but I got the error "ERROR: make failed" , I also tried pear install -f pecl/<modulename> and I got the same error :( any help please – Reem Mar 2 '11 at 11:56
feedback

I Have the same error even I recompile modules.

But I solve it !

Just specify the absolute path of your phpize.

link|improve this answer
feedback

Your problem is within the php5-dev package. I guess you went from php5.2 on an older linux version to php5.3. I did the same thing, and when I managed to install php 5.3 there was a conflict with php5-dev. For some reason it doesn't get upgraded to the new version. Dunno why is that and I don't care, however this makes your extension compiled with the older API version, while php ofc is with the newer api version. What I did to solve this problem was:

I removed php5-dev with sudo apt-get remove php5-dev, then I ran sudo apt-get autoremove to get rid of the leftovers that were giving me the trouble, and after that I just installed php5-dev again. sudo apt-get install php5-dev.

Once that was done, I removed my memcache with sudo pecl uninstall memcache and installed it again sudo pecl install memcache. Now both the module and the php had the same api version so I knew right away that I had the issue solved :)

Hope it helps.

link|improve this answer
feedback

just

pecl uninstall module_name

then

pecl install module_name
link|improve this answer
feedback

Before you phpize, make sure to update your path ($PS1) to point to the new PHP! phpize uses your environment, and if you still have vestiges of your old PHP in your path or other parts of the environment, things will get hairy!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.