IIS/Zope rewrite problem -- .../VirtualHostRoot/_vh_path/ is no t appending "path"
Hey, Have Plone & IIS integrated. Thanks to this article: http://www.zope.org/Members/hiperlogica/ASP404 <http://www.zope.org/Members/hiperlogica/ASP404> Beta 2 In the default.asp: The vhmURL ends up as: " http://172.16.1.78:8810/VirtualHostBase/http/bp.retailpro.com:80/VirtualHost Root/_vh_newbpsite/ <http://172.16.1.78:8810/VirtualHostBase/http/bp.retailpro.com:80/VirtualHos tRoot/_vh_newbpsite/> " but NO urls get: newbpsite appended to: http://bp.retailpro.com <http://bp.retailpro.com> any help is appreciated!! Jason LeMonier Software Engineer Retail Technologies International Office 916.605.7262 Mobile 415.595.0969 Fax 916-914-2132 jlemonier@RetailPro.com
What I did was comment out some of the code in ASP404. In Sub Class_Initialize in Class RequestInfo I have the following: iisPath = Request.serverVariables("PATH_INFO") ' "/some/path/error.asp -> "/some/path" ' or "/error.asp" -> "" iisPath = left(iisPath, inStrRev(iisPath, "/") - 1) '"/some/path" -> ["some", "path"] or '"" -> [] iisPathArray = split(mid(iisPath, 2),"/") '"/some/path" -> "/some/path/" or '"" -> "/" iisPath = iisPath & "/" ' vhmPath = "/_vh_some/_vh_path/" or vhmPath = "/" vhmIISPath = "/" 'Dim name 'For Each name in iisPathArray ' vhmIISPath = vhmIISPath & "_vh_" & name & "/" 'Next Note that some of the lines are commented out. These comments made the URl look "correct" on our installation. Uncomment and/or add the following toward the end of the script to make sure that the URL looks right: ' This should look like the ProxyPass or RewriteRule URL in an Apache+VHM configuration 'Response.Write("<h2>" & vhmURL & "</h2>") 'response.end A "correct" VHM URL should not have the _vh_ in it. Let me know if you have any more questions. Thanks, Andy. On Tue, 2003-11-04 at 12:09, Jason LeMonier wrote:
Hey,
Have Plone & IIS integrated. Thanks to this article: http://www.zope.org/Members/hiperlogica/ASP404 Beta 2
In the default.asp: The vhmURL ends up as: "http://172.16.1.78:8810/VirtualHostBase/http/bp.retailpro.com:80/VirtualHost..." but NO urls get: newbpsite appended to: http://bp.retailpro.com
any help is appreciated!!
Jason LeMonier Software Engineer Retail Technologies International Office 916.605.7262 Mobile 415.595.0969 Fax 916-914-2132 jlemonier@RetailPro.com
______________________________________________________________________ _______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev ) --
Regards, Andrew Rechenberg Infrastructure Team, Sherman Financial Group 513.707.3809
participants (2)
-
Jason LeMonier -
Rechenberg, Andrew