[google-appengine] Re: ViewDoesNotExist Error

2013-07-24 Thread Shantanu Bhowmik
Anything on this ?? On Tuesday, July 23, 2013 9:10:50 PM UTC+5:30, Shantanu Bhowmik wrote: I'm porting a django application that works fine on my box, to appengine. I keep getting this error: Tried main_page in module dashboard.views. Error was: type object 'XXX' has no attribute 'YYY'

[google-appengine] Re: ViewDoesNotExist at /join No module named atom.service

2009-11-17 Thread Cage
Hello All, I am a python newbie. My friend, who is a python guru solved it for me. I just had to add '/vendor' directory in PYTHONPATH. I have solved this on my local instance. I haven't done it yet on appengine though. Regards, Cage On Nov 15, 2:06 pm, Cage vasantha.kesh...@gmail.com wrote:

[google-appengine] Re: ViewDoesNotExist bug on GAE with Django

2009-10-16 Thread Takashi Matsuo
Hi Fernando, 'profile' is one of standard python module. I guess sys.path order in your development environment is different from server environment. Could you rename your app to another name and try? Regards, -- Takashi Matsuo Kay's daddy On Fri, Oct 16, 2009 at 5:43 PM, FernandoEscher

[google-appengine] Re: ViewDoesNotExist

2008-11-22 Thread yinDojo
Thanks for replying. i got it to work. :) but i have to scope the folder itselft. (r'^sign$', 'mytest.views.sign'), On Nov 20, 5:08 pm, Waldemar Kornewald [EMAIL PROTECTED] wrote: Hi! On Nov 20, 5:18 pm,yinDojo[EMAIL PROTECTED] wrote: #  urls.py

[google-appengine] Re: ViewDoesNotExist

2008-11-20 Thread Waldemar Kornewald
Hi! On Nov 20, 5:18 pm, yinDojo [EMAIL PROTECTED] wrote: #  urls.py - # this urls.py is located under mytest folder from django.conf.urls.defaults import * urlpatterns = patterns('',   (r'^$', 'views.index'),