Search
 
SCRIPT & CODE EXAMPLE
 

PHP

PHP Startup: Unable to load dynamic library

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

php warning: php startup: unable to load dynamic library

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.
Comment

php startup: unable to load dynamic library

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();
Comment

php startup: unable to load dynamic library

# 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"
Comment

PREVIOUS NEXT
Code Example
Php :: json url decode php 
Php :: how set variable public in static method in laravel 
Php :: db::statement in laravel 
Php :: php print array new line 
Php :: program-generate-random-alphabets using php 
Php :: php array all keys empty 
Php :: symfony password generator command line 
Php :: laravel 8 created at format 
Php :: dont show file type in url 
Php :: laravel 8 Target class [FormController] does not exist. 
Php :: php exercises 
Php :: remove last character from string in php 
Php :: wordpress require file from plugins folder 
Php :: php number_format 
Php :: laravel echo query 
Php :: php days remaining 
Php :: php var dump into string 
Php :: php find string in string 
Php :: laravel scheduler every 2 hours 
Php :: enum in laravel migration 
Php :: php remove last newline from string 
Php :: yyyymmdd to yyyy-mm-dd php 
Php :: phpcs 
Php :: laravel where multiple conditions 
Php :: wp php redirect my account page url to custom url 
Php :: laravel include with variable 
Php :: iterate through an associative array php 
Php :: php check if value exists in multidimensional array 
Php :: turn off deprecated warnings php 
Php :: cakephp 2.x join 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =