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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...