home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 May / Gamestar_62_2004-05_dvd.iso / Programy / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252366_ssi.xml < prev    next >
Extensible Markup Language  |  2003-04-15  |  19KB  |  471 lines

  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <manualpage metafile="ssi.xml.meta">
  5. <parentdocument href="./">How-To / Tutorials</parentdocument>
  6.  
  7. <title>Apache Tutorial: Introduction to Server Side Includes</title>
  8.  
  9. <summary>
  10. <p>Server-side includes provide a means to add dynamic content to
  11. existing HTML documents.</p>
  12. </summary>
  13.  
  14. <section id="related"><title>Introduction</title>
  15.  <related>
  16.     <modulelist>
  17.     <module>mod_include</module>
  18.     <module>mod_cgi</module>
  19.     <module>mod_expires</module>
  20.     </modulelist>
  21.  
  22.     <directivelist>
  23.     <directive module="core">Options</directive>
  24.     <directive module="mod_include">XBitHack</directive>
  25.     <directive module="mod_mime">AddType</directive>
  26.     <directive module="core">SetOutputFilter</directive>
  27.     <directive module="mod_setenvif">BrowserMatchNoCase</directive>
  28.     </directivelist>
  29. </related>
  30.  
  31.     <p>This article deals with Server Side Includes, usually called
  32.     simply SSI. In this article, I'll talk about configuring your
  33.     server to permit SSI, and introduce some basic SSI techniques
  34.     for adding dynamic content to your existing HTML pages.</p>
  35.  
  36.     <p>In the latter part of the article, we'll talk about some of
  37.     the somewhat more advanced things that can be done with SSI,
  38.     such as conditional statements in your SSI directives.</p>
  39.  
  40. </section>
  41.  
  42. <section id="what"><title>What are SSI?</title>
  43.  
  44.     <p>SSI (Server Side Includes) are directives that are placed in
  45.     HTML pages, and evaluated on the server while the pages are
  46.     being served. They let you add dynamically generated content to
  47.     an existing HTML page, without having to serve the entire page
  48.     via a CGI program, or other dynamic technology.</p>
  49.  
  50.     <p>The decision of when to use SSI, and when to have your page
  51.     entirely generated by some program, is usually a matter of how
  52.     much of the page is static, and how much needs to be
  53.     recalculated every time the page is served. SSI is a great way
  54.     to add small pieces of information, such as the current time.
  55.     But if a majority of your page is being generated at the time
  56.     that it is served, you need to look for some other
  57.     solution.</p>
  58. </section>
  59.  
  60. <section id="configuring">
  61. <title>Configuring your server to permit SSI</title>
  62.  
  63.     <p>To permit SSI on your server, you must have the following
  64.     directive either in your <code>httpd.conf</code> file, or in a
  65.     <code>.htaccess</code> file:</p>
  66. <example>
  67.         Options +Includes
  68. </example>
  69.  
  70.     <p>This tells Apache that you want to permit files to be parsed
  71.     for SSI directives.  Note that most configurations contain
  72.     multiple <directive module="core">Options</directive> directives
  73.     that can override each other.  You will probably need to apply the
  74.     <code>Options</code> to the specific directory where you want SSI
  75.     enabled in order to assure that it gets evaluated last.</p>
  76.  
  77.     <p>Not just any file is parsed for SSI directives. You have to
  78.     tell Apache which files should be parsed. There are two ways to
  79.     do this. You can tell Apache to parse any file with a
  80.     particular file extension, such as <code>.shtml</code>, with
  81.     the following directives:</p>
  82. <example>
  83.         AddType text/html .shtml<br />
  84.     AddOutputFilter INCLUDES .shtml
  85. </example>
  86.  
  87.     <p>One disadvantage to this approach is that if you wanted to
  88.     add SSI directives to an existing page, you would have to
  89.     change the name of that page, and all links to that page, in
  90.     order to give it a <code>.shtml</code> extension, so that those
  91.     directives would be executed.</p>
  92.  
  93.     <p>The other method is to use the <directive 
  94.     module="mod_include">XBitHack</directive> directive:</p>
  95. <example>
  96.         XBitHack on
  97. </example>
  98.  
  99.     <p><directive module="mod_include">XBitHack</directive>
  100.     tells Apache to parse files for SSI
  101.     directives if they have the execute bit set. So, to add SSI
  102.     directives to an existing page, rather than having to change
  103.     the file name, you would just need to make the file executable
  104.     using <code>chmod</code>.</p>
  105. <example>
  106.         chmod +x pagename.html
  107. </example>
  108.  
  109.     <p>A brief comment about what not to do. You'll occasionally
  110.     see people recommending that you just tell Apache to parse all
  111.     <code>.html</code> files for SSI, so that you don't have to
  112.     mess with <code>.shtml</code> file names. These folks have
  113.     perhaps not heard about <directive 
  114.     module="mod_include">XBitHack</directive>. The thing to
  115.     keep in mind is that, by doing this, you're requiring that
  116.     Apache read through every single file that it sends out to
  117.     clients, even if they don't contain any SSI directives. This
  118.     can slow things down quite a bit, and is not a good idea.</p>
  119.  
  120.     <p>Of course, on Windows, there is no such thing as an execute
  121.     bit to set, so that limits your options a little.</p>
  122.  
  123.     <p>In its default configuration, Apache does not send the last
  124.     modified date or content length HTTP headers on SSI pages,
  125.     because these values are difficult to calculate for dynamic
  126.     content. This can prevent your document from being cached, and
  127.     result in slower perceived client performance. There are two
  128.     ways to solve this:</p>
  129.  
  130.     <ol>
  131.       <li>Use the <code>XBitHack Full</code> configuration. This
  132.       tells Apache to determine the last modified date by looking
  133.       only at the date of the originally requested file, ignoring
  134.       the modification date of any included files.</li>
  135.  
  136.       <li>Use the directives provided by 
  137.       <module>mod_expires</module> to set an explicit expiration
  138.       time on your files, thereby letting browsers and proxies
  139.       know that it is acceptable to cache them.</li>
  140.     </ol>
  141. </section>
  142.  
  143. <section id="basic"><title>Basic SSI directives</title>
  144.  
  145.     <p>SSI directives have the following syntax:</p>
  146. <example>
  147.         <!--#element attribute=value attribute=value ... -->
  148. </example>
  149.  
  150.     <p>It is formatted like an HTML comment, so if you don't have
  151.     SSI correctly enabled, the browser will ignore it, but it will
  152.     still be visible in the HTML source. If you have SSI correctly
  153.     configured, the directive will be replaced with its
  154.     results.</p>
  155.  
  156.     <p>The element can be one of a number of things, and we'll talk
  157.     some more about most of these in the next installment of this
  158.     series. For now, here are some examples of what you can do with
  159.     SSI</p>
  160.  
  161. <section id="todaysdate"><title>Today's date</title>
  162.  
  163. <example>
  164.         <!--#echo var="DATE_LOCAL" -->
  165. </example>
  166.  
  167.     <p>The <code>echo</code> element just spits out the value of a
  168.     variable. There are a number of standard variables, which
  169.     include the whole set of environment variables that are
  170.     available to CGI programs. Also, you can define your own
  171.     variables with the <code>set</code> element.</p>
  172.  
  173.     <p>If you don't like the format in which the date gets printed,
  174.     you can use the <code>config</code> element, with a
  175.     <code>timefmt</code> attribute, to modify that formatting.</p>
  176.  
  177. <example>
  178.         <!--#config timefmt="%A %B %d, %Y" --><br />
  179.         Today is <!--#echo var="DATE_LOCAL" -->
  180. </example>
  181. </section>
  182.  
  183. <section id="lastmodified"><title>Modification date of the file</title>
  184.  
  185. <example>
  186.         This document last modified <!--#flastmod file="index.html" -->
  187. </example>
  188.  
  189.     <p>This element is also subject to <code>timefmt</code> format
  190.     configurations.</p>
  191. </section>
  192.  
  193. <section id="cgi"><title>Including the results of a CGI program</title>
  194.  
  195.     <p>This is one of the more common uses of SSI - to output the
  196.     results of a CGI program, such as everybody's favorite, a ``hit
  197.     counter.''</p>
  198.  
  199. <example>
  200.         <!--#include virtual="/cgi-bin/counter.pl" -->
  201. </example>
  202.  
  203. </section>
  204. </section>
  205.  
  206. <section id="additionalexamples">
  207. <title>Additional examples</title>
  208.  
  209.     <p>Following are some specific examples of things you can do in
  210.     your HTML documents with SSI.</p>
  211.  
  212. <section id="docmodified"><title>When was this document
  213. modified?</title>
  214.  
  215.     <p>Earlier, we mentioned that you could use SSI to inform the
  216.     user when the document was most recently modified. However, the
  217.     actual method for doing that was left somewhat in question. The
  218.     following code, placed in your HTML document, will put such a
  219.     time stamp on your page. Of course, you will have to have SSI
  220.     correctly enabled, as discussed above.</p>
  221. <example>
  222.         <!--#config timefmt="%A %B %d, %Y" --><br />
  223.         This file last modified <!--#flastmod file="ssi.shtml" -->
  224. </example>
  225.  
  226.     <p>Of course, you will need to replace the
  227.     <code>ssi.shtml</code> with the actual name of the file that
  228.     you're referring to. This can be inconvenient if you're just
  229.     looking for a generic piece of code that you can paste into any
  230.     file, so you probably want to use the
  231.     <code>LAST_MODIFIED</code> variable instead:</p>
  232. <example>
  233.         <!--#config timefmt="%D" --><br />
  234.         This file last modified <!--#echo var="LAST_MODIFIED" -->
  235. </example>
  236.  
  237.     <p>For more details on the <code>timefmt</code> format, go to
  238.     your favorite search site and look for <code>strftime</code>. The
  239.     syntax is the same.</p>
  240. </section>
  241.  
  242. <section id="standard-footer">
  243. <title>Including a standard footer</title>
  244.  
  245.     <p>If you are managing any site that is more than a few pages,
  246.     you may find that making changes to all those pages can be a
  247.     real pain, particularly if you are trying to maintain some kind
  248.     of standard look across all those pages.</p>
  249.  
  250.     <p>Using an include file for a header and/or a footer can
  251.     reduce the burden of these updates. You just have to make one
  252.     footer file, and then include it into each page with the
  253.     <code>include</code> SSI command. The <code>include</code>
  254.     element can determine what file to include with either the
  255.     <code>file</code> attribute, or the <code>virtual</code>
  256.     attribute. The <code>file</code> attribute is a file path,
  257.     <em>relative to the current directory</em>. That means that it
  258.     cannot be an absolute file path (starting with /), nor can it
  259.     contain ../ as part of that path. The <code>virtual</code>
  260.     attribute is probably more useful, and should specify a URL
  261.     relative to the document being served. It can start with a /,
  262.     but must be on the same server as the file being served.</p>
  263. <example>
  264.         <!--#include virtual="/footer.html" -->
  265. </example>
  266.  
  267.     <p>I'll frequently combine the last two things, putting a
  268.     <code>LAST_MODIFIED</code> directive inside a footer file to be
  269.     included. SSI directives can be contained in the included file,
  270.     and includes can be nested - that is, the included file can
  271.     include another file, and so on.</p>
  272. </section>
  273.  
  274. </section>
  275.  
  276. <section id="config">
  277. <title>What else can I config?</title>
  278.  
  279.     <p>In addition to being able to <code>config</code> the time
  280.     format, you can also <code>config</code> two other things.</p>
  281.  
  282.     <p>Usually, when something goes wrong with your SSI directive,
  283.     you get the message</p>
  284. <example>
  285.         [an error occurred while processing this directive]
  286. </example>
  287.  
  288.     <p>If you want to change that message to something else, you
  289.     can do so with the <code>errmsg</code> attribute to the
  290.     <code>config</code> element:</p>
  291. <example>
  292.         <!--#config errmsg="[It appears that you don't know how to use SSI]" -->
  293. </example>
  294.  
  295.     <p>Hopefully, end users will never see this message, because
  296.     you will have resolved all the problems with your SSI
  297.     directives before your site goes live. (Right?)</p>
  298.  
  299.     <p>And you can <code>config</code> the format in which file
  300.     sizes are returned with the <code>sizefmt</code> attribute. You
  301.     can specify <code>bytes</code> for a full count in bytes, or
  302.     <code>abbrev</code> for an abbreviated number in Kb or Mb, as
  303.     appropriate.</p>
  304.     </section>
  305.  
  306. <section id="exec">
  307.     <title>Executing commands</title>
  308.  
  309.     <p>I expect that I'll have an article some time in the coming
  310.     months about using SSI with small CGI programs. For now, here's
  311.     something else that you can do with the <code>exec</code>
  312.     element. You can actually have SSI execute a command using the
  313.     shell (<code>/bin/sh</code>, to be precise - or the DOS shell,
  314.     if you're on Win32). The following, for example, will give you
  315.     a directory listing.</p>
  316. <example>
  317.         <pre><br />
  318.         <!--#exec cmd="ls" --><br />
  319.         </pre>
  320. </example>
  321.  
  322.     <p>or, on Windows</p>
  323. <example>
  324.         <pre><br />
  325.         <!--#exec cmd="dir" --><br />
  326.         </pre>
  327. </example>
  328.  
  329.     <p>You might notice some strange formatting with this directive
  330.     on Windows, because the output from <code>dir</code> contains
  331.     the string ``<<code>dir</code>>'' in it, which confuses
  332.     browsers.</p>
  333.  
  334.     <p>Note that this feature is exceedingly dangerous, as it will
  335.     execute whatever code happens to be embedded in the
  336.     <code>exec</code> tag. If you have any situation where users
  337.     can edit content on your web pages, such as with a
  338.     ``guestbook'', for example, make sure that you have this
  339.     feature disabled. You can allow SSI, but not the
  340.     <code>exec</code> feature, with the <code>IncludesNOEXEC</code>
  341.     argument to the <code>Options</code> directive.</p>
  342.     </section>
  343.  
  344. <section id="advanced">
  345. <title>Advanced SSI techniques</title>
  346.  
  347.     <p>In addition to spitting out content, Apache SSI gives you
  348.     the option of setting variables, and using those variables in
  349.     comparisons and conditionals.</p>
  350.  
  351. <section id="caveat"><title>Caveat</title>
  352.  
  353.     <p>Most of the features discussed in this article are only
  354.     available to you if you are running Apache 1.2 or later. Of
  355.     course, if you are not running Apache 1.2 or later, you need to
  356.     upgrade immediately, if not sooner. Go on. Do it now. We'll
  357.     wait.</p>
  358. </section>
  359.  
  360. <section id="variables"><title>Setting variables</title>
  361.  
  362.     <p>Using the <code>set</code> directive, you can set variables
  363.     for later use. We'll need this later in the discussion, so
  364.     we'll talk about it here. The syntax of this is as follows:</p>
  365. <example>
  366.         <!--#set var="name" value="Rich" -->
  367. </example>
  368.  
  369.     <p>In addition to merely setting values literally like that,
  370.     you can use any other variable, including, for example,
  371.     environment variables, or some of the variables we discussed in
  372.     the last article (like <code>LAST_MODIFIED</code>, for example)
  373.     to give values to your variables. You will specify that
  374.     something is a variable, rather than a literal string, by using
  375.     the dollar sign ($) before the name of the variable.</p>
  376. <example>
  377.         <!--#set var="modified" value="$LAST_MODIFIED" -->
  378. </example>
  379.  
  380.     <p>To put a literal dollar sign into the value of your
  381.     variable, you need to escape the dollar sign with a
  382.     backslash.</p>
  383. <example>
  384.         <!--#set var="cost" value="\$100" -->
  385. </example>
  386.  
  387.     <p>Finally, if you want to put a variable in the midst of a
  388.     longer string, and there's a chance that the name of the
  389.     variable will run up against some other characters, and thus be
  390.     confused with those characters, you can place the name of the
  391.     variable in braces, to remove this confusion. (It's hard to
  392.     come up with a really good example of this, but hopefully
  393.     you'll get the point.)</p>
  394. <example>
  395.         <!--#set var="date" value="${DATE_LOCAL}_${DATE_GMT}" -->
  396. </example>
  397. </section>
  398.  
  399. <section id="conditional">
  400. <title>Conditional expressions</title>
  401.  
  402.     <p>Now that we have variables, and are able to set and compare
  403.     their values, we can use them to express conditionals. This
  404.     lets SSI be a tiny programming language of sorts.
  405.     <module>mod_include</module> provides an <code>if</code>,
  406.     <code>elif</code>, <code>else</code>, <code>endif</code>
  407.     structure for building conditional statements. This allows you
  408.     to effectively generate multiple logical pages out of one
  409.     actual page.</p>
  410.  
  411.     <p>The structure of this conditional construct is:</p>
  412. <example>
  413.     <!--#if expr="test_condition" --><br />
  414.     <!--#elif expr="test_condition" --><br />
  415.     <!--#else --><br />
  416.     <!--#endif -->
  417. </example>
  418.  
  419.     <p>A <em>test_condition</em> can be any sort of logical
  420.     comparison - either comparing values to one another, or testing
  421.     the ``truth'' of a particular value. (A given string is true if
  422.     it is nonempty.) For a full list of the comparison operators
  423.     available to you, see the <module>mod_include</module>
  424.     documentation. Here are some examples of how one might use this
  425.     construct.</p>
  426.  
  427.     <p>In your configuration file, you could put the following
  428.     line:</p>
  429. <example>
  430.         BrowserMatchNoCase macintosh Mac<br />
  431.         BrowserMatchNoCase MSIE InternetExplorer
  432. </example>
  433.  
  434.     <p>This will set environment variables ``Mac'' and
  435.     ``InternetExplorer'' to true, if the client is running Internet
  436.     Explorer on a Macintosh.</p>
  437.  
  438.     <p>Then, in your SSI-enabled document, you might do the
  439.     following:</p>
  440. <example>
  441.         <!--#if expr="${Mac} && ${InternetExplorer}" --><br />
  442.         Apologetic text goes here<br />
  443.         <!--#else --><br />
  444.         Cool JavaScript code goes here<br />
  445.         <!--#endif -->
  446. </example>
  447.  
  448.     <p>Not that I have anything against IE on Macs - I just
  449.     struggled for a few hours last week trying to get some
  450.     JavaScript working on IE on a Mac, when it was working
  451.     everywhere else. The above was the interim workaround.</p>
  452.  
  453.     <p>Any other variable (either ones that you define, or normal
  454.     environment variables) can be used in conditional statements.
  455.     With Apache's ability to set environment variables with the
  456.     <code>SetEnvIf</code> directives, and other related directives,
  457.     this functionality can let you do some pretty involved dynamic
  458.     stuff without ever resorting to CGI.</p>
  459. </section>
  460. </section>
  461.  
  462. <section id="conclusion"><title>Conclusion</title>
  463.  
  464.     <p>SSI is certainly not a replacement for CGI, or other
  465.     technologies used for generating dynamic web pages. But it is a
  466.     great way to add small amounts of dynamic content to pages,
  467.     without doing a lot of extra work.</p>
  468. </section>
  469.  
  470. </manualpage>
  471.