|
|
|
Проблема решена
Переписал конфиг апача и все заработало. Удалил строчки ╚доброго╩ дяденьки: RewriteEngine On RewriteLogLevel 2 RewriteLog "e:/parser/rewrite.log" Апач тест ругался на первую стоку, я удалил весь блок :)
Вот конфиг:
# Parser NameVirtualHost 127.2.0.2 <VirtualHost 127.2.0.2> ServerName 127.2.0.2 ServerAdmin ya@ya.ya DocumentRoot "e:/parser/files" <Directory "e:/parser/files"> Options Indexes Includes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all </Directory> ScriptAlias /cgi-bin/ "e:/parser/cgi-bin/" <Directory "e:/parser/cgi-bin"> Options ExecCGI Includes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all </Directory> ErrorLog "e:/parser/error.log" CustomLog "e:/parser/custom.log" common AddHandler parsed-html .html Action parsed-html /cgi-bin/parser2.exe <Files ~ "\.cfg$"> Order allow,deny Deny from all </Files> DirectoryIndex index.html index.shtml </VirtualHost>
PS: усем мерси!
|