Sorry for the wrong question.
I found out that there's no problem with version 0.3 and mod_wsgi.
Both work great as long as I don't attemp to:

1) import a module
2) use a styles sheet (from the "static" folder)
2) render a template (from the "templates" folder)

So I guess something is missing in my Apache configuration, which is
as follows (my site is in the "webpy" folder on my windows Desktop):

###########################################################################
LoadModule wsgi_module modules/mod_wsgi.so

Alias /static/ "C:/Documents and Settings/luismg/Escritorio/webpy/
static/"
Alias /templates/ "C:/Documents and Settings/luismg/Escritorio/webpy/
templates/"

WSGIScriptAlias /webpy/ "C:/Documents and Settings/luismg/Escritorio/
webpy/"

<Directory "C:/Documents and Settings/luismg/Escritorio/webpy/">  #
this is because my sit is outside the server's root
Order allow,deny
Allow from all
</Directory>

###########################################################################

Any help would be much appreciated...
Luis



On 7 mar, 13:29, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> You mean with the built-in server?
> Yes, it does.
>
> On 7 mar, 13:22, "Anand Chitipothu" <[EMAIL PROTECTED]> wrote:
>
> > On Fri, Mar 7, 2008 at 8:27 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> > > One final question:
>
> > > Even though the script above works fine, trying to use the new feature
> > > of v. 0.3 (web.auto_application), gives me multiple error messages.
> > > This feature is to avoid having to create the urls mapping by hand.
>
> > > Is there any way to make it work with wsgi?
>
> > Does it work from command line?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to