Re: ViewDoesNotExist at /admin/

2014-01-06 Thread Gabriele Stoia
Hi, I fixed my problem changing the .fcgi file like this: *#!/usr/bin/eval PYTHON_VERSION=2.6 DJANGO_VERSION=1.5.4 pythonimport os, syssys.path.append('/home/path/to/myproject/')#_PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))//delete this line#sys.

Re: ViewDoesNotExist at /admin/

2013-12-27 Thread Cal Leeming [Simplicity Media Ltd]
Hello, Perhaps try installing a completely new/fresh dev environment in a vmware/virtualbox instance, and attempt to get it working from there, that will at least help you narrow this problem down locally instead of poking around at production. Also try and make sure you install the same OS/releas

Re: ViewDoesNotExist at /admin/

2013-12-27 Thread Gabriele Stoia
Thank you Tom for your answer. I'm sorry but I don't have much experience with Django... Do you have an idea how to fix this problem ? Thanks in advance Gabri Il giorno martedì 24 dicembre 2013 20:58:32 UTC+7, Thomas ha scritto: > > > On 2013-12-23, at 9:42 PM, Gabriele Stoia > > wrote: > > I

Re: ViewDoesNotExist at /admin/

2013-12-24 Thread Tom Lockhart
On 2013-12-23, at 9:42 PM, Gabriele Stoia wrote: > I think I found the problem...maybe... > > I running my app in the same hosting of another app ... (sorry for my > english..is not my first language... I'm italian…) If you are not using virtualenv and pip to manage each of these installation

Re: ViewDoesNotExist at /admin/

2013-12-23 Thread Gabriele Stoia
I think I found the problem...maybe... I running my app in the same hosting of another app ... (sorry for my english..is not my first language... I'm italian...) I have *-- first app-- feincms-- other module-- ...--second app-- -- feincms-- -- other module* Maybe my second-app is using

Re: ViewDoesNotExist at /admin/

2013-12-23 Thread Russell Keith-Magee
On Mon, Dec 23, 2013 at 10:53 AM, Gabriele Stoia wrote: > Hi Russel, > > thank you for your e-mail !!! > I thought that something was connected with MPTT or FeinCMS... I'll try to > work out ! > What I really don't understand why so many problem when you in deployment > ??? In local everything was

Re: ViewDoesNotExist at /admin/

2013-12-22 Thread Gabriele Stoia
ame, but I haven't used >>> Photologue myself, so I don't really know anything about it. You'll need to >>> check the project pages and support lists for Photologue itself. >>> >>> Yours, >>> Russ Magee %-) >>> >>> On Sunday,

Re: ViewDoesNotExist at /admin/

2013-12-22 Thread Russell Keith-Magee
;>> Do you have any information about it ? >>> >>> Thank you very much >>> >>> Gabri >>> >>> Il giorno domenica 22 dicembre 2013 09:17:51 UTC+7, Russell Keith-Magee >>> ha scritto: >>>> >>&g

Re: ViewDoesNotExist at /admin/

2013-12-22 Thread Gabriele Stoia
ut what code is referencing this >>> view, and update it. >>> >>> The problem code might be your own code, or it might be a third party >>> app. You'll need to check all the apps in INSTALLED_APPS to see if there >>> are any reported prob

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Russell Keith-Magee
e %-) >> >> >> On Sat, Dec 21, 2013 at 8:28 PM, Gabriele Stoia wrote: >> >>> Hi Russel >>> >>> I have the same problem but I cannot figure out how to fix it !!! In >>> local the app was perfect... in deploy I had this message : >>

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Gabriele Stoia
Russel >> >> I have the same problem but I cannot figure out how to fix it !!! In >> local the app was perfect... in deploy I had this message : >> >> > >> ViewDoesNotExist at /admin/ >> >> Could not import django.views.generic.list_detail.

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Russell Keith-Magee
not figure out how to fix it !!! In local > the app was perfect... in deploy I had this message : > > > ViewDoesNotExist at /admin/ > > Could not import django.views.generic.list_detail.object_list. Parent module > django.views.generic.list_detail does not exist. > >

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Gabriele Stoia
Hi Russel I have the same problem but I cannot figure out how to fix it !!! In local the app was perfect... in deploy I had this message : ViewDoesNotExist at /admin/ Could not import django.views.generic.list_detail.object_list. Parent module django.views.generic.list_detail does not exist

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Gabriele Stoia
Hi Russel I had the same problem. Here the traceback: ViewDoesNotExist at /admin/ Could not import django.views.generic.list_detail.object_list. Parent module django.views.generic.list_detail does not exist. Request Method: GET Request URL: http://www.gabryandjenny.com/admin/ Django

Re: ViewDoesNotExist at /admin/

2013-04-14 Thread Russell Keith-Magee
Hi Daniel, The error you've described isn't related to the admin site at all -- the problem lies somewhere else in your codebase. django.views.generic.list_detail.object_list was one of the old function-based generic views; it was deprecated in Django 1.3, and removed entirely in Django 1.5. You

ViewDoesNotExist at /admin/

2013-04-12 Thread Daniel Guo
Hi all, I've spent lot of time trying to figure out what is going on there, but my admin site is still not working. I just followed the Django tutorial to create an app named polls. But I have a customized template_dir which is used by my previous app. All the configurations to activate admin s

Re: ViewDoesNotExist !?!?! It certainly does....

2012-09-12 Thread Lachlan Musicman
On Wed, Sep 12, 2012 at 6:19 PM, Sergiy Khohlov wrote: > add to urls > from tafe.views import session_create Thanks. I actually found this solution late late last night while offline, buried deep in the docs: /PATH/django-docs-1.4-en/topics/http/urls.html#passing-callable-objects-instead-of-str

Re: ViewDoesNotExist !?!?! It certainly does....

2012-09-12 Thread Stephen Anto
2012 at 9:51 AM, Lachlan Musicman wrote: > Hola > > As per subject - I'm getting ViewDoesNotExist errors on a view that does > exist. > > I've checked the spelling, indenting and it all seems legit. > > If I comment out the two lines that call the view in question from

Re: ViewDoesNotExist !?!?! It certainly does....

2012-09-11 Thread Sergiy Khohlov
add to urls from tafe.views import session_create 2012/9/12 Lachlan Musicman : > session_create -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group

Re: ViewDoesNotExist !?!?! It certainly does....

2012-09-11 Thread Lachlan Musicman
Grrr - sorry sent before I was finished. tafe/views.py # Create your views here. from tafe.models import Session from tafe.forms import SessionRecurringForm from django.shortcuts import render_to_response from django.http import HttpResponseRedirect import datetime def session_create(request):

ViewDoesNotExist !?!?! It certainly does....

2012-09-11 Thread Lachlan Musicman
Hola As per subject - I'm getting ViewDoesNotExist errors on a view that does exist. I've checked the spelling, indenting and it all seems legit. If I comment out the two lines that call the view in question from urls.py, everything is back to normal. --- tafe/urls.py from django

Re: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-15 Thread Sky
I've moved the urls.py out of mysite as instructed by the tutorial into polls. My polls/url.py from django.conf.urls import patterns, include, url from django.views.generic import DetailView, ListView from polls.models import Poll #Uncomment the next two lines to enable the admin: from django.c

Re: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-15 Thread Kurtis Mullins
I just noticed another thing here. But, it could just be related to copying and pasting your source here. See below On Tue, Aug 14, 2012 at 11:16 PM, Sky wrote: > I've having a similar problem here using Django 1.4 and I can't quite > figure what's wrong. The error reads: Could not import polls.

Re: 回复: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-15 Thread Sky
Oh, and it works when the url is http://localhost:8000/polls/1/vote/ On Thursday, August 16, 2012 11:19:09 AM UTC+8, Sky wrote: > > I'm pretty sure the source is the same as I copied it out from the editor. > I'm using sqlite3, not sure if that affects anything. I'm not sure what's > wrong as I

Re: 回复: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-15 Thread Sky
I'm pretty sure the source is the same as I copied it out from the editor. I'm using sqlite3, not sure if that affects anything. I'm not sure what's wrong as I got the code straight from the tutorial. The traceback: - /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site

Re: 回复: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-15 Thread Kurtis Mullins
This line should be commented out: "Uncomment the next two lines to enable the admin:" Also, I don't see why it's trying to import 'polls.views.index'. That would be a function named 'index' in your views.py file in the polls directory (also known as a module). Not only does that 'index' method/fu

Re: 回复: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-15 Thread Sky
How do I do that? I've tried the commands python manage.py syncdb followed by python manage.py runserver several times but they don't work. On Wednesday, August 15, 2012 9:45:21 PM UTC+8, Melvyn Sopacua wrote: > > On 15-8-2012 10:01, Pengfei Xue wrote: > > there's no function in views.py, you

Re: 回复: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-15 Thread Melvyn Sopacua
On 15-8-2012 10:01, Pengfei Xue wrote: > there's no function in views.py, you should define that 'index' > handler No, he's not using it according to source. Which means the source is not in sync with what is being run, typically fixed by restarting the WSGI provider. -- Melvyn Sopacua -- You

回复: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-15 Thread Pengfei Xue
there's no function in views.py, you should define that 'index' handler -- Sincerely, Pengfei Xue 已使用 Sparrow (http://www.sparrowmailapp.com/?sig) 已使用 Sparrow (http://www.sparrowmailapp.com/?sig) 在 2012年8月15日星期三,上午11:16,Sky 写道: > I've having a similar problem here using Django 1.4 and

Re: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2012-08-14 Thread Sky
I've having a similar problem here using Django 1.4 and I can't quite figure what's wrong. The error reads: Could not import polls.views.index. View does not exist in module polls.views. urls.py from django.conf.urls import patterns, include, url from django.views.generic import DetailView, Lis

Re: Stuck on "ViewDoesNotExist" last step of tutorial part 4

2011-06-18 Thread Jonas Geiregat
;c:\Python27\lib\site-packages\django\core\urlresolvers.py" in > reverse > 312. possibilities = self.reverse_dict.getlist(lookup_view) > File "c:\Python27\lib\site-packages\django\core\urlresolvers.py" in > _get_reverse_dict > 229. self._populate

Stuck on "ViewDoesNotExist" last step of tutorial part 4

2011-06-17 Thread TuckFrance
kup_view) File "c:\Python27\lib\site-packages\django\core\urlresolvers.py" in _get_reverse_dict 229. self._populate() File "c:\Python27\lib\site-packages\django\core\urlresolvers.py" in _populate 220. lookups.appendlist(pattern.callback, (bits, p_p

Re: ViewDoesNotExist Error

2011-02-22 Thread ravi krishna
Hi all, I got it solved. def employeeProfile(request): *emp_profile* = EmployeeDetails.objects.all() return render_to_response('employeeProfile.html',{'emp_profile':emp_profile}) Thanks & Regards, Ravi Krishna My profiles: [image: Facebook] [i

Re: ViewDoesNotExist Error

2011-02-22 Thread Mike Ramirez
On Tuesday, February 22, 2011 08:24:43 pm ravi krishna wrote: > from task.employeeDetails import emp_profile I did see* not where emp_profile comes from. Mike (sorry). -- We are sorry. We cannot complete your call as dialed. Please check the number and dial again or ask your operator for a

Re: ViewDoesNotExist Error

2011-02-22 Thread Mike Ramirez
On Tuesday, February 22, 2011 08:24:43 pm ravi krishna wrote: > from task.employeeDetails import emp_profile I did not where emp_profile comes from. Mike -- We are sorry. We cannot complete your call as dialed. Please check the number and dial again or ask your operator for assistance. This

ViewDoesNotExist Error

2011-02-22 Thread ravi krishna
Hi, i am trying to do a simple Django application where employee list is read from database and displayed. for that i defined the models and entered the values to database through Django admin. But while trying to display data from database i am stuck with an error, "ViewDoesNotExi

Re: Caught ViewDoesNotExist while rendering: Could not import smsnotifications.views. Error was: No module named forms

2010-06-28 Thread Allen Machary
reports', 'standards', 'patterns', 'xformmanager', 'receiver', 'messaging'] Installed Middleware: ['django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.locale.LocaleMidd

Re: Caught ViewDoesNotExist while rendering: Could not import smsnotifications.views. Error was: No module named forms

2010-06-28 Thread Allen Machary
Sorry on that.. No i have not imported smsnotification.forms in the smsnotification model. i have from smsnotifications.forms import SmsNotificationForm in the views I further tried to import the smsnotifications.forms import SmsNotificationForm in the django shell it worked okey. but importing vi

Re: Caught ViewDoesNotExist while rendering: Could not import smsnotifications.views. Error was: No module named forms

2010-06-28 Thread Daniel Roseman
On Jun 27, 1:26 pm, Allen Machary wrote: > Hi All, > i have a problem in import problem. in importing forms.py in views.py > here are my files both located in smsnotifications app >  -- smsnotifications/forms.py > from django.forms import ModelForm > from smsnotifications.models import SmsNotifica

Re: Caught ViewDoesNotExist while rendering: Could not import smsnotifications.views. Error was: No module named forms

2010-06-28 Thread Allen Machary
anyone with any idea on this..? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For mor

Caught ViewDoesNotExist while rendering: Could not import smsnotifications.views. Error was: No module named forms

2010-06-27 Thread Allen Machary
Hi All, i have a problem in import problem. in importing forms.py in views.py here are my files both located in smsnotifications app -- smsnotifications/forms.py from django.forms import ModelForm from smsnotifications.models import SmsNotification class SmsNotificationForm(ModelForm): class M

Re: ViewDoesNotExist

2010-03-03 Thread Ayush Sharma
Thanks..sometimes v just don't see small things..thanks.. On Mar 2, 5:10 am, Karen Tracey wrote: > On Tue, Mar 2, 2010 at 3:32 AM, Ayush Sharma > wrote: > > > i am getting the following error on the url > >http://127.0.0.1:8000/addartist/ > > > ViewDoesNo

Re: ViewDoesNotExist

2010-03-02 Thread Karen Tracey
On Tue, Mar 2, 2010 at 3:32 AM, Ayush Sharma wrote: > i am getting the following error on the url > http://127.0.0.1:8000/addartist/ > > ViewDoesNotExist at /uploadalbum/ > > Tried upload in module mysite.MusicFun.views. Error was: 'module' > object has no attri

Re: ViewDoesNotExist at /

2009-10-16 Thread Bayuadji
> 218. sub_match = pattern.resolve(new_path) > File "/usr/lib/python2.6/dist-packages/django/core/urlresolvers.py" in > resolve > 125. return self.callback, args, kwargs > File "/usr/lib/python2.6/dist-packages/django/core/urlresolvers.

ViewDoesNotExist at /

2009-10-16 Thread neri...@gmail.com
dist-packages/django/core/urlresolvers.py" in _get_callback 134. raise ViewDoesNotExist, "Could not import %s. Error was: %s" % (mod_name, str(e)) Exception Type: ViewDoesNotExist at / Exception Value: Could not import ssl_test.views. Error was: No module named ssl_test.vie

ViewDoesNotExist error on Apache2 with mod_wsgi

2009-05-21 Thread Miguel Martins
7.0.0.1] return self.callback, args, kwargs [Thu May 21 05:11:00 2009] [error] [client 127.0.0.1] File "/usr/lib/ python2.5/site-packages/django/core/urlresolvers.py", line 133, in _get_callback [Thu May 21 05:11:00 2009] [error] [client 127.0.0.1] raise ViewDoesNotExist, &qu

Re: ViewDoesNotExist

2008-12-24 Thread Justin Myers
ries, it's hard to be sure. -Justin On Dec 24, 1:01 pm, aperez199 wrote: > Hi everyone, > i'm having a problem with an application i have migrated from a server > to another. I got the settings right and all, but i get this error: > > Exception Type:         ViewDoesNotE

ViewDoesNotExist

2008-12-24 Thread aperez199
Hi everyone, i'm having a problem with an application i have migrated from a server to another. I got the settings right and all, but i get this error: Exception Type: ViewDoesNotExist Exception Value:Could not import seoappsla.views. Error was: No module named seoappsla.vie

Re: ViewDoesNotExist: Even though it does

2008-10-23 Thread Dj Gilcrease
On Thu, Oct 23, 2008 at 7:20 PM, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > On Wed, 2008-10-22 at 00:09 -0700, JonathanB wrote: >> Getting a very erratic Exception: >> >> ViewDoesNotExist: Could not import supplier.views. Error was: cannot >> impo

Re: ViewDoesNotExist: Even though it does

2008-10-23 Thread Malcolm Tredinnick
On Wed, 2008-10-22 at 00:09 -0700, JonathanB wrote: > Getting a very erratic Exception: > > ViewDoesNotExist: Could not import supplier.views. Error was: cannot > import name Buyer > > What is stage is Buyer (model Class) does exist and the exception is > only thrown o

Re: ViewDoesNotExist: Even though it does

2008-10-22 Thread Peter Bengtsson
help fish problems and errors that are otherwise "hidden" by the magic of wiring when you run Django. Has definitely helped me in the past. On Oct 22, 8:09 am, JonathanB <[EMAIL PROTECTED]> wrote: > Getting a very erratic Exception: > > ViewDoesNotExist: Could not import sup

ViewDoesNotExist: Even though it does

2008-10-22 Thread JonathanB
Getting a very erratic Exception: ViewDoesNotExist: Could not import supplier.views. Error was: cannot import name Buyer What is stage is Buyer (model Class) does exist and the exception is only thrown once in a while. Could it be that there are too many ForeignKey relationships. i.e. the Buyer

Re: ViewDoesNotExist No module. where is it being called, I don't want it to.

2008-10-17 Thread Eric Abrahamsen
On Oct 18, 2008, at 3:42 AM, KillaBee wrote: > > I keep getting this error that says ViewDoesNotExist: Could not > import intranet.timesheets.views. Error was: No module named User. No > i do not have a User module, I don't want nor need one. How do I find > out Where it

Re: ViewDoesNotExist No module. where is it being called, I don't want it to.

2008-10-17 Thread KillaBee
7, 3:42 pm, KillaBee <[EMAIL PROTECTED]> > wrote: > > > I keep getting this error that says ViewDoesNotExist:  Could not > > import intranet.timesheets.views. Error was: No module named User.  No > > i do not have a User module, I don't want nor need one.  How do I f

Re: ViewDoesNotExist No module. where is it being called, I don't want it to.

2008-10-17 Thread ryan
.py file > > -ryan > > On Oct 17, 3:42 pm, KillaBee <[EMAIL PROTECTED]> > wrote: > > > I keep getting this error that says ViewDoesNotExist:  Could not > > import intranet.timesheets.views. Error was: No module named User.  No > > i do not have a User module,

Re: ViewDoesNotExist No module. where is it being called, I don't want it to.

2008-10-17 Thread ryan
"I do have A feild in my times model named user" Is it a ForeignKey to Django's User model? If so you need to import that at the top of your models.py file -ryan On Oct 17, 3:42 pm, KillaBee <[EMAIL PROTECTED]> wrote: > I keep getting this error that says ViewDoesNotEx

ViewDoesNotExist No module. where is it being called, I don't want it to.

2008-10-17 Thread KillaBee
I keep getting this error that says ViewDoesNotExist: Could not import intranet.timesheets.views. Error was: No module named User. No i do not have a User module, I don't want nor need one. How do I find out Where it is being call at? I got this error today, and I have been trying to ge

Re: ViewDoesNotExist 'index' attribute in contrib.admin.views.main

2008-07-21 Thread V
blem in the new Admin interface version? > > 2008/7/21 Florencio Cano <[EMAIL PROTECTED]>: > > > Hi! > > I have updated Django from svn, installed a new app and some new > > models and now when I try to browse /admin/ I get this error: >

Re: ViewDoesNotExist 'index' attribute in contrib.admin.views.main

2008-07-21 Thread Florencio Cano
gt;> called MyModelAdmin that extends admin.ModelAdmin and modifying the >> urls.py to include: >> >> urlpatterns = patterns('', >> ('^admin/(.*)', admin.site.root), >> [...] >> >> Any ideas to solve this problem in the new Admin i

Re: ViewDoesNotExist 'index' attribute in contrib.admin.views.main

2008-07-21 Thread cschand
] > > Any ideas to solve this problem in the new Admin interface version? > > 2008/7/21 Florencio Cano <[EMAIL PROTECTED]>: > > Hi! > > I have updated Django from svn, installed a new app and some new > > models and now when I try to browse /admin/ I get this error: &

Re: ViewDoesNotExist 'index' attribute in contrib.admin.views.main

2008-07-21 Thread Florencio Cano
in the new Admin interface version? 2008/7/21 Florencio Cano <[EMAIL PROTECTED]>: > Hi! > I have updated Django from svn, installed a new app and some new > models and now when I try to browse /admin/ I get this error: > > ViewDoesNotExist: Tried index in module > dja

ViewDoesNotExist 'index' attribute in contrib.admin.views.main

2008-07-21 Thread Florencio Cano
Hi! I have updated Django from svn, installed a new app and some new models and now when I try to browse /admin/ I get this error: ViewDoesNotExist: Tried index in module django.contrib.admin.views.main. Error was: 'module' object has no attribute 'index' I have checked

Re: Strange login error in newforms-admin site: ViewDoesNotExist at /accounts/login/

2008-04-01 Thread Michael
I tried this today with runserver and could not duplicate this issue. It appears to be a mod_python issue. This is interesting. On Tue, Apr 1, 2008 at 8:51 AM, Michael <[EMAIL PROTECTED]> wrote: > > Yours was one of the posts I discovered when I googled this but my > > problem seemed to come o

Re: Strange login error in newforms-admin site: ViewDoesNotExist at /accounts/login/

2008-04-01 Thread Michael
> Yours was one of the posts I discovered when I googled this but my > problem seemed to come out of nowhere and your report seemed to imply > a more reproducible issue. It's difficult to reproduce, because it involves a rather deep level of importing and self importing. This happens every onc

Re: Strange login error in newforms-admin site: ViewDoesNotExist at /accounts/login/

2008-04-01 Thread AndyB
> >  development server has started giving the following error on a > >  production server when I try and visit my login page: > > >  ViewDoesNotExist at /accounts/login/ > >  Could not import django.contrib.auth.views. Error was: cannot import > >  name UserCre

Re: Strange login error in newforms-admin site: ViewDoesNotExist at /accounts/login/

2008-03-31 Thread Michael
still works fine on my > development server has started giving the following error on a > production server when I try and visit my login page: > > ViewDoesNotExist at /accounts/login/ > Could not import django.contrib.auth.views. Error was: cannot import > name UserCreationFo

Strange login error in newforms-admin site: ViewDoesNotExist at /accounts/login/

2008-03-31 Thread AndyB
Some code that has previously worked fine and still works fine on my development server has started giving the following error on a production server when I try and visit my login page: ViewDoesNotExist at /accounts/login/ Could not import django.contrib.auth.views. Error was: cannot import name

Re: ViewDoesNotExist admin error.

2008-03-04 Thread Mitja Martini
Hi Chris, you may have a problem with your urls.py - check if you activated the admin site correctly (see http://www.djangoproject.com/documentation/tutorial02/#activate-the-admin-site - check if you have a pattern that catches /admin/ earlier on Do you use django-profiles? If yes: You do not u

ViewDoesNotExist admin error.

2008-03-04 Thread Chris
: ViewDoesNotExist Exception Value:Tried views in module profiles. Error was: 'module' object has no attribute 'views' Exception Location: /srv/django-0.96/django/core/urlresolvers.py in _get_callback, line 184 Python Executable: /usr/bin/python Any Ideas as to w

Re: Transient ViewDoesNotExist errors

2008-02-21 Thread Richard Jones
, lighttpd + fastcgi, ...). > > I have compiled and installed the latest mod_wsgi. I'll see how that > goes. I'm still getting the errors reported like: ViewDoesNotExist: Tried diary_display in module pyweek.challenge.views.challenge. Error was: 'module' object has no att

Re: Transient ViewDoesNotExist errors

2008-02-21 Thread Richard Jones
On Feb 22, 9:54 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > Or use one of the many other options for serving Django applications > (mod_wsgi, cherryPy's server, nginx + fastcgi, lighttpd + fastcgi, ...). I have compiled and installed the latest mod_wsgi. I'll see how that goes. Rich

Re: Transient ViewDoesNotExist errors

2008-02-21 Thread Malcolm Tredinnick
On Thu, 2008-02-21 at 14:48 -0800, Richard Jones wrote: > On Feb 12, 11:03 am, Richard Jones <[EMAIL PROTECTED]> wrote: > > On Feb 9, 5:19 pm, Richard Jones <[EMAIL PROTECTED]> wrote: > > > > > I'm still getting thetransienterrors mentioned in my OP though. > > > > Anyone? I'd be happy to provide

Re: Transient ViewDoesNotExist errors

2008-02-21 Thread Richard Jones
On Feb 12, 11:03 am, Richard Jones <[EMAIL PROTECTED]> wrote: > On Feb 9, 5:19 pm, Richard Jones <[EMAIL PROTECTED]> wrote: > > > I'm still getting thetransienterrors mentioned in my OP though. > > Anyone? I'd be happy to provide more detail if there was any that > might help? Still getting these

Re: Transient ViewDoesNotExist errors

2008-02-11 Thread Richard Jones
On Feb 9, 5:19 pm, Richard Jones <[EMAIL PROTECTED]> wrote: > I'm still getting the transient errors mentioned in my OP though. Anyone? I'd be happy to provide more detail if there was any that might help? Am I the only person seeing this behaviour? Richard --~--~-~--~~--

Re: Transient ViewDoesNotExist errors

2008-02-08 Thread Richard Jones
On Feb 8, 10:07 pm, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > On Feb 8, 8:43 am, Richard Jones <[EMAIL PROTECTED]> wrote: > > I have noticed that apache's error log has tons of these entries at > > random (avg. 5 minutes) intervals: > > > [Thu Feb 07 14:08:11 2008] [notice]mod_python: (Re)impo

Re: Transient ViewDoesNotExist errors

2008-02-08 Thread Graham Dumpleton
On Feb 8, 8:43 am, Richard Jones <[EMAIL PROTECTED]> wrote: > I have noticed that apache's error log has tons of these entries at > random (avg. 5 minutes) intervals: > > [Thu Feb 07 14:08:11 2008] [notice]mod_python: (Re)importing module > 'django.cor > e.handlers.modpython' > > The dates of thes

Transient ViewDoesNotExist errors

2008-02-07 Thread Richard Jones
I run the www.pyweek.org site and recently upgraded to the latest release of Django (0.96.1) I'm running under Apache + mod_python. Configuration appended to this email. I've observed a bunch of transient errors (perhaps 1% of page views) that take the form: ViewDoesNotEx

Re: Error message when viewing admin? (ViewDoesNotExist at /admin/)

2007-10-23 Thread DJango Fett
#x27;), ) On Oct 3, 12:34 pm, Greg <[EMAIL PROTECTED]> wrote: > Hello, > Whenever I login to myadminview the very first thing I see if the > following error. It also happens occasionally when I'm going through > myadminpages. > > ViewDoesNotExist at /admin/ > Trie

Re: Error message when viewing admin? (ViewDoesNotExist at /admin/)

2007-10-03 Thread Gabriel Farrell
AIL PROTECTED]> wrote: > Hello, > Whenever I login to my admin view the very first thing I see if the > following error. It also happens occasionally when I'm going through > my admin pages. > > ViewDoesNotExist at /admin/ > Tried startsess in module mysite.rugs.views. Err

Error message when viewing admin? (ViewDoesNotExist at /admin/)

2007-10-03 Thread Greg
Hello, Whenever I login to my admin view the very first thing I see if the following error. It also happens occasionally when I'm going through my admin pages. ViewDoesNotExist at /admin/ Tried startsess in module mysite.rugs.views. Error was: 'module' object has no attri

Re: ***SPAM*** Re: Deployment issues: ViewDoesNotExist error

2007-09-27 Thread Thomas Guettler
... > However, if I mimic the wsgi script as follows: > > cd /home/missed/django/projectsmt/ > python > > >>> import os, sys > >>> sys.path.insert(0, '/home/missed/django') > >>> sys.path.insert(0, '/home/missed/django/projectsmt') > >>> os.environ['DJANGO_SETTINGS_MODULE'] = 'projectsmt.settings'

Re: Deployment issues: ViewDoesNotExist error

2007-09-26 Thread Steve Potter
On Sep 26, 10:02 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On 9/26/07, Steve Potter <[EMAIL PROTECTED]> wrote: > > > user = models.ForeignKey(auth.models.User) > > > It appears that the django.contrib.auth is missing the models > > attribute. > > No, it's not. Most likely there's a bad impo

Re: Deployment issues: ViewDoesNotExist error

2007-09-26 Thread James Bennett
On 9/26/07, Steve Potter <[EMAIL PROTECTED]> wrote: > user = models.ForeignKey(auth.models.User) > > It appears that the django.contrib.auth is missing the models > attribute. No, it's not. Most likely there's a bad import statement in your models file, or no import statement, or you've got two t

Re: Deployment issues: ViewDoesNotExist error

2007-09-26 Thread Steve Potter
On Sep 26, 9:36 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On 9/26/07, Steve Potter <[EMAIL PROTECTED]> wrote: > > > ViewDoesNotExist: Tried index in module projectsmt.imglog.views. Error > > was: 'module' object has no attribute '

Re: Deployment issues: ViewDoesNotExist error

2007-09-26 Thread James Bennett
On 9/26/07, Steve Potter <[EMAIL PROTECTED]> wrote: > ViewDoesNotExist: Tried index in module projectsmt.imglog.views. Error > was: 'module' object has no attribute 'models' Something in your views module is trying to import from a 'models' module that

Deployment issues: ViewDoesNotExist error

2007-09-26 Thread Steve Potter
I have been working on trying to deploy a simple app that I created and works fine with the development server. Deployed it using apache and mod_wsgi. After working through a few initial permissions issues I am left with the following error: ViewDoesNotExist: Tried index in module

Deploying Problem: ViewDoesNotExist

2007-07-26 Thread o.elias
Hi! I deployed my app using Apache and mod_python and have the same problem as described in Ticket #4889. (ViewDoesNotExist-Exception; module object has no attribute models), but every combination of PythonPath-Entries didn't help. Something "strange": After calling the Django-

Re: viewdoesnotexist

2007-02-26 Thread Malcolm Tredinnick
t; date_created = models.DateTimeField() > last_edited = models.DateTimeField() > parents = models.ManyToManyField('self', symmetrical=False) > > When that was done, I recreated the db using syncdb and now all of the > sudden, any views from the same module

Re: viewdoesnotexist

2007-02-26 Thread [EMAIL PROTECTED]
one, I recreated the db using syncdb and now all of the > sudden, any views from the same module as this class, no longer work. > They just return a viewdoesnotexist error despite the fact that the > view clearly does exist. I have no clue what to do with this > information

viewdoesnotexist

2007-02-26 Thread [EMAIL PROTECTED]
= models.ManyToManyField('self', symmetrical=False) When that was done, I recreated the db using syncdb and now all of the sudden, any views from the same module as this class, no longer work. They just return a viewdoesnotexist error despite the fact that the view clearly does ex

Re: ViewDoesNotExist at /appl/ - Help please?

2007-02-05 Thread smallQ
try : from pytpath.appl.models import task_par1 in your view file smallQ 2007-02-05 发件人: CosyGlow 发送时间: 2007-02-05 17:06:55 收件人: Django users 抄送: 主题: ViewDoesNotExist at /appl/ - Help please? Django users I'm tried to get my project to work but am stuck with the abovementioned

ViewDoesNotExist at /appl/ - Help please?

2007-02-05 Thread CosyGlow
~ The error spit out in Windows Explorer browser is: ViewDoesNotExist at /appl/ Could not import pytpath.appl.views. Error was: cannot import name task_par1 Request Method: GET Request URL: http://localhost:8000/appl/ Exception Type: ViewDoesNotExist Exception Value: Could not

ViewDoesNotExist at /admin/

2006-12-23 Thread eobanb
three times now, each time rm -rfing the whole thing and checking out the trunk from svn again after I get stuck. I just cannot get through the tutorial because I cannot get the admin application to work. This is what happens: ViewDoesNotExist at /admin/ Tried index in module django.contrib.admin.vi

Re: ViewDoesNotExist at /admin/

2006-12-20 Thread diffyq
I just checked, and the permissions seem to be set properly. What should be in TEMPLATE_DIRS? I don't recall the tutorial mentioning it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: ViewDoesNotExist at /admin/

2006-12-20 Thread tonemcd
Two things; 1) you don't have anything setup in TEMPLATE_DIRS - may be important... 2) what does this give you; % ls -l /home/miiandu/django_src/django/contrib you want admin to look something like this; ... drwxr-xr-x 7 miiandyou 4096 Dec 4 18:19 admin ... and; % ls -l /home/miiandu/django

Re: ViewDoesNotExist at /admin/

2006-12-20 Thread Margaret
yes, I saw your application. try to "chown" or "chmod" your django Directory [EMAIL PROTECTED] 13585201588 --~--~-~--~~~---~--~~ You received this message because you are subscribe

Re: ViewDoesNotExist at /admin/

2006-12-20 Thread diffyq
Yes, I did add that line. We've been through this about ten times by now, and I've read and reread the tutorial up to this point. You can even check for yourself: http://miiandyou.net/admin/ scroll down to the settings. It'll show you the value of INSTALLED_APPS. --~--~-~--~~---

Re: ViewDoesNotExist at /admin/

2006-12-20 Thread Margaret
ted the requisite line in urls.py and added django.contrib.admin to the INSTALLED_APPS tuple. We get this error: ViewDoesNotExist at /admin/ Tried index in module django.contrib.admin.views.main. Error was: 'module' object has no attribute 'index' Request Method: GET Request U

ViewDoesNotExist at /admin/

2006-12-20 Thread diffyq
error: ViewDoesNotExist at /admin/ Tried index in module django.contrib.admin.views.main. Error was: 'module' object has no attribute 'index' Request Method: GET Request URL:http://miiandyou.net/admin/ Exception Type: ViewDoesNotExist Exception Value:

Re: Re: apache-only: ViewDoesNotExist - no module named settings

2006-10-09 Thread James Bennett
On 10/9/06, frank <[EMAIL PROTECTED]> wrote: > It would be most helpful if there was some documentation > somewhere that described what mod_python/apache needs > as distinct from the development server. The biggest problem I've seen people have when migrating from the dev server to Apache is, bar

  1   2   >