Quantcast
Channel: PHP Warning: Module already loaded in Unknown on line 0 - Stack Overflow
Browsing all 22 articles
Browse latest View live

Answer by AlDante for PHP Warning: Module already loaded in Unknown on line 0

If you install PHP using MacPorts (I know, call me a dinosaur), it doesn't create a php.ini file. Instead it creates a bunch of ini files in /opt/local/var/db/php82 (or whatever version you installed)...

View Article



Answer by Yassine Chilali for PHP Warning: Module already loaded in Unknown...

solved by commenting extension=curl

View Article

Answer by Kinjal Suryavanshi for PHP Warning: Module already loaded in...

I resolved this issue by removing php.ini file from extension=grpc commenting like this ;extension=grpc

View Article

Answer by JuliaJ for PHP Warning: Module already loaded in Unknown on line 0

I am using WAMP in Windows 10 with PHP 7.2.10. I was able to solve it through commenting the line extension=ftp in php.ini inside wamp64\bin\php\php7.2.10 .I am unsure but my guess why this happens is...

View Article

Answer by Osvaldo Sevilla for PHP Warning: Module already loaded in Unknown...

If you are on shared hosting, just apply the default php settings. Cpanel overrides php settings to default.

View Article


Answer by Pratik for PHP Warning: Module already loaded in Unknown on line 0

Run php --ini and notice file path on Loaded Configuration File.Then run command like cat -n /etc/php/7.2/cli/php.ini | grep intl to find if the extension is commented or not.Then update loaded...

View Article

Answer by Jadi Akbar for PHP Warning: Module already loaded in Unknown on line 0

In Windows 10, I fix this by comment like this;extension=php_sockets.dll

View Article

Answer by Onimusha for PHP Warning: Module already loaded in Unknown on line 0

For shared hosting, in cPanel I unchecked the Module in question under "Select PHP Version">"Extensions" and the error disappeared for PHP 7.4.

View Article


Answer by Juampy NR for PHP Warning: Module already loaded in Unknown on line 0

I figured this out by printing the PHP configuration and searching by xml.ini. Notice in the following output how xml is loaded twice (first as 20-xml.ini and then as xml.ini):$ php -i | grep...

View Article


Answer by Talha Shahab for PHP Warning: Module already loaded in Unknown on...

For issue related to code igniter project upload,go to the base directory index.php and add this code:if ($_SERVER['SERVER_NAME'] == 'local_server_name') { define('ENVIRONMENT', 'development');} else {...

View Article

Answer by Pratik for PHP Warning: Module already loaded in Unknown on line 0

Comment out these two lines in php.ini;extension=imagick.so;extension="ixed.5.6.lin"it should fix the issue.

View Article

Answer by sanka for PHP Warning: Module already loaded in Unknown on line 0

Just for the record as it might help others who are on shared hosting (cPanel).I had error on shared hosting php7.2: Module 'imagick' already loaded in Unknown on line 0In the beginning hosting...

View Article

Answer by Dewok Satria for PHP Warning: Module already loaded in Unknown on...

I had a similar problem, the problem was that the extension intl was duplicated.You can check in file C:/xampp/php/php.ini and find "intl". In my case extension=intl is already present and I scrolled...

View Article


Answer by Marcelo Agimóvel for PHP Warning: Module already loaded in Unknown...

In my case I had uncoment the ;extension=php_curl.so in php.ini, but Ubuntu was already calling this extension somewhere else.To find this "somewhere else", on php.ini will informe. On my...

View Article

Answer by Laith for PHP Warning: Module already loaded in Unknown on line 0

I deleted the 20-mongo.ini file in /etc/php5/cli/conf.d and this solved the problem.

View Article


Answer by Allan Mwesigwa for PHP Warning: Module already loaded in Unknown on...

I had the same issue on mac i.e. Warning: Module 'pdo_pgsql' already loaded in Unknown on line 0.Here's how I solved it. Locate the folderconf.d, mine was in the directory/usr/local/etc/php/7.0/conf.d....

View Article

Answer by J.C. Gras for PHP Warning: Module already loaded in Unknown on line 0

To fix this problem, you must edit your php.ini (or extensions.ini) file and comment-out the extensions that are already compiled-in. For example, after editing, your ini file may look like the lines...

View Article


Answer by Ilia Ross for PHP Warning: Module already loaded in Unknown on line 0

I had the same issue after upgrading from Fedora Server 24 (PHP 5) to 25(PHP 7). After investigation, I found that /etc/php.d/ had two different .ini files loading extension=geoip.so.Previous version...

View Article

Answer by ashik for PHP Warning: Module already loaded in Unknown on line 0

There are two "php_intl.dll" files inside php.ini file on 872 and 968 number lines. if php warning module 'intl' already loaded in unknown on line 0 this message is focused on your CLI. Then you should...

View Article

Answer by Matthew Marichiba for PHP Warning: Module already loaded in Unknown...

You should have a /etc/php2/conf.d directory (At least on Ubuntu I do) containing a bunch of .ini files which all get loaded when php runs. These files can contain duplicate settings that conflict with...

View Article
Browsing all 22 articles
Browse latest View live




Latest Images