Annotation of win32/dist/cgi_xml/readme.en.txt, revision 1.1
1.1 ! misha 1: Apache Win32 (CGI):
! 2: ------------------
! 3:
! 4: Put file parser3.exe to cgi-bin folder of your web-site.
! 5:
! 6: Create in root folder of your site file .htaccess and add these commands to it:
! 7:
! 8: # assign parser as .html pages handler:
! 9: AddHandler parsed-html html
! 10: Action parsed-html /cgi-bin/parser3.exe
! 11:
! 12: # disable access to .cfg and .p files:
! 13: <Files ~ "\.(p|cfg)$">
! 14: Order allow,deny
! 15: Deny from all
! 16: </Files>
! 17:
! 18: Note: default Apache server configration does not allow to use .htaccess files.
! 19:
! 20:
! 21: Internet Information Server 4–5 (Win32):
! 22: ---------------------------------------
! 23:
! 24: Place Parser's module executables (parser3isapi.dll in current version) into an arbitrary directory.
! 25: If you use version with XML support, unpack XML libraries into directory specified in environment variable PATH
! 26: (for example C:\WinNT).
! 27:
! 28: Having placed files to needed locations, you need to declare Parser as .html files handler:
! 29:
! 30: 1. Run Management Console, right-click icon with your web server and choose Properties;
! 31:
! 32: 2. Go to Application settings and under Home directory click on the Configuration button;
! 33:
! 34: 3. Click Add;
! 35:
! 36: 4. In the Executable box, type full path to parser3.exe;
! 37:
! 38: 5. In the Extension box, type .html;
! 39:
! 40: 6. Check Check that file exists box;
! 41:
! 42: 7. Click OK.
! 43:
! 44: We recommend you to read document on IIS security:
! 45: http://support.microsoft.com/support/kb/articles/Q260/0/69.ASP
E-mail: