codeb Posted January 26, 2012 Posted January 26, 2012 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!!! Quote
Administrators Farshad Mohajeri Posted January 26, 2012 Administrators Posted January 26, 2012 I have no experience with xampplite. Have you read the section about Apache 2.2 deployment? http://www.unigui.com/resources/online-documentation Quote
codeb Posted January 26, 2012 Author Posted January 26, 2012 I have no experience with xampplite. Have you read the section about Apache 2.2 deployment? http://www.unigui.com/resources/online-documentation I try but nothing... every time same... when point server to dll begin downloading that dll Quote
Administrators Farshad Mohajeri Posted January 26, 2012 Administrators Posted January 26, 2012 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. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.