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 :: php <= 
Php :: wordpress add shortcode with parameters 
Php :: twig resto 
Php :: validate names regex php 
Php :: how to get array key in php 
Php :: Laravel - Send mail using mail class 
Php :: laravel rule unique where 
Php :: attach function in laravel 
Php :: Predefined Constants php 
Php :: sort by number of views descending laravel 
Php :: php docker offical apache 
Php :: drupal 7 db_query example 
Php :: PHP $argv echo 
Php :: how to check if file is empty in php 
Php :: laravel array to string conversion 
Php :: resource route controller laravel 8 
Php :: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes 
Php :: laravel logout after password change 
Php :: laravel mailable from 
Php :: get users by role name - spatie/laravel-permission 
Php :: laravel unique id 
Php :: wp-config.php 
Php :: laravel nginx 
Php :: laravel migration bigint length 
Php :: Woocommerce Changing the Entry Title of the Custom Endpoint 
Php :: laravel call controller method from another controller 
Php :: php after leave page 
Php :: php extend class 
Php :: laravel change db connection on the fly 
Php :: php estrutura basica 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =