Unable to load dynamic library '/usr/lib/php/20151012/php_soap.dll' from sessionclean cron












0
















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?










share|improve this question



























    0
















    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?










    share|improve this question

























      0












      0








      0









      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?










      share|improve this question















      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 6 '16 at 11:05









      alexradalexrad

      111




      111






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer
























          • 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













          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          0














          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.






          share|improve this answer
























          • 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


















          0














          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.






          share|improve this answer
























          • 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
















          0












          0








          0







          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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





















          • 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




















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?