soap on apache

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • christina@alphalibrae.com

    #1

    soap on apache

    I'm trying to run a soap server on apache using ext/SOAP. It's not
    working, and the error log has the line PHP Warning: PHP Startup:
    Unable to load dynamic library './ext\\php_soap.d ll' - The specified
    module could not be found.\r\n in Unknown on line 0

    The php.ini file enables the soap extension, and a command line client
    has no problem running. I'm not sure where apache is taking the
    starting point of the path from, obviously not e:/php which is in my
    path variable and in the php.ini for included directories. So, how do
    I get apache to look for the dll in the right place?

  • christina@alphalibrae.com

    #2
    Re: soap on apache

    On Jul 23, 8:52 pm, christ...@alpha librae.com wrote:
    I'm trying to run a soap server on apache using ext/SOAP. It's not
    working, and the error log has the line PHP Warning: PHP Startup:
    Unable to load dynamic library './ext\\php_soap.d ll' - The specified
    module could not be found.\r\n in Unknown on line 0
    >
    The php.ini file enables the soap extension, and a command line client
    has no problem running. I'm not sure where apache is taking the
    starting point of the path from, obviously not e:/php which is in my
    path variable and in the php.ini for included directories. So, how do
    I get apache to look for the dll in the right place?
    OK, found the answer - change the path of the extensions_dir in
    php.ini to an absolute path. Sorry, should have searched here a bit
    longer before posting.

    Comment

    • Toby A Inkster

      #3
      Re: soap on apache

      christina wrote:
      I'm trying to run a soap server on apache using ext/SOAP. It's not
      working, and the error log has the line PHP Warning: PHP Startup:
      Unable to load dynamic library './ext\\php_soap.d ll' - The specified
      module could not be found.\r\n in Unknown on line 0
      Does your php.ini provide the full and correct path to php_soap.dll.

      Also, best to use forward slashes rather than escaped backslashes in the
      path.

      --
      Toby A Inkster BSc (Hons) ARCS
      [Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
      [OS: Linux 2.6.12-12mdksmp, up 32 days, 15:43.]

      Parsing an HTML Table with PEAR's XML_HTTPSax3

      Comment

      Working...