Re: Django 1.11: AttributeError: 'module' object has no attribute 'setup_environ'

2019-03-05 Thread Chi Shiek
ath) >> INFO 2019-02-28 19:01:49,720 module.py:861] default: "GET >> /Common?action=%5B%22logout%22%5D HTTP/1.1" 500 - >> File >> "/home/cshiek/Programs/google-cloud-sdk-1.9.83/platform/google_appengine/google/appengine/ext/django/main.py", >&g

Re: Django 1.11: AttributeError: 'module' object has no attribute 'setup_environ'

2019-02-28 Thread Chi Shiek
ot; 500 - > File > "/home/cshiek/Programs/google-cloud-sdk-1.9.83/platform/google_appengine/google/appengine/ext/django/main.py", > > line 82, in > management.setup_environ(settings, > original_settings_path=settings_path) > AttributeError: 'module' object has

Re: Django 1.11: AttributeError: 'module' object has no attribute 'setup_environ'

2019-02-28 Thread Chi Shiek
%5B%22logout%22%5D HTTP/1.1" 500 - > File > "/home/cshiek/Programs/google-cloud-sdk-1.9.83/platform/google_appengine/google/appengine/ext/django/main.py", > > line 82, in > management.setup_environ(settings, > original_settings_path=settings_path) > Attribu

Django 1.11: AttributeError: 'module' object has no attribute 'setup_environ'

2019-02-28 Thread Chi Shiek
on=%5B%22logout%22%5D HTTP/1.1" 500 - File "/home/cshiek/Programs/google-cloud-sdk-1.9.83/platform/google_appengine/google/appengine/ext/django/main.py", line 82, in management.setup_environ(settings, original_settings_path=settings_path) AttributeError: 'module' object has n

Re: AttributeError: 'module' object has no attribute 'lru_cache' with python 3.6.4 and Django 2.0.2

2018-02-14 Thread PASCUAL Eric
users@googlegroups.com' Subject: RE: AttributeError: 'module' object has no attribute 'lru_cache' with python 3.6.4 and Django 2.0.2 I’m not familiar with Docker, but I did have to add the path to Python 3.6 DLLs in my WSGI configuration in my Apache configuration file. WSGIPythonPath ${project

RE: AttributeError: 'module' object has no attribute 'lru_cache' with python 3.6.4 and Django 2.0.2

2018-02-14 Thread Matthew Pava
Of PASCUAL Eric Sent: Wednesday, February 14, 2018 8:52 AM To: Django users Subject: Re: AttributeError: 'module' object has no attribute 'lru_cache' with python 3.6.4 and Django 2.0.2 Hi, Normally you shouldn't have to add site-packages in the PYTHONPATH since it is supposed to be already

Re: AttributeError: 'module' object has no attribute 'lru_cache' with python 3.6.4 and Django 2.0.2

2018-02-14 Thread PASCUAL Eric
Fortezza <greng@gmail.com> Sent: Wednesday, February 14, 2018 3:02:28 PM To: Django users Subject: AttributeError: 'module' object has no attribute 'lru_cache' with python 3.6.4 and Django 2.0.2 Hi, I'm trying to set up the following configuration in Docker python: 3.6.4 Django: 2.0.2

AttributeError: 'module' object has no attribute 'lru_cache' with python 3.6.4 and Django 2.0.2

2018-02-14 Thread Greng Fortezza
kages" the previous problem has gone away but now there is another one AttributeError: 'module' object has no attribute 'lru_cache' Apache configs contains the following line WSGIScriptAlias / /www/settings/wsgi.py where /www/settings/wsgi.py is actual path to wsgi.py file. What could be wron

Re: AttributeError: 'module' object has no attribute 'SubfieldBase'

2017-08-07 Thread Tim Graham
_module(models_module_name) >> >> File "/usr/lib/python2.7/importlib/__init__.py", line 37, in >>> import_module >> >> __import__(name) >> >> File >>> "/home/ahmedn1/Documents/Paymob/wallet_executive_panel-master-c109bd6fe9cd1

AttributeError: 'module' object has no attribute 'SubfieldBase'

2017-08-07 Thread ahmed dawod
t_executive_panel-master-c109bd6fe9cd1bf793c11a5c2e97d18a1887c3ba/accounts/models.py", >> >> line 8, in > > import timedelta > > File "/usr/local/lib/python2.7/dist-packages/timedelta/__init__.py", >> line 11, in > > from .fields i

Re: AttributeError: 'module' object has no attribute 'index'

2016-03-13 Thread James Schneider
in _call_with_frames_removed > File "/home/kashif/Desktop/mysite/mysite/polls/urls.py", line 5, in > url(r'^$', views.index, name ='index'), > AttributeError: 'module' object has no attribute 'index' > > What does your urls.py look like? Did you do something like 'imp

AttributeError: 'module' object has no attribute 'index'

2016-03-13 Thread kashif Nawaz
load_unlocked File "", line 1129, in _exec File "", line 1471, in exec_module File "", line 321, in _call_with_frames_removed File "/home/kashif/Desktop/mysite/mysite/polls/urls.py", line 5, in url(r'^$', views.index, name ='index'), AttributeE

Re: Why this error when run manage.py?-->AttributeError: 'module' object has no attribute 'execute_manager'

2014-08-11 Thread Chris Seberino
anage.py without getting this error... > > % ./manage.py > Traceback (most recent call last): > File "./manage.py", line 6, in > django.core.management.execute_manager(settings) > AttributeError: 'module' object has no attribute 'execute_manager' > > I want to use the D

Why this error when run manage.py?-->AttributeError: 'module' object has no attribute 'execute_manager'

2014-08-11 Thread Chris Seberino
ibuteError: 'module' object has no attribute 'execute_manager' I want to use the Django shell with "./manage.py shell". Here is my full manage.py... #!/usr/bin/env python import settings import django.core.management django.core.management.execute_manager(settings) Thanks, cs -- You r

Re: on manage.py migrate appname I get: AttributeError: 'module' object has no attribute 'Migration'

2014-06-25 Thread Michael Lind Hjulskov
Hi Erik I solved it.. You vere right I should check again the files in migration folder It was my IDE (Pycharm) which for some reason sometimes fail on uploading files. So there was missing a few files, in a migrations folder Sorry I didnt know that - Pycharm is still new for me. I'm use to

Re: on manage.py migrate appname I get: AttributeError: 'module' object has no attribute 'Migration'

2014-06-25 Thread Michael Lind Hjulskov
hmm could it be: I run my local development env with a sqlite3 as database when I launch to deployment, I use mysql as db But doesnt South produce the same result when i run schemamigration, nomatter what db I'm using ? Hope You undderstand what I mean *Med venlig hilsen* Michael Hjulskov

Re: on manage.py migrate appname I get: AttributeError: 'module' object has no attribute 'Migration'

2014-06-25 Thread Michael Lind Hjulskov
> > Den 25/06/2014 kl. 21.30 skrev Michael Lind Hjulskov >: > > > Hi Erik > > > > Thank You > > > > I tried ./manage.py migrate myappname --traceback > > Still the same error message and no more info available than before. > > Check your migrations folder and make sure you

Re: on manage.py migrate appname I get: AttributeError: 'module' object has no attribute 'Migration'

2014-06-25 Thread Erik Cederstrand
Den 25/06/2014 kl. 21.30 skrev Michael Lind Hjulskov : > Hi Erik > > Thank You > > I tried ./manage.py migrate myappname --traceback > Still the same error message and no more info available than before. Check your migrations folder and make sure you only have South

Re: on manage.py migrate appname I get: AttributeError: 'module' object has no attribute 'Migration'

2014-06-25 Thread Michael Lind Hjulskov
6/2014 kl. 16.19 skrev Michael Lind Hjulskov <mhjuls...@gmail.com > >: > > > Hi there :) > > > > I'm stuck with this problem > > when I run python manage.py migrate myappname i get the following error: > > AttributeError: 'module' object has no attribute 'Migr

Re: on manage.py migrate appname I get: AttributeError: 'module' object has no attribute 'Migration'

2014-06-25 Thread Erik Cederstrand
Den 25/06/2014 kl. 16.19 skrev Michael Lind Hjulskov <mhjuls...@gmail.com>: > Hi there :) > > I'm stuck with this problem > when I run python manage.py migrate myappname i get the following error: > AttributeError: 'module' object has no attribute 'Migration' > > I

Re: on manage.py migrate appname I get: AttributeError: 'module' object has no attribute 'Migration'

2014-06-25 Thread Michael Lind Hjulskov
gt; > I'm stuck with this problem > when I run python manage.py migrate myappname i get the following error: > AttributeError: 'module' object has no attribute 'Migration' > > I remember I had this problem before, and I remember that I solved it by > deleting all pyc files - I tried

on manage.py migrate appname I get: AttributeError: 'module' object has no attribute 'Migration'

2014-06-25 Thread Michael Lind Hjulskov
Hi there :) I'm stuck with this problem when I run python manage.py migrate myappname i get the following error: AttributeError: 'module' object has no attribute 'Migration' I remember I had this problem before, and I remember that I solved it by deleting all pyc files - I tried that - still

Re: AttributeError: 'module' object has no attribute '_handlerList'

2013-10-15 Thread Darion Yaphet
", line >> 77, in _configure_logging >> logging_config_func(DEFAULT_LOGGING) >> File "/usr/lib/python2.7/site-packages/django/utils/dictconfig.py", >> line 555, in dictConfig >> dictConfigClass(config).configure() >> File "/usr/lib/py

Re: AttributeError: 'module' object has no attribute '_handlerList'

2013-10-15 Thread Leonardo Giordani
quot;/usr/lib/python2.7/site-packages/django/conf/__init__.py", line > 77, in _configure_logging > logging_config_func(DEFAULT_LOGGING) > File "/usr/lib/python2.7/site-packages/django/utils/dictconfig.py", line > 555, in dictConfig > dictConfigClass(con

Re: AttributeError: 'module' object has no attribute '_handlerList'

2013-10-15 Thread Darion Yaphet
() File "/usr/lib/python2.7/site-packages/django/utils/dictconfig.py", line 323, in configure del logging._handlerList[:] AttributeError: 'module' object has no attribute '_handlerList' and is something missing or any package is missing 2013/10/15 Leonardo Giordani <giord

Re: AttributeError: 'module' object has no attribute '_handlerList'

2013-10-15 Thread Leonardo Giordani
gt;> Leo >>>> >>>> Leonardo Giordani >>>> Author of The Digital Cat <http://lgiordani.github.com> >>>> My profile on About.me <http://about.me/leonardo.giordani> - My GitHub >>>> page <https://githu

Re: AttributeError: 'module' object has no attribute '_handlerList'

2013-10-14 Thread Darion Yaphet
gt; - My Coderwall >>> profile<https://coderwall.com/lgiordani> >>> >>> >>> 2013/10/14 Darion Yaphet <darion.yap...@gmail.com> >>> >>>> Hi all : >>>> >>>> when I use django-admin.py to init django project >>>

Re: AttributeError: 'module' object has no attribute '_handlerList'

2013-10-14 Thread Leonardo Giordani
thub.com/lgiordani> - My Coderwall >> profile<https://coderwall.com/lgiordani> >> >> >> 2013/10/14 Darion Yaphet <darion.yap...@gmail.com> >> >>> Hi all : >>> >>> when I use django-admin.py to init django project >>> djan

Re: AttributeError: 'module' object has no attribute '_handlerList'

2013-10-14 Thread Darion Yaphet
lt;https://coderwall.com/lgiordani> > > > 2013/10/14 Darion Yaphet <darion.yap...@gmail.com> > >> Hi all : >> >> when I use django-admin.py to init django project >> django-admin.py startproject hello >> >> Got a exception .. >> Attrib

Re: AttributeError: 'module' object has no attribute '_handlerList'

2013-10-14 Thread Leonardo Giordani
t > django-admin.py startproject hello > > Got a exception .. > AttributeError: 'module' object has no attribute '_handlerList' > > what is it > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. >

AttributeError: 'module' object has no attribute '_handlerList'

2013-10-13 Thread Darion Yaphet
Hi all : when I use django-admin.py to init django project django-admin.py startproject hello Got a exception .. AttributeError: 'module' object has no attribute '_handlerList' what is it -- You received this message because you are subscribed to the Google Groups "Django

Re: custom management commands: AttributeError: 'module' object has no attribute 'Command'

