Jump to content

Setup Xampplite to run dll


codeb

Recommended Posts

Hi!

 

One simple question... I use xampplite to run and test isapi dll file maded with UniGui... What I must change in httpd.conf to run dll file (now when I start application... now I can only to download that dll).

On internet I find and add "AddHandler isapi-handler .dll" and nothing...

 

Please help!!!

Link to comment
Share on other sites

  • Administrators

Apache 2.2 web server for Windows allows running ISAPI modules. For this, a plugin called mod_isapi must be enabled.

 

Apache doesn't have a visual interface for configuration. You must do some modifications to httpd.conf file.

 

First of all, uncomment the following line:

 

LoadModule isapi_module modules/mod_isapi.so

 

Next you must associate .dll files with ISAPI module.

 

Add the following line

 

AddHandler isapi-handler .dll

 

Next step is add your module directory to Apache directory entries.

 

<Directory "C:/webapps">
   Options Indexes FollowSymLinks ExecCGI
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>

 

Finally create a new Alias for your directory.

 

Alias /mywebapps "C:/webapps"

 

Be sure to restart your Apache server after making the necessary modifications to httpd.conf file.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...