[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread bobdob
Hey it works!!! Looks like the zip was corrupted, I kind of had a feeling all along that could be the case since I was getting CRC mismatches on all the extracts (I must have downloaded that zip at least 10 times). Here's my output: ch...@chris-laptop:~/helloworld$ python ../google_appengine/ dev

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread bobdob
Hey it works!!! Looks like the zip was corrupted, I kind of had a feeling all along that could be the case since I was getting CRC mismatches on all the extracts (I must have downloaded that zip at least 10 times). Here's my output: ch...@chris-laptop:~/helloworld$ python ../google_appengine/ dev

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread Tim Hoffman
Hi Chris You distribution is definately corrupted for some reason. Try downloading it like this. First of rename or remove your existing google_appengine > cd this will put you in your home directory > wget http://googleappengine.googlecode.com/files/google_appengine_1.1.9.zip Once that fini

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread bobdob
Hey Tim, thanks again for the input, I finally think I might be on to something now, so I'll try to explain it. Even with the "python" included in the command line, I'm getting the exact same "syntax error" message. But when I look at the dev_appserver.py file in /home/chris/google_appengine/goog

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread Marcel Overdijk
My bad. I was executing dev_appserver.py helloworld from within the helloworld folder itself. It works now. On 3 apr, 21:27, Marcel Overdijk wrote: > I'm having the same problem on Windows Vista (Python 2.5.4) using the > latest GEA (1.1.9) and following the instructions > onhttp://code.google

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread Marcel Overdijk
I'm having the same problem on Windows Vista (Python 2.5.4) using the latest GEA (1.1.9) and following the instructions on http://code.google.com/intl/nl/appengine/docs/python/gettingstarted/helloworld.html. Cheers, Marcel On 3 apr, 17:23, Tim Hoffman wrote: > Hi Chris > > Can you try running

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread Tim Hoffman
Hi Chris Can you try running the dev_appserver.py by specifying python first (I note in all you examples you don't do that) ie cd /home/chris/helloworld python ~/google_appengine/dev_appserver.py . Also open up the file /home/chris/google_appengine/google/appengine/ tools/ > dev_appserver.

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread bobdob
Thanks for the update Tim, yeah this is really weird, and causing me much frustration and sleep loss! But I will not give up... I have tried literally everything I can think of at this point, from moving the "helloworld" directory to different locations ("google_appengine" directory, home directo

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread Tim Hoffman
Ok I am running Ubuntu 8.10 (actually xubuntu) I went through the helloworld excercise cutting and pasting you code and it all worked. I only get that error ERROR:root:Application configuration file not found in ./helloworld when no app.yaml is in the directory. Invalied You should check the

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-02 Thread bobdob
This is what my helloworld.py looks like: print 'Content-Type: text/plain' print " print 'Hello, world!' On Apr 2, 11:43 pm, Tim Hoffman wrote: > Ok can you how us helloworld.py > > T > > On Apr 3, 9:19 am, bobdob wrote: > > > Here's the app.yaml file: > > > application: helloworld > > versi

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-02 Thread Tim Hoffman
Ok can you how us helloworld.py T On Apr 3, 9:19 am, bobdob wrote: > Here's the app.yaml file: > > application: helloworld > version: 1 > runtime: python > api_version: 1 > > handlers: > - url: /.* >   script: helloworld.py > > And the "helloworld" directory contains only the files "app.yaml" a

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-02 Thread bobdob
Here's the app.yaml file: application: helloworld version: 1 runtime: python api_version: 1 handlers: - url: /.* script: helloworld.py And the "helloworld" directory contains only the files "app.yaml" and "helloworld.py" (both written according to the AppEngine docs) Thanks On Apr 2, 8:23 

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-02 Thread bobdob
Now I meant to post this one earlier, since this was actually the first thing I tried, it is exactly what is written in the appengine docs at http://code.google.com/appengine/docs/python/gettingstarted/helloworld.html google_appengine/dev_appserver.py helloworld/ I put the "helloworld" director

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-02 Thread Tim Hoffman
Can you include the contents of you app.yaml And list the contents of helloworld directory T On Apr 3, 7:35 am, bobdob wrote: > Thanks for the quick reply Tim, I tried your suggestion (I left the > "helloworld" directory in the "google_appengine" directory for now, > just to make sure I could

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-02 Thread bobdob
Thanks for the quick reply Tim, I tried your suggestion (I left the "helloworld" directory in the "google_appengine" directory for now, just to make sure I could get it up and running before I move the "helloworld" directory). Unfortunately, things are still not working out. I must be doing somet

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-02 Thread Tim Hoffman
For starters you command line as listed below says google_appengine/dev_appserver.py /helloworld But you said you put helloworld in the google_appengine directory which would suggest a command line of google_appengine/dev_appserver.py ./helloworld Not the "." before helloworld I personally wo