Module 'memcache' already loaded

bikepope

B1G-Software-Kunde
#1
Hallo

Ich habe die Warteschlage neu gestartet. Jetzt komme immer wieder diese Medlung??
-----------
[foo@server ~]# /etc/init.d/bms-queue start
Starting b1gMailServer queue service DONE!
[foo@server ~]# PHP Warning: Module 'memcache' already loaded in Unknown on line 0
[foo@server ~]# PHP Warning: Module 'memcache' already loaded in Unknown on line 0
[foo@server ~]# PHP Warning: Module 'memcache' already loaded in Unknown on line 0
usw.
----------

Kann mir jemand einen Tipp geben?

Danke
 

bikepope

B1G-Software-Kunde
#2
Hallo

Habe glaube ich die Lösung doch gefunden. Für die dies interessiert:

Cause

There are two ways to load most extensions in PHP. One is by compiling the extension directly into the PHP binary. The other is by loading a shared extension dynamically via an ini file. The errors indicate that dynamic extensions are being loaded via .ini files, even though they are already compiled into the PHP binary.

Fix

To fix this problem, you must edit your php.ini (or extensions.ini) file and comment-out the extensions that are already compiled-in.
 
Top