in reply to Re: Strawberry Perl and IIS not playing
in thread Strawberry Perl and IIS not playing

Personally, I prefer to put dependent DLLs into the same directory as the perl.exe executable, that is, usually c:\Strawberry\Perl\bin. This prevents surprises when I uninstall/reinstall a module.

Replies are listed 'Best First'.
Re^3: Strawberry Perl and IIS not playing
by Anonymous Monk on May 28, 2010 at 21:23 UTC
    That's a good way, but libmysql_.dll came with strawberryperl
    strawberry\c\bin\libcharset-1_.dll strawberry\c\bin\libeay32_.dll strawberry\c\bin\libexpat-1_.dll strawberry\c\bin\libexslt-0_.dll strawberry\c\bin\libfreetype-6_.dll strawberry\c\bin\libgcc_s_sjlj-1.dll strawberry\c\bin\libgd-2_.dll strawberry\c\bin\libgif-4_.dll strawberry\c\bin\libglut-0_.dll strawberry\c\bin\libiconv-2_.dll strawberry\c\bin\libjpeg-62_.dll strawberry\c\bin\liblzma-0_.dll strawberry\c\bin\libmysql_.dll strawberry\c\bin\libpng-3_.dll strawberry\c\bin\libpng12-0_.dll strawberry\c\bin\libpq_.dll strawberry\c\bin\libssl32_.dll strawberry\c\bin\libssp-0.dll strawberry\c\bin\libtiff-3_.dll strawberry\c\bin\libxml2-2_.dll strawberry\c\bin\libXpm_.dll strawberry\c\bin\libxslt-1_.dll strawberry\c\bin\libz_.dll
    which adds/expects strawberry\c\bin\ and strawberry\perl\bin\ in %PATH%

      Ugh, thanks, I didn't know that. I'm not really fond of modifying $ENV{PATH} in a fashion larger than necessary, especially when juggling multiple versions of Perl. So I'll have to either copy all the DLLs or hope that nothing finds the DLLs in c/bin before where they should be found...