[web2py] After modifying routes.py, GAE still routing to Welcome rather than my app

2011-11-06 Thread Spring
Hi there,

I'm facing a problem with GAE deployment. GAE still routes to Welcome
rather than my app when hitting www.myapp.com. And because I skipped
the Welcome app in app.yaml, it gives invalid request. Tried
manually to go to www.myapp.com/myapp/default/index, still invalid
request. Things seem to be fine when running the app locally with
both web2py and GAE launcher. I even tried to give a new version
number and re-deploy, but the same happened.

Contents of routes.py modified as follows:

default_application = 'go2chongqing'# ordinarily set in base
routes.py
default_controller = 'default'  # ordinarily set in app-specific
routes.py
default_function = 'index'  # ordinarily set in app-specific
routes.py

routes_app = ((r'/(?Pappgo2chongqing|welcome|admin|app)\b.*',
r'\gapp'),
  (r'(.*)', r'go2chongqing'),
  (r'/?(.*)', r'go2chongqing'))

routes_in and routes_out remain unchanged.
=
Can anybody help on this. Thanks in advance.

Spring


Re: [web2py] After modifying routes.py, GAE still routing to Welcome rather than my app

2011-11-06 Thread Jonathan Lundell
On Nov 6, 2011, at 5:28 AM, Spring wrote:

 I'm facing a problem with GAE deployment. GAE still routes to Welcome
 rather than my app when hitting www.myapp.com. And because I skipped
 the Welcome app in app.yaml, it gives invalid request. Tried
 manually to go to www.myapp.com/myapp/default/index, still invalid
 request. Things seem to be fine when running the app locally with
 both web2py and GAE launcher. I even tried to give a new version
 number and re-deploy, but the same happened.
 
 Contents of routes.py modified as follows:
 
 default_application = 'go2chongqing'# ordinarily set in base
 routes.py
 default_controller = 'default'  # ordinarily set in app-specific
 routes.py
 default_function = 'index'  # ordinarily set in app-specific
 routes.py
 
 routes_app = ((r'/(?Pappgo2chongqing|welcome|admin|app)\b.*',
 r'\gapp'),
  (r'(.*)', r'go2chongqing'),
  (r'/?(.*)', r'go2chongqing'))
 
 routes_in and routes_out remain unchanged.
 =
 Can anybody help on this. Thanks in advance.

Do you see anything routing-related in the GAE logs? You'll need to set the log 
viewing level to DEBUG.