<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
<blockquote cite="mid454A6A58.7040906@sonaural.com" type="cite">
  <blockquote type="cite">
    <pre wrap="">seasidehosting.st FAQ says:
"To make your application accessible from the root, select it as default
entry point on the Seaside configuration page and set the base-path of
the application to "/". Note that this only works with recent versions
of Seaside."

what is the latest, or exact, version needed for this to work?
  
    </pre>
  </blockquote>
  <pre wrap=""><!---->we are trying to get squeakfoundation pier running and not being able to
point it correctly from the seaside application. The version is running
is Seaside2.6b1-lr.50.
is that sufficient?
I've set the items as stated above, but still get the Error: "/" not found.

thanks for any help!

brad
  </pre>
</blockquote>
<br>
I finally just did what I have always done with earlier versions of
Comanche/Seaside.  I subclassed WAKom and implemented #process: as
follows<br>
<br>
process: aRequest <br>
    aRequest url = '/'<br>
        ifTrue: [aRequest url: '/seaside/home'].<br>
    ^ super process: aRequest<br>
<br>
Nevin<br>
</body>
</html>