Hi,

I set the path for the extension_dir in the php.ini to be E:\Program Files\php\extensions and I want to load some extension dll. I found that I missed:

;extension=php_dotnet.dll

;extension=php_mcrypt.dll

;extension=php_sablot.dll

in the extension folder. Where could I download them?

Even I comment these 3 dll and restart the PC. When I load the test.php page, it still shows a lot of dll files (they are in the extensions folder) cannot be loaded. Do I need to use SAPI instead of CGI php.exe in order to load the additional extension dll?

I have the php4ts.dll in the winnt\system32 folder.

How should I load the extension dll properly?

Also, I cannot use load php_module in the httpd config file as apache said that it needs 2 parameters - module name and the path to the file. In fact, both of them were already included, but it cannot load them.

Any advice?

gogo

    hi,
    have you tried to register the dll with windows nt? if not register it with regsvr32.exe.
    hope this will solve the problem.

    regards
    subrata

      No, I have not registered dll with win2k prof.

      Could you tell me how to register the dll with regsvr32.exe? Where could I find that exe file?

      Regards

      gogo

        hi,

        go to the directory c:\winnt\system32\ or the system directory of your version of window using a dos window.
        there you can find the regsvr32.exe.
        then type
        regsvr32.exe yourdll.dll
        on the command prompt. if the dlls are ok then they will be registered.

        regards
        subrata

          Write a Reply...