On Mon, 14 Jul 2003, AROSO Jose Antonio wrote: > I install the all in one package which contain the modperl 2.0 > and de apache server 2.0.46. But after install when i write in > command line "apache" to run the server appears "The dynamic > link library libxml2.dll could not be found". What do i do?
That's because some XML::* modules are being loaded in the example startup.pl supplied with the distribution, and it can't find the needed libxml2.dll. You have several options: - add C:/Perl/bin (or wherever you installed Perl) to your PATH environment variable; - put C:/Perl/bin/libxml2.dll somewhere in the PATH that Apache uses; - use a LoadFile directive in httpd.conf to load libxml2.dll; - if you don't need the XML::* modules, comment out the relevant lines in startup.pl. -- best regards, randy kobes