[Seaside] Re: Kom redirect

Nevin Pratt nevin at bountifulbaby.com
Fri Nov 3 02:49:24 UTC 2006


>> 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?
>>   
>>     
> 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
>   

I finally just did what I have always done with earlier versions of 
Comanche/Seaside.  I subclassed WAKom and implemented #process: as follows

process: aRequest
    aRequest url = '/'
        ifTrue: [aRequest url: '/seaside/home'].
    ^ super process: aRequest

Nevin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20061102/31bb8ef5/attachment.htm


More information about the Seaside mailing list