**********************************************************
1. Add your apache Document root as the default Webkit context
2. Add your webkit location:
<Location /WK> WKServer localhost 8086 SetHandler webkit-handler </Location>
3. Now make Apache associate py files with the /wk location
Action py-serverpages /WK/ AddType py-serverpages .py
**********************************************************
Here is my Apache config.
LoadModule webkit_module modules/mod_webkit.so
<Location /servlet>
WKServer localhost 8086
SetHandler webkit-handler
</Location>
Action py-serverpages /servlet/
AddType py-serverpages .psp
AddType py-serverpages .py
***********************************************************
I've done all of these things, but I'm confused. When I make a request, say Main.py, I get this error FROM WEBKIT.
The page you requested, */Main.py*, was not found on this server.
Webkit is processing the request, but it is appending it with '/'. Any ideas why?
Also, what is the point of adding Apache's root to my WebKit config? Is it to serve up static content from Apache?
Randall
------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
