Posted by Mike P2 on 05/09/07 23:59
On May 9, 9:58 am, geevaa <govivasa...@gmail.com> wrote:
> Hi group,
>
> PHP Warning: Module 'readline' already loaded in Unknown on line 0
>
> what this warning means?
> please help me by explaining
You probably have a module dynamically loaded in php.ini twice. IE,
something like this:
extension=readline.dll
;...more settings in between maybe...
extension=readline.dll
..dll would be .so if you are on Linux. You might also be using dl() to
load something that's already loaded.
The PHP documentation says you need to configure PHP with --with-
readline (if and when you compile it) to use Readline. If you have PHP
configured with that already and are loading the module also (like
above), that may be causing the error. Use <?php phpinfo(); ?> to see
your configuration settings (near the top) and some other stuff (will
probably have a section for Readline if it's loaded).
-Mike PII
[Back to original message]
|