Soap Module Already Loaded

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jeffbg123

    Soap Module Already Loaded

    Hey, I am running this code on our production server:

    <?php
    $f = scandir("/home");
    foreach($f as $val){
    echo $val;
    echo "\n";
    }
    ?>

    and I am getting this warning:

    PHP Warning: Module 'soap' already loaded in Unknown on line 0

    The directory lists, but I don't want to see this error each time.


    Any ideas?

    Thanks

  • C.

    #2
    Re: Soap Module Already Loaded

    On 24 Jul, 16:05, jeffbg123 <jeffbg...@gmai l.comwrote:
    and I am getting this warning:
    >
    PHP Warning: Module 'soap' already loaded in Unknown on line 0
    >
    check you php.ini file.

    C.

    Comment

    Working...