Ver Mensaje Individual
  #1  
Antiguo 11-09-2011
ASAPLTDA ASAPLTDA is offline
Miembro
 
Registrado: jun 2003
Ubicación: COLOMBIA-CALI
Posts: 639
Reputación: 21
ASAPLTDA Va por buen camino
Smile Como configuro Apache para ejecutar aplicacion Unigui

buenos dias foristas,
Estoy probando unigui para delphi y estoy feliz con el resultado quisiera ejecutarla usando apache , IIS como servidor de aplicaciones explica como se hace en apche y iis pero no pude hacerlo. Es posible que alguien envie la configuracion en apche para que puede ejecutarse desde una pagina web

Gracias por su ayuda adjunto instrucciones del proveedor de unigui


---iINTRUCCIONES PARA APACHE -------


Apache 2.2
Previous topic Next topic

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.


--- FIN INSTRUCCIONES APACHE
Responder Con Cita