| Author |
|
Vlasat Newbie

Joined: 01 April 2008 Location: Czech Republic
Online Status: Offline Posts: 5
|
| Posted: 01 April 2008 at 9:14am | IP Logged
|
|
|
Hello,
I have bought 3 licences, my registration name is CHAPS spol. s r.o. I use ISAPI Rewrite version 3.1.0.44, used system is MS Server 2003 SP1.
Problem is, taht ISAPI rewrite sometimes match rule and sometimes the same rule do not match. Problematic rule is: RewriteRule AJAXService\.asmx(.*)$ $0 [NC, L, QSA].
In the version 3.1.0.32 it seems OK. But now I download new x64 version, becasue our application migrate to x64 system.
I attached a Rewrite.log file fragment. The first row documents the error, the other lines shows success match of the rule. On the first row is also any suspect string: "rid#17899160/initial/1".
192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:05:52 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial/1] (2) init rewrite engine with requested uri /vlakyautobusy/odjezdy/AjaxService.asmx/GetDiv 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (2) init rewrite engine with requested uri /vlakyautobusy/odjezdy/AjaxService.asmx/GetDiv 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (1) Htaccess process request C:\Program Files\Helicon\ISAPI_Rewrite3\httpd.conf 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (1) Htaccess process request c:\inetpub\wwwroot\idosnew\.htaccess 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (3) applying pattern '(img|jscript|css)/(.*)$' to uri 'vlakyautobusy/odjezdy/AjaxService.asmx/GetDiv' 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (3) applying pattern 'AJAXService\.asmx(.*)$' to uri 'vlakyautobusy/odjezdy/AjaxService.asmx/GetDiv' 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (1) escaping /AjaxService.asmx/GetDiv 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (1) Rewrite URL to >> /AjaxService.asmx/GetDiv 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (2) rewrite 'vlakyautobusy/odjezdy/AjaxService.asmx/GetDiv' -> '/AjaxService.asmx/GetDiv' 192.168.0.137 192.168.0.137 Tue, 01-Apr-2008 14:07:01 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (2) internal redirect with /AjaxService.asmx/GetDiv [INTERNAL REDIRECT]
----------------------
My whole .htacces file is:
RewriteMap mapfile txt:data/Rewrite.config RewriteRule (img|jscript|css)/(.*)$ $0 [NC, L, QSA] #this is problematic rule RewriteRule AJAXService\.asmx(.*)$ $0 [NC, L, QSA] RewriteRule favicon\.ico$ $0 [NC, L, QSA] RewriteRule ([^/]+/)+([^/]+.aspx)$ $2 [NC, L, QSA] RewriteRule ^(idos|spojeni|spoje|vyvesky|objekty|odjezdy|odkazy)/?$ ${mapfile:$1}[NC, L, QSA] RewriteRule ^([^/\.]+)/?$ ?tt=${mapfile:$1} [NC, L, QSA] RewriteRule ^(idos|spojeni|spoje|vyvesky|objekty|odjezdy|odkazy)/([^/\.]+)/?$ ${mapfile:$1}?tt=${mapfile:$2} [NC, L, QSA] RewriteRule ^([^/\.]+)/(idos|spojeni|spoje|vyvesky|objekty|odjezdy|odkazy)/?$ ${mapfile:$2}?tt=${mapfile:$1} [NC, L, QSA]
Can you help me? thanks
|
| Back to Top |
|
| |
Anton Moderator Group

