You are here

INSTALL.txt in ImageCache 6.2

Same filename and directory in other branches
  1. 5.2 INSTALL.txt
For ImageCache to work properly it needs to be able to make use fou clean URLs.
This requires some webserver specific setup.

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. For ImageCache to work properly it needs to be able to make use fou clean URLs.
  2. This requires some webserver specific setup.
  3. Apache2 + mod_rewrite
  4. Works out of the box.
  5. LightHTTPD pre-1.4.24:
  6. http://nordisch.org/2007/2/6/drupal-on-lighttpd-with-clean-urls
  7. LightHTTPD 1.4.24 and later:
  8. https://veracium.com/content/imagecache-lighttpd-witho
  9. IIS 6:
  10. add an error404.asp that passed everything to drupal.
  11. <%
  12. Response.Expires=0
  13. strQString=Request.ServerVariables("QUERY_STRING")
  14. If (InStr(strQString,"/d5/")) Then
  15. pos=Instr(strQString,"/d5/")+3
  16. Id=Right(strQString,Len(strQString)-pos)
  17. Response.Redirect("/d5/index.php?q=" & Id)
  18. End If
  19. Response.Redirect("index.htm")
  20. %>