“ПРЕДУПРЕЖДЕНИЕ PHP: PHP Startup: Невозможно загрузить динамическую библиотеку” Ответ

PHP Startup: невозможно загрузить динамическую библиотеку

If you are a windows user, make sure to uncomment this line in your php.ini 
file:
	
extension_dir = "ext"
Lokesh003

ПРЕДУПРЕЖДЕНИЕ PHP: PHP Startup: невозможно загрузить динамическую библиотеку apc.so

comment out this line by adding a semi-colon in front
;extension=apc.so
Bermawy

ПРЕДУПРЕЖДЕНИЕ PHP: PHP Startup: Невозможно загрузить динамическую библиотеку

It means there is an extension=... or zend_extension=... line in one of your php configuration files (php.ini, or another close to it) that is trying to load that extension : ixed.5.2.lin

Unfortunately that file or path doesn't exist or the permissions are incorrect.

Try to search in the .ini files that are loaded by PHP (phpinfo() can indicate which ones are) - one of them should try to load that extension.
Either correct the path to the file or comment out the corresponding line.
Santino

ПРЕДУПРЕЖДЕНИЕ PHP: PHP Startup: невозможно загрузить динамическую библиотеку BZ2

extension_dir="C:\full\path\to\php\ext\dir"
Cooperative Crab

PHP Startup: невозможно загрузить динамическую библиотеку

First of all, you must indicate the php extensions folder to you php.ini file.
 	extension_dir="some_location"
 Then, put your downloaded dll module file into "some_location" folder.
 Add the code below in php.ini file.
 	extension="your_module_name_that_you_downloaded.dll"
Be sure that your module is for your PHP version.
Restart your server, and check the phpinfo();
Mushy Mantis

PHP Startup: невозможно загрузить динамическую библиотеку

# Firstly install the mysql lib for php
# Commnad to install it is "apt install php7.0-mysql" (set the version o php to your php version).
# After running that command restart the apache2 server "systemctl restart apache2"
MrBeanDev

Ответы похожие на “ПРЕДУПРЕЖДЕНИЕ PHP: PHP Startup: Невозможно загрузить динамическую библиотеку”

Вопросы похожие на “ПРЕДУПРЕЖДЕНИЕ PHP: PHP Startup: Невозможно загрузить динамическую библиотеку”

Больше похожих ответов на “ПРЕДУПРЕЖДЕНИЕ PHP: PHP Startup: Невозможно загрузить динамическую библиотеку” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования