Alberto wrote on Tue, Sep 03, 2002 at 06:32:56PM -0300:
> There is an error code that says that it cannot load module 'mm' at line 
> 0, or something like that.

in your shell do: ldd `which php`

it will most likely say something like: 'libmm.so.11 not found'

you will then need to find the 'mm' library on the system, perhaps with:
        find /usr/lib -name \*mm\*
        find /usr/local/lib -name \*mm\*
and set your LD_LIBRARY_PATH accordingly, or call the PHP binary with
the library preloaded: 'LD_PRELOAD=/usr/lib/libmm.so.11 php'

or I might be way off base ;)
-- 
Tomasz Orzechowski                                           [EMAIL PROTECTED]
APK.net systems administration team                                TO630


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to