Unable to load dynamic library '/usr/lib/php/20151012/php_soap.dll' from sessionclean cron
HP Warning: PHP Startup: Unable to 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 just noticed I am getting this warning with the sessionclean cron.
I have php7 installed on ubuntu 16.04.
How can I resolve this error? Is my sessionclean old in trying to use dlls?
cron php7
add a comment |
HP Warning: PHP Startup: Unable to 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 just noticed I am getting this warning with the sessionclean cron.
I have php7 installed on ubuntu 16.04.
How can I resolve this error? Is my sessionclean old in trying to use dlls?
cron php7
add a comment |
HP Warning: PHP Startup: Unable to 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 just noticed I am getting this warning with the sessionclean cron.
I have php7 installed on ubuntu 16.04.
How can I resolve this error? Is my sessionclean old in trying to use dlls?
cron php7
HP Warning: PHP Startup: Unable to 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 just noticed I am getting this warning with the sessionclean cron.
I have php7 installed on ubuntu 16.04.
How can I resolve this error? Is my sessionclean old in trying to use dlls?
cron php7
cron php7
asked Nov 6 '16 at 11:05
alexradalexrad
111
111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You're trying to use a Windows library (a DLL) on a Linux system. DLLs don't work on Linux (apart from emulating with Wine, developing with Mono or such). Additionally, the .dll file you're referencing in your config isn't even there ;)
You need the corresponding .so library, which should be supplied by the package php7.0-soap
. In general, many PHP modules can be found in their respective packages, like php7.0-mysql
, php7.0-intl
or php7.0-cgi
.
Alright, so I dont know why the sessionclean cron exists, or how exactly its trying to use these dlls? But as far as the .so libraries I have those installed already... so if this sessionclean routine is needed then how can I relink it to the php7.0-soap
– alexrad
Nov 6 '16 at 15:17
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f846166%2funable-to-load-dynamic-library-usr-lib-php-20151012-php-soap-dll-from-session%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You're trying to use a Windows library (a DLL) on a Linux system. DLLs don't work on Linux (apart from emulating with Wine, developing with Mono or such). Additionally, the .dll file you're referencing in your config isn't even there ;)
You need the corresponding .so library, which should be supplied by the package php7.0-soap
. In general, many PHP modules can be found in their respective packages, like php7.0-mysql
, php7.0-intl
or php7.0-cgi
.
Alright, so I dont know why the sessionclean cron exists, or how exactly its trying to use these dlls? But as far as the .so libraries I have those installed already... so if this sessionclean routine is needed then how can I relink it to the php7.0-soap
– alexrad
Nov 6 '16 at 15:17
add a comment |
You're trying to use a Windows library (a DLL) on a Linux system. DLLs don't work on Linux (apart from emulating with Wine, developing with Mono or such). Additionally, the .dll file you're referencing in your config isn't even there ;)
You need the corresponding .so library, which should be supplied by the package php7.0-soap
. In general, many PHP modules can be found in their respective packages, like php7.0-mysql
, php7.0-intl
or php7.0-cgi
.
Alright, so I dont know why the sessionclean cron exists, or how exactly its trying to use these dlls? But as far as the .so libraries I have those installed already... so if this sessionclean routine is needed then how can I relink it to the php7.0-soap
– alexrad
Nov 6 '16 at 15:17
add a comment |
You're trying to use a Windows library (a DLL) on a Linux system. DLLs don't work on Linux (apart from emulating with Wine, developing with Mono or such). Additionally, the .dll file you're referencing in your config isn't even there ;)
You need the corresponding .so library, which should be supplied by the package php7.0-soap
. In general, many PHP modules can be found in their respective packages, like php7.0-mysql
, php7.0-intl
or php7.0-cgi
.
You're trying to use a Windows library (a DLL) on a Linux system. DLLs don't work on Linux (apart from emulating with Wine, developing with Mono or such). Additionally, the .dll file you're referencing in your config isn't even there ;)
You need the corresponding .so library, which should be supplied by the package php7.0-soap
. In general, many PHP modules can be found in their respective packages, like php7.0-mysql
, php7.0-intl
or php7.0-cgi
.
answered Nov 6 '16 at 11:20
Henning KockerbeckHenning Kockerbeck
3,7701524
3,7701524
Alright, so I dont know why the sessionclean cron exists, or how exactly its trying to use these dlls? But as far as the .so libraries I have those installed already... so if this sessionclean routine is needed then how can I relink it to the php7.0-soap
– alexrad
Nov 6 '16 at 15:17
add a comment |
Alright, so I dont know why the sessionclean cron exists, or how exactly its trying to use these dlls? But as far as the .so libraries I have those installed already... so if this sessionclean routine is needed then how can I relink it to the php7.0-soap
– alexrad
Nov 6 '16 at 15:17
Alright, so I dont know why the sessionclean cron exists, or how exactly its trying to use these dlls? But as far as the .so libraries I have those installed already... so if this sessionclean routine is needed then how can I relink it to the php7.0-soap
– alexrad
Nov 6 '16 at 15:17
Alright, so I dont know why the sessionclean cron exists, or how exactly its trying to use these dlls? But as far as the .so libraries I have those installed already... so if this sessionclean routine is needed then how can I relink it to the php7.0-soap
– alexrad
Nov 6 '16 at 15:17
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f846166%2funable-to-load-dynamic-library-usr-lib-php-20151012-php-soap-dll-from-session%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown