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
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 super fine !!! I wil consult FeinCMS forum. Thanks again for your

Re: ViewDoesNotExist at /admin/

2013-12-22 Thread Russell Keith-Magee
Hi Gabriele, That's not an error I immediately recognise the cause of; however, from the stack trace, it suggests that something in FeinCMS has overridden something in admin, but has done so in a way that isn't compatible with Django itself. Unfortunately, I can't tell if this is a fault in FeinCM

Re: ViewDoesNotExist at /admin/

2013-12-22 Thread Gabriele Stoia
Hi Russel, No problem, I found some information on-line and I fixed. now it works fine. I had to modify urls.py in photologue. I'm sorry to bother you... but I have another problem in my admin when I try to get into the pages: TypeError at /admin/gabryandjennyApp/page/ get_query_set() tak

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Russell Keith-Magee
Hi Gabriele, Unfortunately, no. I'm aware of the name, 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, December 22, 2013, Gabriele Stoia wrote: > Hi

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Gabriele Stoia
Hi Russel, thanks for your answer. I found the problem. Is related to Photologue. 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: > > Hi Gabriele, > > The answer is the same as before. You hav

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Russell Keith-Magee
Hi Gabriele, The answer is the same as before. You have some code that is referencing django.views.generic.list_detail.object_list. As of Django 1.5, this view no longer exists. You need to find out what code is referencing this view, and update it. The problem code might be your own code, or it

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 Versio

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

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
settings.py does you add this 'django.contrib.admin', INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', ) === On 12/21/06, diff