2006-06-03 04:20:18 +00:00
< ? php
2006-09-02 02:13:29 +00:00
include ( " ./common.php " );
2006-06-03 04:20:18 +00:00
?>
<! DOCTYPE HTML PUBLIC " -//W3C//DTD XHTML 1.0 Strict//EN " " http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd " >
< html xmlns = " http://www.w3.org/1999/xhtml " >
< head >
< ? php
echo <<< HEAD
< meta http - equiv = " Content-Type " content = " text/html; charset= $charset " />
2006-09-03 02:20:24 +00:00
< meta http - equiv = " Content-Language " content = " $lang " />
2006-06-03 04:20:18 +00:00
< script type = " text/javascript " src = " tablesort.js " charset = " $charset " ></ script >
HEAD ;
?>
< link rel = " stylesheet " type = " text/css " href = " xcache.css " />
2006-09-02 02:13:29 +00:00
< title >< ? php echo _T ( 'XCache Administration Help' ); ?> </title>
2006-06-03 04:20:18 +00:00
< script >
function toggle ( o )
{
o . style . display = o . style . display != 'block' ? 'block' : 'none' ;
}
</ script >
</ head >
< body >
2006-09-02 02:13:29 +00:00
< h1 >< ? php echo _T ( 'XCache Administration Help' ); ?> </h1>
2006-06-03 04:20:18 +00:00
< div id1 = " help " >
2006-09-02 02:13:29 +00:00
< ? php include ( get_language_file ( " help " )); ?>
2006-06-03 04:20:18 +00:00
</ div >
2006-09-02 02:13:29 +00:00
< ? php echo _T ( 'See also' ); ?> : <a href="http://trac.lighttpd.net/xcache/wiki/PhpIni">setting php.ini for XCache</a> in the <a href="http://trac.lighttpd.net/xcache/">XCache wiki</a>
2006-06-03 04:20:18 +00:00
</ body >
</ html >