Joined: 30 January 2007 Location: Ukraine
Online Status: Offline Posts: 7309
|
| Posted: 02 April 2008 at 5:02am | IP Logged
|
|
|
Please try to use the following config:
RewriteMap mapfile txt:data/Rewrite.config RewriteRule (img|jscript|css)/(.*)$ - [NC, L] #this is problematic rule RewriteRule AJAXService\.asmx(.*)$ - [NC, L] RewriteRule favicon\.ico$ - [NC, L] RewriteRule ([^/]+/)+([^/]+.aspx)$ $2 [NC, L, QSA] RewriteRule ^(idos|spojeni|spoje|vyvesky|objekty|odjezdy|odkazy)/?$ ${mapfile:$1}[NC,L,QSA] RewriteRule ^([^/\.]+)/?$ ?tt=${mapfile:$1} [NC, L, QSA] RewriteRule ^(idos|spojeni|spoje|vyvesky|objekty|odjezdy|odkazy)/([^/\.]+)/?$ ${mapfile:$1}?tt=${mapfile:$2} [NC, L, QSA] RewriteRule ^([^/\.]+)/(idos|spojeni|spoje|vyvesky|objekty|odjezdy|odkazy)/?$ ${mapfile:$2}?tt=${mapfile:$1} [NC, L, QSA]
__________________ Regards,
Anton
|
| Back to Top |
|
| |
Vlasat Newbie

Joined: 01 April 2008 Location: Czech Republic
Online Status: Offline Posts: 5
|
| Posted: 02 April 2008 at 7:55am | IP Logged
|
|
|
hi, your suggestion unfortunately do not work.
You suggest do not change requests that target to file AJAXService.asmx, but I need change them! I need to cut the prefix, so I thing that my rule RewriteRule AJAXService\.asmx(.*)$ $0 [NC, L, QSA] is OK.
For example I need the reqeuest "vlakyautobusy/spojeni/AJAXService.asmx/SearchOnGlobalList" change to "AJAXService.asmx/SearchOnGlobalList".
ISAPI Rewrite sometimes this change perform but sometimes not.
I attach a fragment of Rewrite.log file. Here is to see that first and second request are not changed (there is only one line about this request). But the third request is chaged OK (there is 9 lines about this request).
192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:49 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial/1] (2) init rewrite engine with requested uri /vlakyautobusy/spojeni/AJAXService.asmx/SearchOnGlobalList 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:49 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial/1] (2) init rewrite engine with requested uri /vlakyautobusy/spojeni/AJAXService.asmx/SearchOnGlobalList 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (2) init rewrite engine with requested uri /vlakyautobusy/spojeni/AJAXService.asmx/SearchOnGlobalList 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (1) Htaccess process request C:\Program Files\Helicon\ISAPI_Rewrite3\httpd.conf 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (1) Htaccess process request c:\appwww\idos\.htaccess 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (3) applying pattern '(img|jscript|css)/(.*)$' to uri 'vlakyautobusy/spojeni/AJAXService.asmx/SearchOnGlobalList' 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (3) applying pattern 'AJAXService\.asmx(.*)$' to uri 'vlakyautobusy/spojeni/AJAXService.asmx/SearchOnGlobalList' 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (1) escaping /AJAXService.asmx/SearchOnGlobalList 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (1) Rewrite URL to >> /AJAXService.asmx/SearchOnGlobalList 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (2) rewrite 'vlakyautobusy/spojeni/AJAXService.asmx/SearchOnGlobalList' -> '/AJAXService.asmx/SearchOnGlobalList' 192.168.0.112 192.168.0.112 Wed, 02-Apr-2008 13:30:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17899456/initial] (2) internal redirect with /AJAXService.asmx/SearchOnGlobalList [INTERNAL REDIRECT]
----------------------------------
In the version 3.1.0.32 this work fine. Is there any changes list between this version and the version 3.1.0.44? May by is there any changes, that I missed.
Thanks for your help
|
| Back to Top |
|
| |
Anton Moderator Group

Joined: 30 January 2007 Location: Ukraine
Online Status: Offline Posts: 7309
|
| Posted: 03 April 2008 at 5:49am | IP Logged
|
|
|
Please try to add NS flag to your rule. Then enable logging by putting RewriteLogLevel 9 into httpd.conf. And show all rewrite and IIS logs records for this rule RewriteRule AJAXService\.asmx(.*)$ $0 [NC, L, QSA]
__________________ Regards,
Anton
|
| Back to Top |
|
| |
Vlasat Newbie

