On Apr 26, 7:32 am, Johann Spies <[email protected]> wrote: > On 24 April 2010 16:06, mdipierro <[email protected]> wrote: > > > I use a Mac and I am not the only one on the list. All video tutorials > > on Vimeo are made with Mac. Including the one that explains how to > > deploy on GAE. > > I have watched the video and made some progress but both on Linux and > on my Macbook I get a ticket: Internal Error: Invalid request when I > try and access localhost:8080 or localhost/<application>.
the default startup port is 8000, so (for your examples) you should have tried something like this: http://localhost:8000 http://localhost:8000/welcome http://localhost:8000/admin Since localhost has to be resolved by ... your localhost, you can also try: http://127.0.0.1:8000 This form should always work. - Yarko > > According to the video I don't have to create /edit the app.yaml in > the web2py-directory because it is already there. > > Do I have to change db.py which currenly have the default: > > if request.env.web2py_runtime_gae: # if running on Google App > Engine > db = DAL('gae') # connect to Google BigTable > session.connect(request, response, db=db) # and store sessions and > tickets there > > Regards > Johann > -- > "Finally, brethren, whatsoever things are true, whatsoever things are > honest, whatsoever things are just, whatsoever things are pure, > whatsoever things are lovely, whatsoever things are of good report; if > there be any virtue, and if there be any praise, think on these > things." Philippians 4:8 > > -- > Subscription settings:http://groups.google.com/group/web2py/subscribe?hl=en