2012-08-13 Thread Kurtis Mullins
I'd look more into the full traceback. I haven't had any trouble with underscores either. On Mon, Aug 13, 2012 at 2:31 PM, creecode wrote: > I have many custom management command names that have underscores in them. > I've never had a problem. I believe that a management

Re: custom management commands: AttributeError: 'module' object has no attribute 'Command'

2012-08-13 Thread creecode
I have many custom management command names that have underscores in them. I've never had a problem. I believe that a management command name only needs follow python rules for naming files. On Sunday, August 12, 2012 1:44:06 AM UTC-7, Melvyn Sopacua wrote: On 11-8-2012 2:14, Matthew Meyer

Re: custom management commands: AttributeError: 'module' object has no attribute 'Command'

2012-08-12 Thread Melvyn Sopacua
On 11-8-2012 2:14, Matthew Meyer wrote: > The command I am running is : > > $ python manage.py event_expiration > > I've made sure I am adding the event_expiration.py file within management > and commands folders and that those folders have init files. those are in > one of my app folders. >

custom management commands: AttributeError: 'module' object has no attribute 'Command'

2012-08-10 Thread Matthew Meyer
I am trying to make a custom management command as show in the docs here: https://docs.djangoproject.com/en/dev/howto/custom-management-commands/ When I try to run the command from my project directory I am experiencing the following error: AttributeError: 'module' object has no attribute

AttributeError: 'module' object has no attribute '_handlerList'

2012-01-27 Thread MURUGESAN
ss(config).configure() File "C:\Program Files\Python24\lib\site-packages\django\utils \dictconfig.py", line 321, in configure del logging._handlerList[:] AttributeError: 'module' object has no attribute '_handlerList' Thanks in Advance Murugesan M -- You received this messa

Re: ERROR: test_14377 (django.contrib.auth.tests.views.LogoutTest), AttributeError: 'module' object has no attribute 'handler500'

2011-07-07 Thread David Markey
/python2.7/dist-packages/Django-1.2.5-py2.7.egg/django/core/urlresolvers.py", > line 263, in resolve500 > return self._resolve_special('500') > File > "/usr/local/lib/python2.7/dist-packages/Django-1.2.5-p

ERROR: test_14377 (django.contrib.auth.tests.views.LogoutTest), AttributeError: 'module' object has no attribute 'handler500'

2011-07-03 Thread David Markey
callback = getattr(self.urlconf_module, 'handler%s' % view_type) AttributeError: 'module' object has no attribute 'handler500' -- Ran 21 tests in 0.481s Thanks... -- You received this message because you are subscribed to the Google

Re: AttributeError 'module' object has no attribute '__path'

2011-02-01 Thread Karen Tracey
On Tue, Feb 1, 2011 at 6:03 PM, gintare <g.statk...@gmail.com> wrote: > AttributeError 'module' object has no attribute '__path' What is in your INSTALLED_APPS setting? This cryptic message usually means there is something in INSTALLED_APPS that is not correct. (There's a ticke

AttributeError 'module' object has no attribute '__path'

2011-02-01 Thread gintare
and runserver c:\Python27\python c:\amber\Spokas\manage.py runserver AttributeError 'module' object has no attribute '__path' I added *.pth files to different locations to check if it works: c:\Python27\Libs\site-packages\Django c:\Python27\Libs\site-packages c:\amber c:\amber\Spokas None

Re: AttributeError: 'module' object has no attribute 'DatabaseError'

2010-01-23 Thread abs
Just download and untar psycopg2 package and do easy_install. P.s. setup.py build/install works incorrectly -- 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

AttributeError: 'module' object has no attribute 'DatabaseError'

2010-01-18 Thread abs
line 35, in import_module __import__(name) File "/Library/Python/2.6/site-packages/django/db/backends/ postgresql_psycopg2/base.py", line 23, in DatabaseError = Database.DatabaseError AttributeError: 'module' object has no attribute 'DatabaseError' Any ideas? :) -- You rece

AttributeError: 'module' object has no attribute 'TabularInline'

2009-03-04 Thread D
I was getting this error AttributeError: 'module' object has no attribute 'TabularInline' with code i knew was good, After a bit of digging i found my own answer ... posted here for anyone who googles the error message; My dev server version of django was ; python -c "import django;

AttributeError: 'module' object has no attribute