Joined: 01 April 2008 Location: Czech Republic
Online Status: Offline Posts: 5
|
| Posted: 03 April 2008 at 10:27am | IP Logged
|
|
|
Excuse me, but what should happen? I add a NS flag to problematic rule and nothing changed. (In your documentation is NS flag described as "Unsupported. Meaningless for IIS." Is it OK?)
Is it possible to download ISAPI Rewrite version 3.1.0.32 for 64-bit system? Because I use version 3.1.0.32 for 32-bit system and it works fine. I need quckly migrate my application to 64bit system, so I think that version 3.1.0.32 x64 can resolve my problems.
I attached log files created with the flag NS in then rule. -----------------------------------------------------------------
Here is fragment of Rewrite.log, problematic behaviour you can see at the first and second line:
192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:21:53 GMT [idosnew.chaps.cz/sid#899961212][rid#17900048/initial/1] (2) init rewrite engine with requested uri /praha/spojeni/AjaxService.asmx/GetDiv 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:28 GMT [idosnew.chaps.cz/sid#899961212][rid#17899752/initial/1] (2) init rewrite engine with requested uri /praha/spojeni/AjaxService.asmx/GetDiv 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (2) init rewrite engine with requested uri /praha/spojeni/AjaxService.asmx/GetDiv 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (1) Htaccess process request C:\Program Files\Helicon\ISAPI_Rewrite3\httpd.conf 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (1) Htaccess process request c:\appwww\idos\.htaccess 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (3) applying pattern '(img|jscript|css)/(.*)$' to uri 'praha/spojeni/AjaxService.asmx/GetDiv' 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (3) applying pattern 'AJAXService\.asmx(.*)$' to uri 'praha/spojeni/AjaxService.asmx/GetDiv' 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (1) escaping /AjaxService.asmx/GetDiv 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (1) Rewrite URL to >> /AjaxService.asmx/GetDiv 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (2) rewrite 'praha/spojeni/AjaxService.asmx/GetDiv' -> '/AjaxService.asmx/GetDiv' 192.168.0.112 192.168.0.112 Thu, 03-Apr-2008 16:22:31 GMT [idosnew.chaps.cz/sid#899961212][rid#17899160/initial] (2) internal redirect with /AjaxService.asmx/GetDiv [INTERNAL REDIRECT]
And fragmet of IIS log correspond to the items from Rewrite.log:
2008-04-03 14:21:54 W3SVC899961212 192.168.0.31 POST /praha/spojeni/AjaxService.asmx/GetDiv - 80 - 192.168.0.112 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+InfoPath.2;+.NET+CLR+3.0.04506.648;+.NET+CLR+3.5.21022) 500 0 0 2008-04-03 14:22:28 W3SVC899961212 192.168.0.31 POST /praha/spojeni/AjaxService.asmx/GetDiv - 80 - 192.168.0.112 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+InfoPath.2;+.NET+CLR+3.0.04506.648;+.NET+CLR+3.5.21022) 500 0 0 2008-04-03 14:22:31 W3SVC899961212 192.168.0.31 POST /AjaxService.asmx/GetDiv - 80 - 192.168.0.112 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+InfoPath.2;+.NET+CLR+3.0.04506.648;+.NET+CLR+3.5.21022) 200 0 0
------
thanks
|
| Back to Top |
|
| |
Yaroslav Moderator Group

Joined: 15 August 2002
Online Status: Offline Posts: 6470
|
| Posted: 04 April 2008 at 7:01am | IP Logged
|
|
|
I'm not sure how your rule worked with build 32 because it shouldn't. Please try this rule instead:
RewriteRule (AJAXService\.asmx.*)$ $1 [NC, L]
And make sure you have not installed ISAPI_Rewrite filter manually to your site - it may lead to error since it is automatically installed globally.
Here is a 32 build:
http://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0032_x64.msi
__________________ Yaroslav Govorunov,
Helicon Tech
|
| Back to Top |
|
| |
Vlasat Newbie

Joined: 01 April 2008 Location: Czech Republic
Online Status: Offline Posts: 5
|
| Posted: 04 April 2008 at 11:20am | IP Logged
|
|
|
Thanks for versin 3.1.0.32 x64! I migrate my application to 64bit system and with this version it works fine.
I change my RewriteRule by your pattern, but on the version 3.1.0.44 it always get the same problem. But when I uninstall version 3.1.0.44 and install 3.1.0.32 it start work OK.
I use only automatical installation of ISAPI Rewrite, I do not make any changes to the default values. I never install ISAPI Rewrite manualy.
So I think that in the version 3.1.0.44 is any bug . If you wish I can help you find it. If you get me access to download all the versions from 3.1.0.32 to 3.1.0.44 I can try install them and find which version still work and which not.
thanks
|
| Back to Top |
|
| |
Yaroslav Moderator Group

