php7 - Unable to load dynamic library '/usr/lib/php/20151012/php_soap.dll' from sessionclean cron - Ask Ubuntu
hp warning: php startup: unable load dynamic library '/usr/lib/php/20151012/php_soap.dll' - /usr/lib/php/20151012/php_soap.dll: cannot open shared object file: no such file or directory in unknown on line 0
i noticed getting warning sessionclean cron. have php7 installed on ubuntu 16.04.
how can resolve error? sessionclean old in trying use dlls?
you're trying use windows library (a dll) on linux system. dlls don't work on linux (apart emulating wine, developing mono or such). additionally, .dll file you're referencing in config isn't there ;)
you need corresponding .so library, should supplied package php7.0-soap
. in general, many php modules can found in respective packages, php7.0-mysql
, php7.0-intl
or php7.0-cgi
.
Comments
Post a Comment