You are here

INSTALL.txt in ImageCache 5.2

Same filename and directory in other branches
  1. 6.2 INSTALL.txt
Apache2 + mod_rewrite
  Works out of the box..


LightHTTPD pre-1.4.24:
  http://nordisch.org/2007/2/6/drupal-on-lighttpd-with-clean-urls
  
LightHTTPD 1.4.24 and later:
  https://veracium.com/content/imagecache-lighttpd-witho

IIS 6:
  add an error404.asp that passed everything to drupal.

  <%
    Response.Expires=0
    strQString=Request.ServerVariables("QUERY_STRING")
    If (InStr(strQString,"/d5/")) Then
    pos=Instr(strQString,"/d5/")+3
    Id=Right(strQString,Len(strQString)-pos) 
    Response.Redirect("/d5/index.php?q=" & Id)
    End If
    Response.Redirect("index.htm")
  %>



File

INSTALL.txt
View source
  1. Apache2 + mod_rewrite
  2. Works out of the box..
  3. LightHTTPD pre-1.4.24:
  4. http://nordisch.org/2007/2/6/drupal-on-lighttpd-with-clean-urls
  5. LightHTTPD 1.4.24 and later:
  6. https://veracium.com/content/imagecache-lighttpd-witho
  7. IIS 6:
  8. add an error404.asp that passed everything to drupal.
  9. <%
  10. Response.Expires=0
  11. strQString=Request.ServerVariables("QUERY_STRING")
  12. If (InStr(strQString,"/d5/")) Then
  13. pos=Instr(strQString,"/d5/")+3
  14. Id=Right(strQString,Len(strQString)-pos)
  15. Response.Redirect("/d5/index.php?q=" & Id)
  16. End If
  17. Response.Redirect("index.htm")
  18. %>