Delphi and Kylix

Moderators: pritaeas
Number of threads: 7264
Number of posts: 19073

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
about apache web server Posted by arhannur1 on 27 Aug 2004 at 2:26 PM
i want to write an application to run on the net. learnt that i have to use apache and i installed it on my computer.(c:/program files/apache group/apache2). i study with Essential Delphi6 of Marco Cantu; and he tells to change the 'httpd.conf' file. i changed some lines as he says but i fall to run the samples.
Any way; is there any one to help me understanding this apache way? if there is a simple sample or text for dummies like me i would be grateful and more happy than now please!!!
Thanks in advance...
Report
Re: about apache web server Posted by zibadian on 27 Aug 2004 at 4:27 PM
: i want to write an application to run on the net. learnt that i have to use apache and i installed it on my computer.(c:/program files/apache group/apache2). i study with Essential Delphi6 of Marco Cantu; and he tells to change the 'httpd.conf' file. i changed some lines as he says but i fall to run the samples.
: Any way; is there any one to help me understanding this apache way? if there is a simple sample or text for dummies like me i would be grateful and more happy than now please!!!
: Thanks in advance...
:
It depends on what kind of cgi applications you want to write. I successfully ran isapi DLLs in apache by adding the following lines to the httpd.conf:
AddHandler isapi-isa .dll

<Directory "C:/my site/cgi-bin/">
    AllowOverride None
    Options Indexes MultiViews ExecCGI
</Directory>

and making sure that the isapi mod is loaded (
LoadModule isapi_module modules/mod_isapi.so

is uncommented).

If this is set, you can code an ISAPI DLL in Delphi, and place it in the example directory given above. This will allow you tou type the DLL as address in your browser and get a page. Here is an example of such an address:
http://127.0.0.1/cgi-bin/isapiexample.dll/helloworld





 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.