/[drupal]/contributions/modules/imagecache/INSTALL.txt
ViewVC logotype

Contents of /contributions/modules/imagecache/INSTALL.txt

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download)
Sun May 3 18:00:45 2009 UTC (6 months, 3 weeks ago) by drewish
Branch: MAIN
CVS Tags: DRUPAL-6--2-0-BETA10, HEAD
Branch point for: DRUPAL-6--2
Changes since 1.2: +4 -2 lines
File MIME type: text/plain
Small improvements to the INSTALL.txt file.
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
4 Apache2 + mod_rewrite
5 Works out of the box.
6
7 LightHTTPD:
8 http://nordisch.org/2007/2/6/drupal-on-lighttpd-with-clean-urls
9
10 IIS 6:
11 add an error404.asp that passed everything to drupal.
12
13 <%
14 Response.Expires=0
15 strQString=Request.ServerVariables("QUERY_STRING")
16 If (InStr(strQString,"/d5/")) Then
17 pos=Instr(strQString,"/d5/")+3
18 Id=Right(strQString,Len(strQString)-pos)
19 Response.Redirect("/d5/index.php?q=" & Id)
20 End If
21 Response.Redirect("index.htm")
22 %>
23
24
25

  ViewVC Help
Powered by ViewVC 1.1.2