2008-07-22 Thread Tom
am having trouble with the second page (http:// www.djangoproject.com/documentation/tutorial01/). The tutorial instructs me to add "admin.site.register(Poll)" to the bottom of models.py. I've done that, and now the sever gives me the following error: AttributeError: 'module' object has

AttributeError: 'module' object has no attribute

2007-07-31 Thread [EMAIL PROTECTED]
: 'module' object has no attribute 'calendar' --~--~-~--~~~---~--~~ 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 g

Re: AttributeError: 'module' object has no attribute 'myapp'

2007-04-02 Thread Vinay Sajip
> The problem is caused by the way that Django loads and indexes > applications. I haven't tried putting code in __init__.py, but it > certainly doesn't surprise me that it has caused you difficulties. > > > If this is not the > > case, where > > is the best place to do the kind of initialisation

Re: AttributeError: 'module' object has no attribute 'myapp'

2007-03-31 Thread Russell Keith-Magee
On 3/30/07, Vinay Sajip <[EMAIL PROTECTED]> wrote: > > Now, why should this be? The traceback is mystifying to me - can > anyone shed any > light? The problem is caused by the way that Django loads and indexes applications. I haven't tried putting code in __init__.py, but it certainly doesn't

AttributeError: 'module' object has no attribute 'myapp'

2007-03-30 Thread Vinay Sajip
ettings.LANGUAGE_CODE) File "/usr/lib/python2.4/site-packages/django/utils/translation/ trans_real.py", line 167, in _fetch app = getattr(__import__(appname[:p], {}, {}, [appname[p+1:]]), appname[p+1:]) AttributeError: 'module' object has no attribute 'myapp' Now, why should th

Re: Apache authentication: AttributeError: 'module' object has no attribute 'auth'

2006-10-06 Thread Graham Dumpleton
[EMAIL PROTECTED] wrote: > Hi.. thanks for your replies guys. > > You're probably right... I'm running mod_python from the Ubuntu dapper > repositories which currently has version 3.1.4. Unfortunately the Edgy > package (which is 3.2.8) depends on a newer version of libc6 which > means that I

Re: Apache authentication: AttributeError: 'module' object has no attribute 'auth'

2006-10-06 Thread [EMAIL PROTECTED]
Hi.. thanks for your replies guys. You're probably right... I'm running mod_python from the Ubuntu dapper repositories which currently has version 3.1.4. Unfortunately the Edgy package (which is 3.2.8) depends on a newer version of libc6 which means that I really don't want to upgrade the

Re: Apache authentication: AttributeError: 'module' object has no attribute 'auth'

2006-10-05 Thread Graham Dumpleton
> > When I try logging in a user I get a 500 internal server error and the > following is in my apache error log: > [Thu Oct 05 15:46:38 2006] [error] [client 172.23.16.108] > PythonAuthenHandler django.contrib.auth.handlers.modpython: Traceback > ... > [Thu Oct 05 15:46:38 2006

Apache authentication: AttributeError: 'module' object has no attribute 'auth'

2006-10-05 Thread [EMAIL PROTECTED]
es/django/utils/translation/trans_real.py", line 167, in _fetch\napp = getattr(__import__(appname[:p], {}, {}, [appname[p+1:]]), appname[p+1:]) [Thu Oct 05 15:46:38 2006] [error] [client 172.23.16.108] PythonAuthenHandler django.contrib.auth.handlers.modpython: AttributeError: 'mo

Re: AttributeError: 'module' object has no attribute 'createsuperuser'

2006-08-06 Thread [EMAIL PROTECTED]
You're absolutely right! How could I be so blind. Thanks for your patient and quick help - its much appreciated. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: AttributeError: 'module' object has no attribute 'createsuperuser'

2006-08-06 Thread Todd O'Bryan
rogram > Files\Development\Python\Lib\site-packages\Django-0.90-py2.4.egg > \django\bin\django-admin.py", > line 6, in ? > ACTION_MAPPING = { > AttributeError: 'module' object has no attribute 'createsuperuser' >

AttributeError: 'module' object has no attribute 'createsuperuser'

2006-08-06 Thread [EMAIL PROTECTED]
min.py", line 6, in ? ACTION_MAPPING = { AttributeError: 'module' object has no attribute 'createsuperuser' - Does anyone know of a solution?