<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-2" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Andreas Nilsson wrote:
<blockquote cite="mid9C45FA14-01AF-11D9-8CB7-000D932C73D0@mac.com"
 type="cite">I'm trying to get seaside to show images on a page, but I
don't
understand where to put the files.
  <br>
Found a FAQ on the web that said something about DocumentRoot in the
application config, but I can't find any setting named DocumentRoot.
  <br>
</blockquote>
It is a Komanche's ModDoc property. I serve seaside/static mixed
requests with this startup code:<br>
<blockquote>seaside := WAKom default.<br>
ma := ModuleAssembly core.<br>
ma serverRoot: FileDirectory default fullName.<br>
ma alias: '/seaside' to: [ma addPlug: [:request | seaside process:
request]].<br>
ma documentRoot: (FileDirectory default fullPathFor: 'files').<br>
ma serveFiles.<br>
(HttpService startOn: 80 named: 'httpd') plug: ma rootModule<br>
</blockquote>
In 'files' directory I keep all static content referenced from root.<br>
<br>
-- <br>
Kamil<br>
<br>
</body>
</html>