Joined: 15 August 2002
Online Status: Offline Posts: 6470
|
| Posted: 05 April 2008 at 6:31am | IP Logged
|
|
|
Can you please check permissions on folder with configuration files? There should be "List folder content" permission on this folder for ISAPI_Reewrite. Otherwice ISAPI_Rewrite will be unable to attach watcher to this directory to watch for configuration changes. While in 32 build it will lead to the changes will never be reloaded, in build 44 it will lead that configuration file will be reloaded on every request, which in theory may lead to not rewriting some URLs under high load.
We will change this behavior in next build and add a warning to log file is watcher failed to attach.
__________________ Yaroslav Govorunov,
Helicon Tech
|
| Back to Top |
|
| |
Vlasat Newbie

Joined: 01 April 2008 Location: Czech Republic
Online Status: Offline Posts: 5
|
| Posted: 08 April 2008 at 2:40am | IP Logged
|
|
|
We checked the rights, all seems OK. We installed version 44 and using Filemon.exe we filtered access to file .htaccess. Here are the results:
1 8:58:02 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\.htaccess SUCCESS Attributes: N 2 8:58:02 w3wp.exe:3400 OPEN C:\appwww\idos\.htaccess SUCCESS Options: Open Access: All 3 8:58:02 w3wp.exe:3400 OPEN C:\appwww\idos\.htaccess SUCCESS Options: Open Access: All 4 8:58:02 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\.htaccess SUCCESS FileInternalInformation 5 8:58:02 w3wp.exe:3400 CLOSE C:\appwww\idos\.htaccess SUCCESS 6 8:58:02 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\.htaccess SUCCESS Length: 1876 7 8:58:02 w3wp.exe:3400 READ C:\appwww\idos\.htaccess SUCCESS Offset: 0 Length: 1876 8 8:58:02 w3wp.exe:3400 CLOSE C:\appwww\idos\.htaccess SUCCESS 9 8:58:02 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\.htaccess PATH NOT FOUND Attributes: Error 10 8:58:02 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\.htaccess PATH NOT FOUND Options: Open Access: All 11 8:58:02 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\.htaccess PATH NOT FOUND Options: Open Access: All 12 8:58:02 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\spojeni\.htaccess PATH NOT FOUND Attributes: Error 13 8:58:02 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\.htaccess PATH NOT FOUND Options: Open Access: All 14 8:58:02 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\.htaccess PATH NOT FOUND Options: Open Access: All 15 8:58:05 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\spojeni\jscript\.htaccess PATH NOT FOUND Attributes: Error 16 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\jscript\.htaccess PATH NOT FOUND Options: Open Access: All 17 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\jscript\.htaccess PATH NOT FOUND Options: Open Access: All 18 8:58:05 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\jscript\.htaccess NOT FOUND Attributes: Error 19 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\jscript\.htaccess NOT FOUND Options: Open Access: All 20 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\jscript\.htaccess NOT FOUND Options: Open Access: All 21 8:58:05 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\spojeni\css\.htaccess PATH NOT FOUND Attributes: Error 22 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\css\.htaccess PATH NOT FOUND Options: Open Access: All 23 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\css\.htaccess PATH NOT FOUND Options: Open Access: All 24 8:58:05 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\css\.htaccess NOT FOUND Attributes: Error 25 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\css\.htaccess NOT FOUND Options: Open Access: All 26 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\css\.htaccess NOT FOUND Options: Open Access: All 27 8:58:05 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\spojeni\img\.htaccess PATH NOT FOUND Attributes: Error 28 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\img\.htaccess PATH NOT FOUND Options: Open Access: All 29 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\img\.htaccess PATH NOT FOUND Options: Open Access: All 30 8:58:05 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\img\.htaccess NOT FOUND Attributes: Error 31 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\img\.htaccess NOT FOUND Options: Open Access: All 32 8:58:05 w3wp.exe:3400 OPEN C:\appwww\idos\img\.htaccess NOT FOUND Options: Open Access: All 33 8:58:06 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\img\tt\.htaccess NOT FOUND Attributes: Error 34 8:58:06 w3wp.exe:3400 OPEN C:\appwww\idos\img\tt\.htaccess NOT FOUND Options: Open Access: All 35 8:58:06 w3wp.exe:3400 OPEN C:\appwww\idos\img\tt\.htaccess NOT FOUND Options: Open Access: All 36 8:58:06 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\spojeni\jscript\calendar\.htaccess PATH NOT FOUND Attributes: Error 37 8:58:06 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\jscript\calendar\.htaccess PATH NOT FOUND Options: Open Access: All 38 8:58:06 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\spojeni\jscript\calendar\.htaccess PATH NOT FOUND Options: Open Access: All 39 8:58:06 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\jscript\calendar\.htaccess NOT FOUND Attributes: Error 40 8:58:06 w3wp.exe:3400 OPEN C:\appwww\idos\jscript\calendar\.htaccess NOT FOUND Options: Open Access: All 41 8:58:06 w3wp.exe:3400 OPEN C:\appwww\idos\jscript\calendar\.htaccess NOT FOUND Options: Open Access: All 42 8:59:23 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\odjezdy\.htaccess PATH NOT FOUND Attributes: Error 43 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\.htaccess PATH NOT FOUND Options: Open Access: All 44 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\.htaccess PATH NOT FOUND Options: Open Access: All 45 8:59:23 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\odjezdy\jscript\.htaccess PATH NOT FOUND Attributes: Error 46 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\jscript\.htaccess PATH NOT FOUND Options: Open Access: All 47 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\jscript\.htaccess PATH NOT FOUND Options: Open Access: All 48 8:59:23 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\odjezdy\css\.htaccess PATH NOT FOUND Attributes: Error 49 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\css\.htaccess PATH NOT FOUND Options: Open Access: All 50 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\css\.htaccess PATH NOT FOUND Options: Open Access: All 51 8:59:23 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\odjezdy\img\.htaccess PATH NOT FOUND Attributes: Error 52 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\img\.htaccess PATH NOT FOUND Options: Open Access: All 53 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\img\.htaccess PATH NOT FOUND Options: Open Access: All 54 8:59:23 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\odjezdy\jscript\calendar\.htaccess PATH NOT FOUND Attributes: Error 55 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\jscript\calendar\.htaccess PATH NOT FOUND Options: Open Access: All 56 8:59:23 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\jscript\calendar\.htaccess PATH NOT FOUND Options: Open Access: All 57 8:59:49 w3wp.exe:3400 QUERY INFORMATION C:\appwww\idos\vlaky\odjezdy\ajaxservice.asmx\.htaccess PATH NOT FOUND Attributes: Error 58 8:59:49 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\ajaxservice.asmx\.htaccess PATH NOT FOUND Options: Open Access: All 59 8:59:49 w3wp.exe:3400 OPEN C:\appwww\idos\vlaky\odjezdy\ajaxservice.asmx\.htaccess PATH NOT FOUND Options: Open Access: All
We have only one file C:\appwww\idos\.htaccess. Directory C:\appwww\idos is app root. As you can see, ISAPI_Rewrite tries to open .htaccess many times even in virtual directories, eg. C:\appwww\idos\vlaky originates in RewriteRule. Lines 57-59 from the listing lead to HTTP500 error.
Any advice?
|
| Back to Top |
|
| |
Yaroslav Moderator Group

Joined: 15 August 2002
Online Status: Offline Posts: 6470
|
| Posted: 09 April 2008 at 8:15am | IP Logged
|
|
|
This is normal. ISAPI_Rewrite need to check somehow whether there is an .htaccess in this directory or not. It actually checks only once per directory till the next restart or directory change.
__________________ Yaroslav Govorunov,
Helicon Tech
|
| Back to Top |
|
| |
|
|