Module “%s” is already loaded

Description

The current configuration of the PHP engine include twice the same extension. The first extension is loaded and the last extension is omitted. The features are available, and the log will be filled with the warning.

PHP uses several distinct files to list the extensions to load, such as php.ini, cond.d/*.ini, and the SAPI configuration files, including the web server, CLI’s php.ini, etc.

Example


Literal Examples

  • Module “imagick” is already loaded

Solutions

  • Find the duplicate extension configuration and remove all of the, but one.

See Also