On Dec 6, 3:04 pm, "Brent Pedersen" <[EMAIL PROTECTED]> wrote: > hi, from the cookbook:http://webpy.org/cookbook/mod_wsgi-apache > > application = web.application(urls, globals()).wsgifunc()
To get both apache and "python index.py" working, I finally got to this: app = web.application(urls, globals()) application = app.wsgifunc() if __name__ == "__main__": app.run() There also doesn't seem to be any more mention of "reloader", but it seems to be on by default now. Perhaps a note somewhere saying it's deprecated, or can be disabled by doing <blah>? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
