Re: Django OperationalError

2015-03-15 Thread Petar Pilipovic
Solved it, the problem was in 3th party apps, I did as luis recommended,
tanks for the help.
all the best,
Petar

On Fri, Mar 13, 2015 at 4:45 AM, luis zarate  wrote:

> If you deleted your db and created again and the issue persist then maybe
> the problem is in your apps.
>
> Try removing db, comment 3th party apps in settings and run migrate with
> only django core apps, put again 3th party apps and run migrate.
>
> El jueves, 12 de marzo de 2015, Collin Anderson 
> escribió:
>
> > Hi,
> > Do you have the correct file path set to your sqlite3 database? Does it
> have proper permissions?
> > I found a similar issue here:
> > https://www.pythonanywhere.com/forums/topic/1814/
> >
> > Collin
> > On Wednesday, March 11, 2015 at 2:04:45 AM UTC-4, Petar Pilipovic wrote:
> >>
> >> Hey Collin,
> >> I have done what have you told me, but I still have that error, I even
> created data base on www.pythonanywhere.com, and amend mine setting.py
> file to use that db.
> >> I have manually deleted database and done syncdb, migrate etc.
> >> Here are the output for syncdb, and then I have made mine superuser,
> this is the Operational Error.
> >> Question: Why is he reporting this template rendering error on line 40?
> >> Tank you
> >> Best
> >> Petar
> >> On Tue, Mar 10, 2015 at 6:49 PM, Petar Pilipovic 
> wrote:
> >>>
> >>> Heh, lol, Ok tax Collin I will do that. I was thinking that i need to
> delete mine migration from the terminal, but I will try that, tnx
> >>>
> >>> 10.03.2015. 18.01, "Collin Anderson"  је
> написао/ла:
> 
>  Hi Petar,
>  I'm actually not sure why you want to call sqlflush. If you're trying
> to clear out the database, you may need to delete the migrations table
> manually, but it just might be simpler to delete the either database and
> re-create it, rather than the individual tables.
>  Collin
> 
>  On Friday, March 6, 2015 at 11:24:19 PM UTC-5, Petar Pilipovic wrote:
> >
> > Hello Collin,
> > No the problem is, i have tried to drop mine migrations whit python
> manage sqlflush, then I have recreate the db whit
> > python manage.py migrate.
> > Here this is the all operation whit python manage sqlflush, syncdb,
> migrate. I have notice that there was no migration to apply at the end, and
> the error is still there.
> > Is there something else I can do, or how can I approach this
> differently.
> > Best
> > Petar
> > On Fri, Mar 6, 2015 at 11:21 PM, Collin Anderson 
> wrote:
> >>
> >> Hi,
> >> The problem is that django_session doesn't exist in your database.
> Either it was never created or it was created and then later deleted.
> >> Does running manage.py migrate re-create it?
> >> Collin
> >>
> >> On Monday, March 2, 2015 at 11:36:51 PM UTC-5, Petar Pilipovic
> wrote:
> >>>
> >>> Hello James, sorry for not uploading mine answer on this mater, I
> was busy whit something else this day, ok now back to mine Operational
> Error I have got.
> >>> I tried to google some solution to this problem had no luck, and I
> did what have you told me.
> >>> I heave done some
> >>> python manage.py sqlflush
> >>> and that has gave me this output:
> >>> (django17)04:20 ~/mineDjango$ python manage.py sqlflush
> BEGIN;DELETE FROM "django_admin_log";DELETE FROM "auth_permission";DELETE
> FROM "auth_group";DELETE FROM "auth_group_permissions";DELETE FROM
> "django_session";DELETE FROM "auth_user_groups";DELETE FROM
> "auth_user_user_permissions";DELETE FROM "account_emailaddress";DELETE FROM
> "django_site";DELETE FROM "profiles_profile";DELETE FROM "auth_user";DELETE
> FROM "profiles_userstripe";DELETE FROM "account_emailconfirmation";DELETE
> FROM "django_content_type";COMMIT;
> >>> Then I have done
> >>> python manage.py syncdb python manage.py migrate
> >>> Output of mine recreating tables are this:
> >>> (django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to
> perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all
> migrations: account, sessions, admin, sites, profiles, contenttypes,
> authSynchronizing apps without migrations: Creating tables... Installing
> custom SQL... Installing indexes...Running migrations: No migrations to
> apply.(django17)04:20 ~/mineDjango$ python manage.py migrateOperations to
> perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all
> migrations: account, sessions, admin, sites, profiles, contenttypes,
> authSynchronizing apps without migrations: Creating tables... Installing
> custom SQL... Installing indexes...Running migrations: No migrations to
> apply.
> >>> Basically I have had no changes in mine attempt to drop and
> recreate tables in mine application.
> >>> The error is still there.
> >>> Error:
> >>> Environment:
> >>>
> >>>
> >>>
> >>>
> >>> Request Method: GET
> >>> Request URL: http://copser.pythonanywhere.com/
> >>>
> >>>
> >>> Django Version: 1.

Re: Django OperationalError

2015-03-12 Thread luis zarate
If you deleted your db and created again and the issue persist then maybe
the problem is in your apps.

Try removing db, comment 3th party apps in settings and run migrate with
only django core apps, put again 3th party apps and run migrate.

El jueves, 12 de marzo de 2015, Collin Anderson 
escribió:
> Hi,
> Do you have the correct file path set to your sqlite3 database? Does it
have proper permissions?
> I found a similar issue here:
> https://www.pythonanywhere.com/forums/topic/1814/
>
> Collin
> On Wednesday, March 11, 2015 at 2:04:45 AM UTC-4, Petar Pilipovic wrote:
>>
>> Hey Collin,
>> I have done what have you told me, but I still have that error, I even
created data base on www.pythonanywhere.com, and amend mine setting.py file
to use that db.
>> I have manually deleted database and done syncdb, migrate etc.
>> Here are the output for syncdb, and then I have made mine superuser,
this is the Operational Error.
>> Question: Why is he reporting this template rendering error on line 40?
>> Tank you
>> Best
>> Petar
>> On Tue, Mar 10, 2015 at 6:49 PM, Petar Pilipovic 
wrote:
>>>
>>> Heh, lol, Ok tax Collin I will do that. I was thinking that i need to
delete mine migration from the terminal, but I will try that, tnx
>>>
>>> 10.03.2015. 18.01, "Collin Anderson"  је написао/ла:

 Hi Petar,
 I'm actually not sure why you want to call sqlflush. If you're trying
to clear out the database, you may need to delete the migrations table
manually, but it just might be simpler to delete the either database and
re-create it, rather than the individual tables.
 Collin

 On Friday, March 6, 2015 at 11:24:19 PM UTC-5, Petar Pilipovic wrote:
>
> Hello Collin,
> No the problem is, i have tried to drop mine migrations whit python
manage sqlflush, then I have recreate the db whit
> python manage.py migrate.
> Here this is the all operation whit python manage sqlflush, syncdb,
migrate. I have notice that there was no migration to apply at the end, and
the error is still there.
> Is there something else I can do, or how can I approach this
differently.
> Best
> Petar
> On Fri, Mar 6, 2015 at 11:21 PM, Collin Anderson 
wrote:
>>
>> Hi,
>> The problem is that django_session doesn't exist in your database.
Either it was never created or it was created and then later deleted.
>> Does running manage.py migrate re-create it?
>> Collin
>>
>> On Monday, March 2, 2015 at 11:36:51 PM UTC-5, Petar Pilipovic wrote:
>>>
>>> Hello James, sorry for not uploading mine answer on this mater, I
was busy whit something else this day, ok now back to mine Operational
Error I have got.
>>> I tried to google some solution to this problem had no luck, and I
did what have you told me.
>>> I heave done some
>>> python manage.py sqlflush
>>> and that has gave me this output:
>>> (django17)04:20 ~/mineDjango$ python manage.py sqlflush
BEGIN;DELETE FROM "django_admin_log";DELETE FROM "auth_permission";DELETE
FROM "auth_group";DELETE FROM "auth_group_permissions";DELETE FROM
"django_session";DELETE FROM "auth_user_groups";DELETE FROM
"auth_user_user_permissions";DELETE FROM "account_emailaddress";DELETE FROM
"django_site";DELETE FROM "profiles_profile";DELETE FROM "auth_user";DELETE
FROM "profiles_userstripe";DELETE FROM "account_emailconfirmation";DELETE
FROM "django_content_type";COMMIT;
>>> Then I have done
>>> python manage.py syncdb python manage.py migrate
>>> Output of mine recreating tables are this:
>>> (django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to
perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all
migrations: account, sessions, admin, sites, profiles, contenttypes,
authSynchronizing apps without migrations: Creating tables... Installing
custom SQL... Installing indexes...Running migrations: No migrations to
apply.(django17)04:20 ~/mineDjango$ python manage.py migrateOperations to
perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all
migrations: account, sessions, admin, sites, profiles, contenttypes,
authSynchronizing apps without migrations: Creating tables... Installing
custom SQL... Installing indexes...Running migrations: No migrations to
apply.
>>> Basically I have had no changes in mine attempt to drop and
recreate tables in mine application.
>>> The error is still there.
>>> Error:
>>> Environment:
>>>
>>>
>>>
>>>
>>> Request Method: GET
>>> Request URL: http://copser.pythonanywhere.com/
>>>
>>>
>>> Django Version: 1.7.2
>>> Python Version: 2.7.6
>>> Installed Applications:
>>> ('django.contrib.admin',
>>>  'django.contrib.auth',
>>>  'django.contrib.contenttypes',
>>>  'django.contrib.sessions',
>>>  'django.contrib.messages',
>>>  'django.contrib.staticfiles',
>>>  'profiles',
>>>  'crispy_forms',
>>>  'django.contrib.sites',
>>>  'allauth',
>>>  'all

Re: Django OperationalError

2015-03-12 Thread Collin Anderson
Hi,

Do you have the correct file path set to your sqlite3 database? Does it 
have proper permissions?

I found a similar issue here:
https://www.pythonanywhere.com/forums/topic/1814/

Collin

On Wednesday, March 11, 2015 at 2:04:45 AM UTC-4, Petar Pilipovic wrote:
>
> Hey Collin,
> I have done what have you told me, but I still have that error, I even 
> created data base on www.pythonanywhere.com, and amend mine setting.py 
> file to use that db.
> I have manually deleted database and done syncdb, migrate etc.
> Here are the output for syncdb , and then I have 
> made mine superuser, this is the Operational Error .
> Question: Why is he reporting this template rendering error on line 40? 
> 
> Tank you
> Best 
> Petar
>
> On Tue, Mar 10, 2015 at 6:49 PM, Petar Pilipovic  > wrote:
>
>> Heh, lol, Ok tax Collin I will do that. I was thinking that i need to 
>> delete mine migration from the terminal, but I will try that, tnx
>> 10.03.2015. 18.01, "Collin Anderson" > 
>> је написао/ла:
>>
>> Hi Petar,
>>>
>>> I'm actually not sure why you want to call sqlflush. If you're trying to 
>>> clear out the database, you may need to delete the migrations table 
>>> manually, but it just might be simpler to delete the either database and 
>>> re-create it, rather than the individual tables.
>>>
>>> Collin
>>>
>>> On Friday, March 6, 2015 at 11:24:19 PM UTC-5, Petar Pilipovic wrote:

 Hello Collin,
 No the problem is, i have tried to drop mine migrations whit python 
 manage sqlflush, then I have recreate the db whit 
 python manage.py migrate.
 Here this is the all operation whit python manage sqlflush, syncdb, 
 migrate . I have notice that there was no 
 migration to apply at the end, and the error is still there.
 Is there something else I can do, or how can I approach this 
 differently.
 Best
 Petar

 On Fri, Mar 6, 2015 at 11:21 PM, Collin Anderson  
 wrote:

> Hi,
>
> The problem is that django_session doesn't exist in your database. 
> Either it was never created or it was created and then later deleted.
>
> Does running manage.py migrate re-create it?
>
> Collin
>
> On Monday, March 2, 2015 at 11:36:51 PM UTC-5, Petar Pilipovic wrote:
>>
>> Hello James, sorry for not uploading mine answer on this mater, I was 
>> busy whit something else this day, ok now back to mine Operational Error 
>> I 
>> have got.
>> I tried to google some solution to this problem had no luck, and I 
>> did what have you told me.
>> I heave done some 
>> python manage.py sqlflush
>>
>> and that has gave me this output: 
>>
>> (django17)04:20 ~/mineDjango$ python manage.py sqlflush BEGIN;DELETE 
>> FROM "django_admin_log";DELETE FROM "auth_permission";DELETE FROM 
>> "auth_group";DELETE FROM "auth_group_permissions";DELETE FROM 
>> "django_session";DELETE FROM "auth_user_groups";DELETE FROM 
>> "auth_user_user_permissions";DELETE FROM "account_emailaddress";
>> DELETE FROM "django_site";DELETE FROM "profiles_profile";DELETE FROM 
>> "auth_user";DELETE FROM "profiles_userstripe";DELETE FROM 
>> "account_emailconfirmation";DELETE FROM "django_content_type";COMMIT;
>>
>> Then I have done 
>> python manage.py syncdb python manage.py migrate
>>
>> Output of mine recreating tables are this:
>> (django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to 
>> perform: Synchronize unmigrated apps: allauth, crispy_forms Apply 
>> all migrations: account, sessions, admin, sites, profiles, 
>> contenttypes, authSynchronizing apps without migrations: Creating 
>> tables... Installing custom SQL... Installing indexes...Running 
>> migrations: No migrations to apply.(django17)04:20 ~/mineDjango$ python 
>> manage.py migrateOperations to perform: Synchronize unmigrated apps: 
>> allauth, 
>> crispy_forms Apply all migrations: account, sessions, admin, sites, 
>> profiles, contenttypes, authSynchronizing apps without migrations: 
>> Creating tables... Installing custom SQL... Installing indexes...Running 
>> migrations: No migrations to apply.
>> Basically I have had no changes in mine attempt to drop and recreate 
>> tables in mine application.
>> The error is still there.
>> Error:
>> Environment:
>>
>>
>>
>>
>> Request Method: GET
>> Request URL: http://copser.pythonanywhere.com/
>>
>>
>> Django Version: 1.7.2
>> Python Version: 2.7.6
>> Installed Applications:
>> ('django.contrib.admin',
>>  'django.contrib.auth',
>>  'django.contrib.contenttypes',
>>  'django.contrib.sessions',
>>  'django.contrib.messages',
>>  'django.contrib.staticfiles',
>>  'profiles',
>>  'crispy_forms',
>>  'django.contrib.sites',
>>  '

Re: Django OperationalError

2015-03-12 Thread Petar Pilipovic
Heh, lol, Ok tax Collin I will do that. I was thinking that i need to
delete mine migration from the terminal, but I will try that, tnx
10.03.2015. 18.01, "Collin Anderson"  је написао/ла:

> Hi Petar,
>
> I'm actually not sure why you want to call sqlflush. If you're trying to
> clear out the database, you may need to delete the migrations table
> manually, but it just might be simpler to delete the either database and
> re-create it, rather than the individual tables.
>
> Collin
>
> On Friday, March 6, 2015 at 11:24:19 PM UTC-5, Petar Pilipovic wrote:
>>
>> Hello Collin,
>> No the problem is, i have tried to drop mine migrations whit python
>> manage sqlflush, then I have recreate the db whit
>> python manage.py migrate.
>> Here this is the all operation whit python manage sqlflush, syncdb,
>> migrate . I have notice that there was no migration
>> to apply at the end, and the error is still there.
>> Is there something else I can do, or how can I approach this differently.
>> Best
>> Petar
>>
>> On Fri, Mar 6, 2015 at 11:21 PM, Collin Anderson 
>> wrote:
>>
>>> Hi,
>>>
>>> The problem is that django_session doesn't exist in your database.
>>> Either it was never created or it was created and then later deleted.
>>>
>>> Does running manage.py migrate re-create it?
>>>
>>> Collin
>>>
>>> On Monday, March 2, 2015 at 11:36:51 PM UTC-5, Petar Pilipovic wrote:

 Hello James, sorry for not uploading mine answer on this mater, I was
 busy whit something else this day, ok now back to mine Operational Error I
 have got.
 I tried to google some solution to this problem had no luck, and I did
 what have you told me.
 I heave done some
 python manage.py sqlflush

 and that has gave me this output:

 (django17)04:20 ~/mineDjango$ python manage.py sqlflush BEGIN;DELETE
 FROM "django_admin_log";DELETE FROM "auth_permission";DELETE FROM
 "auth_group";DELETE FROM "auth_group_permissions";DELETE FROM
 "django_session";DELETE FROM "auth_user_groups";DELETE FROM
 "auth_user_user_permissions";DELETE FROM "account_emailaddress";DELETE
 FROM "django_site";DELETE FROM "profiles_profile";DELETE FROM
 "auth_user";DELETE FROM "profiles_userstripe";DELETE FROM
 "account_emailconfirmation";DELETE FROM "django_content_type";COMMIT;

 Then I have done
 python manage.py syncdb python manage.py migrate

 Output of mine recreating tables are this:
 (django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to
 perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all
 migrations: account, sessions, admin, sites, profiles, contenttypes,
 authSynchronizing apps without migrations: Creating tables...
 Installing custom SQL... Installing indexes...Running migrations: No
 migrations to apply.(django17)04:20 ~/mineDjango$ python manage.py
 migrateOperations to perform: Synchronize unmigrated apps: allauth,
 crispy_forms Apply all migrations: account, sessions, admin, sites,
 profiles, contenttypes, authSynchronizing apps without migrations:
 Creating tables... Installing custom SQL... Installing indexes...Running
 migrations: No migrations to apply.
 Basically I have had no changes in mine attempt to drop and recreate
 tables in mine application.
 The error is still there.
 Error:
 Environment:




 Request Method: GET
 Request URL: http://copser.pythonanywhere.com/


 Django Version: 1.7.2
 Python Version: 2.7.6
 Installed Applications:
 ('django.contrib.admin',
  'django.contrib.auth',
  'django.contrib.contenttypes',
  'django.contrib.sessions',
  'django.contrib.messages',
  'django.contrib.staticfiles',
  'profiles',
  'crispy_forms',
  'django.contrib.sites',
  'allauth',
  'allauth.account',
  'stripe')
 Installed Middleware:
 ('django.contrib.sessions.middleware.SessionMiddleware',
  'django.middleware.common.CommonMiddleware',
  'django.middleware.csrf.CsrfViewMiddleware',
  'django.contrib.auth.middleware.AuthenticationMiddleware',
  'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
  'django.contrib.messages.middleware.MessageMiddleware',
  'django.middleware.clickjacking.XFrameOptionsMiddleware')




 Template error:
 In template /home/copser/static/templates/home.html, error at line 40
no such table: django_session
30 :




31 : {% block content %}




32 :  




33 : 




34 :




35 : 




36 : 




37 :  {##}




38 :




39 : 




40 :  {% if request.user.is_auth

Re: Django OperationalError

2015-03-10 Thread Petar Pilipovic
Hey Collin,
I have done what have you told me, but I still have that error, I even
created data base on www.pythonanywhere.com, and amend mine setting.py file
to use that db.
I have manually deleted database and done syncdb, migrate etc.
Here are the output for syncdb , and then I have made
mine superuser, this is the Operational Error .
Question: Why is he reporting this template rendering error on line 40?

Tank you
Best
Petar

On Tue, Mar 10, 2015 at 6:49 PM, Petar Pilipovic  wrote:

> Heh, lol, Ok tax Collin I will do that. I was thinking that i need to
> delete mine migration from the terminal, but I will try that, tnx
> 10.03.2015. 18.01, "Collin Anderson"  је написао/ла:
>
> Hi Petar,
>>
>> I'm actually not sure why you want to call sqlflush. If you're trying to
>> clear out the database, you may need to delete the migrations table
>> manually, but it just might be simpler to delete the either database and
>> re-create it, rather than the individual tables.
>>
>> Collin
>>
>> On Friday, March 6, 2015 at 11:24:19 PM UTC-5, Petar Pilipovic wrote:
>>>
>>> Hello Collin,
>>> No the problem is, i have tried to drop mine migrations whit python
>>> manage sqlflush, then I have recreate the db whit
>>> python manage.py migrate.
>>> Here this is the all operation whit python manage sqlflush, syncdb,
>>> migrate . I have notice that there was no
>>> migration to apply at the end, and the error is still there.
>>> Is there something else I can do, or how can I approach this differently.
>>> Best
>>> Petar
>>>
>>> On Fri, Mar 6, 2015 at 11:21 PM, Collin Anderson 
>>> wrote:
>>>
 Hi,

 The problem is that django_session doesn't exist in your database.
 Either it was never created or it was created and then later deleted.

 Does running manage.py migrate re-create it?

 Collin

 On Monday, March 2, 2015 at 11:36:51 PM UTC-5, Petar Pilipovic wrote:
>
> Hello James, sorry for not uploading mine answer on this mater, I was
> busy whit something else this day, ok now back to mine Operational Error I
> have got.
> I tried to google some solution to this problem had no luck, and I did
> what have you told me.
> I heave done some
> python manage.py sqlflush
>
> and that has gave me this output:
>
> (django17)04:20 ~/mineDjango$ python manage.py sqlflush BEGIN;DELETE
> FROM "django_admin_log";DELETE FROM "auth_permission";DELETE FROM
> "auth_group";DELETE FROM "auth_group_permissions";DELETE FROM
> "django_session";DELETE FROM "auth_user_groups";DELETE FROM
> "auth_user_user_permissions";DELETE FROM "account_emailaddress";DELETE
> FROM "django_site";DELETE FROM "profiles_profile";DELETE FROM
> "auth_user";DELETE FROM "profiles_userstripe";DELETE FROM
> "account_emailconfirmation";DELETE FROM "django_content_type";COMMIT;
>
> Then I have done
> python manage.py syncdb python manage.py migrate
>
> Output of mine recreating tables are this:
> (django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to
> perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all
> migrations: account, sessions, admin, sites, profiles, contenttypes,
> authSynchronizing apps without migrations: Creating tables...
> Installing custom SQL... Installing indexes...Running migrations: No
> migrations to apply.(django17)04:20 ~/mineDjango$ python manage.py
> migrateOperations to perform: Synchronize unmigrated apps: allauth,
> crispy_forms Apply all migrations: account, sessions, admin, sites,
> profiles, contenttypes, authSynchronizing apps without migrations:
> Creating tables... Installing custom SQL... Installing indexes...Running
> migrations: No migrations to apply.
> Basically I have had no changes in mine attempt to drop and recreate
> tables in mine application.
> The error is still there.
> Error:
> Environment:
>
>
>
>
> Request Method: GET
> Request URL: http://copser.pythonanywhere.com/
>
>
> Django Version: 1.7.2
> Python Version: 2.7.6
> Installed Applications:
> ('django.contrib.admin',
>  'django.contrib.auth',
>  'django.contrib.contenttypes',
>  'django.contrib.sessions',
>  'django.contrib.messages',
>  'django.contrib.staticfiles',
>  'profiles',
>  'crispy_forms',
>  'django.contrib.sites',
>  'allauth',
>  'allauth.account',
>  'stripe')
> Installed Middleware:
> ('django.contrib.sessions.middleware.SessionMiddleware',
>  'django.middleware.common.CommonMiddleware',
>  'django.middleware.csrf.CsrfViewMiddleware',
>  'django.contrib.auth.middleware.AuthenticationMiddleware',
>  'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
>  'django.contrib.messages.middleware.MessageMiddleware',
>  'django

Re: Django OperationalError

2015-03-10 Thread Collin Anderson
Hi Petar,

I'm actually not sure why you want to call sqlflush. If you're trying to 
clear out the database, you may need to delete the migrations table 
manually, but it just might be simpler to delete the either database and 
re-create it, rather than the individual tables.

Collin

On Friday, March 6, 2015 at 11:24:19 PM UTC-5, Petar Pilipovic wrote:
>
> Hello Collin,
> No the problem is, i have tried to drop mine migrations whit python manage 
> sqlflush, then I have recreate the db whit 
> python manage.py migrate.
> Here this is the all operation whit python manage sqlflush, syncdb, 
> migrate . I have notice that there was no migration 
> to apply at the end, and the error is still there.
> Is there something else I can do, or how can I approach this differently.
> Best
> Petar
>
> On Fri, Mar 6, 2015 at 11:21 PM, Collin Anderson  > wrote:
>
>> Hi,
>>
>> The problem is that django_session doesn't exist in your database. Either 
>> it was never created or it was created and then later deleted.
>>
>> Does running manage.py migrate re-create it?
>>
>> Collin
>>
>> On Monday, March 2, 2015 at 11:36:51 PM UTC-5, Petar Pilipovic wrote:
>>>
>>> Hello James, sorry for not uploading mine answer on this mater, I was 
>>> busy whit something else this day, ok now back to mine Operational Error I 
>>> have got.
>>> I tried to google some solution to this problem had no luck, and I did 
>>> what have you told me.
>>> I heave done some 
>>> python manage.py sqlflush
>>>
>>> and that has gave me this output: 
>>>
>>> (django17)04:20 ~/mineDjango$ python manage.py sqlflush BEGIN;DELETE 
>>> FROM "django_admin_log";DELETE FROM "auth_permission";DELETE FROM 
>>> "auth_group";DELETE FROM "auth_group_permissions";DELETE FROM 
>>> "django_session";DELETE FROM "auth_user_groups";DELETE FROM 
>>> "auth_user_user_permissions";DELETE FROM "account_emailaddress";DELETE 
>>> FROM "django_site";DELETE FROM "profiles_profile";DELETE FROM 
>>> "auth_user";DELETE FROM "profiles_userstripe";DELETE FROM 
>>> "account_emailconfirmation";DELETE FROM "django_content_type";COMMIT;
>>>
>>> Then I have done 
>>> python manage.py syncdb python manage.py migrate
>>>
>>> Output of mine recreating tables are this:
>>> (django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to 
>>> perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all 
>>> migrations: account, sessions, admin, sites, profiles, contenttypes, 
>>> authSynchronizing apps without migrations: Creating tables... 
>>> Installing custom SQL... Installing indexes...Running migrations: No 
>>> migrations to apply.(django17)04:20 ~/mineDjango$ python manage.py 
>>> migrateOperations to perform: Synchronize unmigrated apps: allauth, 
>>> crispy_forms Apply all migrations: account, sessions, admin, sites, 
>>> profiles, contenttypes, authSynchronizing apps without migrations: 
>>> Creating tables... Installing custom SQL... Installing indexes...Running 
>>> migrations: No migrations to apply.
>>> Basically I have had no changes in mine attempt to drop and recreate 
>>> tables in mine application.
>>> The error is still there.
>>> Error:
>>> Environment:
>>>
>>>
>>>
>>>
>>> Request Method: GET
>>> Request URL: http://copser.pythonanywhere.com/
>>>
>>>
>>> Django Version: 1.7.2
>>> Python Version: 2.7.6
>>> Installed Applications:
>>> ('django.contrib.admin',
>>>  'django.contrib.auth',
>>>  'django.contrib.contenttypes',
>>>  'django.contrib.sessions',
>>>  'django.contrib.messages',
>>>  'django.contrib.staticfiles',
>>>  'profiles',
>>>  'crispy_forms',
>>>  'django.contrib.sites',
>>>  'allauth',
>>>  'allauth.account',
>>>  'stripe')
>>> Installed Middleware:
>>> ('django.contrib.sessions.middleware.SessionMiddleware',
>>>  'django.middleware.common.CommonMiddleware',
>>>  'django.middleware.csrf.CsrfViewMiddleware',
>>>  'django.contrib.auth.middleware.AuthenticationMiddleware',
>>>  'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
>>>  'django.contrib.messages.middleware.MessageMiddleware',
>>>  'django.middleware.clickjacking.XFrameOptionsMiddleware')
>>>
>>>
>>>
>>>
>>> Template error:
>>> In template /home/copser/static/templates/home.html, error at line 40
>>>no such table: django_session
>>>30 :  
>>>
>>>
>>>
>>>
>>>31 : {% block content %}
>>>
>>>
>>>
>>>
>>>32 :  
>>>
>>>
>>>
>>>
>>>33 : 
>>>
>>>
>>>
>>>
>>>34 :   
>>>
>>>
>>>
>>>
>>>35 : 
>>>
>>>
>>>
>>>
>>>36 : 
>>>
>>>
>>>
>>>
>>>37 :  {#  >> src="{% static 'img/07.jpg' %}"/>  #}
>>>
>>>
>>>
>>>
>>>38 :
>>>
>>>
>>>
>>>
>>>39 : 
>>>
>>>
>>>
>>>
>>>40 :  {% if request.user.is_authenticated %} 
>>>
>>>
>>>
>>>
>>>41 : Hello {{ request.user }}
>>>
>>>
>>>
>>>
>>>42 : {% else %}
>>>
>>>
>>>
>>>
>>>43 :   
>>>
>>>
>>>
>>>
>>>44 : >> value="sczg1f8U4tWQRa8kgNJC1QsSBKAD9Lvw"> {% csrf_token %}
>>>
>>>
>>>
>

Re: Django OperationalError

2015-03-06 Thread Petar Pilipovic
Hello Collin,
No the problem is, i have tried to drop mine migrations whit python manage
sqlflush, then I have recreate the db whit
python manage.py migrate.
Here this is the all operation whit python manage sqlflush, syncdb, migrate
. I have notice that there was no migration to apply
at the end, and the error is still there.
Is there something else I can do, or how can I approach this differently.
Best
Petar

On Fri, Mar 6, 2015 at 11:21 PM, Collin Anderson 
wrote:

> Hi,
>
> The problem is that django_session doesn't exist in your database. Either
> it was never created or it was created and then later deleted.
>
> Does running manage.py migrate re-create it?
>
> Collin
>
> On Monday, March 2, 2015 at 11:36:51 PM UTC-5, Petar Pilipovic wrote:
>>
>> Hello James, sorry for not uploading mine answer on this mater, I was
>> busy whit something else this day, ok now back to mine Operational Error I
>> have got.
>> I tried to google some solution to this problem had no luck, and I did
>> what have you told me.
>> I heave done some
>> python manage.py sqlflush
>>
>> and that has gave me this output:
>>
>> (django17)04:20 ~/mineDjango$ python manage.py sqlflush BEGIN;DELETE FROM
>> "django_admin_log";DELETE FROM "auth_permission";DELETE FROM "auth_group"
>> ;DELETE FROM "auth_group_permissions";DELETE FROM "django_session";DELETE
>> FROM "auth_user_groups";DELETE FROM "auth_user_user_permissions";DELETE
>> FROM "account_emailaddress";DELETE FROM "django_site";DELETE FROM
>> "profiles_profile";DELETE FROM "auth_user";DELETE FROM
>> "profiles_userstripe";DELETE FROM "account_emailconfirmation";DELETE FROM
>> "django_content_type";COMMIT;
>>
>> Then I have done
>> python manage.py syncdb python manage.py migrate
>>
>> Output of mine recreating tables are this:
>> (django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to
>> perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all
>> migrations: account, sessions, admin, sites, profiles, contenttypes, 
>> authSynchronizing
>> apps without migrations: Creating tables... Installing custom SQL...
>> Installing indexes...Running migrations: No migrations to
>> apply.(django17)04:20 ~/mineDjango$ python manage.py migrateOperations
>> to perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all
>> migrations: account, sessions, admin, sites, profiles, contenttypes, 
>> authSynchronizing
>> apps without migrations: Creating tables... Installing custom SQL...
>> Installing indexes...Running migrations: No migrations to apply.
>> Basically I have had no changes in mine attempt to drop and recreate
>> tables in mine application.
>> The error is still there.
>> Error:
>> Environment:
>>
>>
>>
>>
>> Request Method: GET
>> Request URL: http://copser.pythonanywhere.com/
>>
>>
>> Django Version: 1.7.2
>> Python Version: 2.7.6
>> Installed Applications:
>> ('django.contrib.admin',
>>  'django.contrib.auth',
>>  'django.contrib.contenttypes',
>>  'django.contrib.sessions',
>>  'django.contrib.messages',
>>  'django.contrib.staticfiles',
>>  'profiles',
>>  'crispy_forms',
>>  'django.contrib.sites',
>>  'allauth',
>>  'allauth.account',
>>  'stripe')
>> Installed Middleware:
>> ('django.contrib.sessions.middleware.SessionMiddleware',
>>  'django.middleware.common.CommonMiddleware',
>>  'django.middleware.csrf.CsrfViewMiddleware',
>>  'django.contrib.auth.middleware.AuthenticationMiddleware',
>>  'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
>>  'django.contrib.messages.middleware.MessageMiddleware',
>>  'django.middleware.clickjacking.XFrameOptionsMiddleware')
>>
>>
>>
>>
>> Template error:
>> In template /home/copser/static/templates/home.html, error at line 40
>>no such table: django_session
>>30 :
>>
>>
>>
>>
>>31 : {% block content %}
>>
>>
>>
>>
>>32 :  
>>
>>
>>
>>
>>33 : 
>>
>>
>>
>>
>>34 :
>>
>>
>>
>>
>>35 : 
>>
>>
>>
>>
>>36 : 
>>
>>
>>
>>
>>37 :  {#  > src="{% static 'img/07.jpg' %}"/>  #}
>>
>>
>>
>>
>>38 :
>>
>>
>>
>>
>>39 : 
>>
>>
>>
>>
>>40 :  {% if request.user.is_authenticated %}
>>
>>
>>
>>
>>41 : Hello {{ request.user }}
>>
>>
>>
>>
>>42 : {% else %}
>>
>>
>>
>>
>>43 :   
>>
>>
>>
>>
>>44 : > value="sczg1f8U4tWQRa8kgNJC1QsSBKAD9Lvw"> {% csrf_token %}
>>
>>
>>
>>
>>45 : > for="id_login" class="control-label  requiredField">
>>
>>
>>
>>
>>46 : Login> class="asteriskField">*> class="controls ">> type="text"> > class="form-group">
>>
>>
>>
>>
>>47 : Password> class="asteriskField">*> class="controls ">> id="id_password" name="password" placeholder="Password" type="password">
>> > class="checkbox">> class="checkboxinput checkbox" id="id_remember" name="remember"
>> type="checkbox">
>>
>>
>>
>>
>>48 : Remember Me
>>
>>
>>
>>
>>49 :   

Re: Django OperationalError

2015-03-06 Thread Collin Anderson
Hi,

The problem is that django_session doesn't exist in your database. Either 
it was never created or it was created and then later deleted.

Does running manage.py migrate re-create it?

Collin

On Monday, March 2, 2015 at 11:36:51 PM UTC-5, Petar Pilipovic wrote:
>
> Hello James, sorry for not uploading mine answer on this mater, I was busy 
> whit something else this day, ok now back to mine Operational Error I have 
> got.
> I tried to google some solution to this problem had no luck, and I did 
> what have you told me.
> I heave done some 
> python manage.py sqlflush
>
> and that has gave me this output: 
>
> (django17)04:20 ~/mineDjango$ python manage.py sqlflush BEGIN;DELETE FROM 
> "django_admin_log";DELETE FROM "auth_permission";DELETE FROM "auth_group";
> DELETE FROM "auth_group_permissions";DELETE FROM "django_session";DELETE 
> FROM "auth_user_groups";DELETE FROM "auth_user_user_permissions";DELETE 
> FROM "account_emailaddress";DELETE FROM "django_site";DELETE FROM 
> "profiles_profile";DELETE FROM "auth_user";DELETE FROM 
> "profiles_userstripe";DELETE FROM "account_emailconfirmation";DELETE FROM 
> "django_content_type";COMMIT;
>
> Then I have done 
> python manage.py syncdb python manage.py migrate
>
> Output of mine recreating tables are this:
> (django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to 
> perform: Synchronize unmigrated apps: allauth, crispy_forms Apply all 
> migrations: account, sessions, admin, sites, profiles, contenttypes, 
> authSynchronizing 
> apps without migrations: Creating tables... Installing custom SQL... 
> Installing indexes...Running migrations: No migrations to 
> apply.(django17)04:20 
> ~/mineDjango$ python manage.py migrateOperations to perform: Synchronize 
> unmigrated apps: allauth, crispy_forms Apply all migrations: account, 
> sessions, admin, sites, profiles, contenttypes, authSynchronizing apps 
> without migrations: Creating tables... Installing custom SQL... 
> Installing indexes...Running migrations: No migrations to apply.
> Basically I have had no changes in mine attempt to drop and recreate 
> tables in mine application.
> The error is still there.
> Error:
> Environment:
>
>
>
>
> Request Method: GET
> Request URL: http://copser.pythonanywhere.com/
>
>
> Django Version: 1.7.2
> Python Version: 2.7.6
> Installed Applications:
> ('django.contrib.admin',
>  'django.contrib.auth',
>  'django.contrib.contenttypes',
>  'django.contrib.sessions',
>  'django.contrib.messages',
>  'django.contrib.staticfiles',
>  'profiles',
>  'crispy_forms',
>  'django.contrib.sites',
>  'allauth',
>  'allauth.account',
>  'stripe')
> Installed Middleware:
> ('django.contrib.sessions.middleware.SessionMiddleware',
>  'django.middleware.common.CommonMiddleware',
>  'django.middleware.csrf.CsrfViewMiddleware',
>  'django.contrib.auth.middleware.AuthenticationMiddleware',
>  'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
>  'django.contrib.messages.middleware.MessageMiddleware',
>  'django.middleware.clickjacking.XFrameOptionsMiddleware')
>
>
>
>
> Template error:
> In template /home/copser/static/templates/home.html, error at line 40
>no such table: django_session
>30 :  
>
>
>
>
>31 : {% block content %}
>
>
>
>
>32 :  
>
>
>
>
>33 : 
>
>
>
>
>34 :   
>
>
>
>
>35 : 
>
>
>
>
>36 : 
>
>
>
>
>37 :  {#   src="{% static 'img/07.jpg' %}"/>  #}
>
>
>
>
>38 :
>
>
>
>
>39 : 
>
>
>
>
>40 :  {% if request.user.is_authenticated %} 
>
>
>
>
>41 : Hello {{ request.user }}
>
>
>
>
>42 : {% else %}
>
>
>
>
>43 :   
>
>
>
>
>44 :  value="sczg1f8U4tWQRa8kgNJC1QsSBKAD9Lvw"> {% csrf_token %}
>
>
>
>
>45 :  for="id_login" class="control-label  requiredField">
>
>
>
>
>46 : Login class="asteriskField">* autofocus="autofocus" class="textinput textInput form-control" 
> id="id_login" name="login" placeholder="Username or e-mail" type="text"> 
>  for="id_password" class="control-label  requiredField">
>
>
>
>
>47 : Password class="asteriskField">* class="textinput textInput form-control" id="id_password" name="password" 
> placeholder="Password" type="password">  class="form-group"> for="id_remember" class=""> id="id_remember" name="remember" type="checkbox">
>
>
>
>
>48 : Remember Me
>
>
>
>
>49 : 
>
>
>
>
>50 : 
>
>
>
>
> Traceback:
> File 
> "/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/core/handlers/base.py"
>  
> in get_response
>   111. response = wrapped_callback(request, 
> *callback_args, **callback_kwargs)
> File "/home/copser/mineDjango/profiles/views.py" in home
>   7. return render(request, template, context)
> File 
> "/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/djang

Re: Django OperationalError

2015-03-02 Thread Petar Pilipovic
Hello James, sorry for not uploading mine answer on this mater, I was busy 
whit something else this day, ok now back to mine Operational Error I have 
got.
I tried to google some solution to this problem had no luck, and I did what 
have you told me.
I heave done some 
python manage.py sqlflush

and that has gave me this output: 

(django17)04:20 ~/mineDjango$ python manage.py sqlflush BEGIN;DELETE FROM 
"django_admin_log";DELETE FROM "auth_permission";DELETE FROM "auth_group";
DELETE FROM "auth_group_permissions";DELETE FROM "django_session";DELETE 
FROM "auth_user_groups";DELETE FROM "auth_user_user_permissions";DELETE FROM 
"account_emailaddress";DELETE FROM "django_site";DELETE FROM 
"profiles_profile";DELETE FROM "auth_user";DELETE FROM "profiles_userstripe"
;DELETE FROM "account_emailconfirmation";DELETE FROM "django_content_type";
COMMIT;

Then I have done 
python manage.py syncdb python manage.py migrate

Output of mine recreating tables are this:
(django17)04:20 ~/mineDjango$ python manage.py syncdbOperations to perform: 
Synchronize unmigrated apps: allauth, crispy_forms Apply all migrations: 
account, 
sessions, admin, sites, profiles, contenttypes, authSynchronizing apps 
without migrations: Creating tables... Installing custom SQL... Installing 
indexes...Running migrations: No migrations to apply.(django17)04:20 
~/mineDjango$ python manage.py migrateOperations to perform: Synchronize 
unmigrated apps: allauth, crispy_forms Apply all migrations: account, 
sessions, admin, sites, profiles, contenttypes, authSynchronizing apps 
without migrations: Creating tables... Installing custom SQL... Installing 
indexes...Running migrations: No migrations to apply.
Basically I have had no changes in mine attempt to drop and recreate tables 
in mine application.
The error is still there.
Error:
Environment:




Request Method: GET
Request URL: http://copser.pythonanywhere.com/


Django Version: 1.7.2
Python Version: 2.7.6
Installed Applications:
('django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'profiles',
 'crispy_forms',
 'django.contrib.sites',
 'allauth',
 'allauth.account',
 'stripe')
Installed Middleware:
('django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'django.middleware.clickjacking.XFrameOptionsMiddleware')




Template error:
In template /home/copser/static/templates/home.html, error at line 40
   no such table: django_session
   30 :  




   31 : {% block content %}




   32 :  




   33 : 




   34 :   




   35 : 




   36 : 




   37 :  {##}




   38 :




   39 : 




   40 :  {% if request.user.is_authenticated %} 




   41 : Hello {{ request.user }}




   42 : {% else %}




   43 :   




   44 :  {% csrf_token %}




   45 : 




   46 : Login* 





   47 : Password* 




   48 : Remember Me




   49 : 




   50 : 




Traceback:
File 
"/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/core/handlers/base.py"
 
in get_response
  111. response = wrapped_callback(request, 
*callback_args, **callback_kwargs)
File "/home/copser/mineDjango/profiles/views.py" in home
  7. return render(request, template, context)
File 
"/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/shortcuts.py"
 
in render
  48. return HttpResponse(loader.render_to_string(*args, **kwargs),
File 
"/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/template/loader.py"
 
in render_to_string
  174. return t.render(context_instance)
File 
"/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/template/base.py"
 
in render
  148. return self._render(context)
File 
"/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/template/base.py"
 
in _render
  142. return self.nodelist.render(context)
File 
"/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/template/base.py"
 
in render
  844. bit = self.render_node(node, context)
File 
"/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/template/debug.py"
 
in render_node
  80. return node.render(context)
File 
"/home/copser/.virtualenvs/django17/local/lib/python2.7/site-packages/django/template/loader_tags.py"
 
in render
  126. return compiled_parent._render(context)
File 
"/home/copser/.virtualenvs/

Re: Django OperationalError

2015-02-27 Thread Petar Pilipovic
Hello James, will do but I am not at mine lap top atm, gona do it as soon
as posible, tank you very much.

On Saturday, February 28, 2015, James Schneider 
wrote:
> Generally this happens when you don't apply the initial migration. Have
you run 'python manage.py migrate' (assuming Django >= 1.7 since you
mentioned making migrations) and if you have, what was the output? If you
aren't sure, run it again as it shouldn't hurt anything.
>
> Check your database and make sure that the tables actually exist. If not,
and there is no production data (assuming not based on the question), drop
and recreate the DB to clear out any previously failed migration attempts
and apply your migrations again using the command I specified. Capture the
entire output of the command and paste it back to this list so that we can
help more.
>
> -James
>
> On Feb 27, 2015 10:02 PM, "Petar Pilipovic"  wrote:
>>
>> Hello, I have manage to merge mine application to pythonanywhere.com.
After I have done all the needed installing, uploading files, collecting
static, making migrations to mine django application, I have experienced an
OperationError saying:
>>
>> no such table: django_session
>> You can find the rest of mine question here on stackoverflow, Can
someone help me over come this error, tank you.
>>
>>
>> --
>> You received this message because you are subscribed to the Google
Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send
an email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/01f5c13c-5b7e-40ea-b98b-e37640e477df%40googlegroups.com
.
>> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to a topic in the
Google Groups "Django users" group.
> To unsubscribe from this topic, visit
https://groups.google.com/d/topic/django-users/MOsaEEDNyQg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/CA%2Be%2BciXfPuqKgQz89CVgaB07cf_Lwj%3DK-XcdtV9GK1EZ%3DQxMaQ%40mail.gmail.com
.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK8niQsiLMaeLE%3D_8phdGhKqsYXuuL3nwStTJwXJQ%3D%2BrVuNYLQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django OperationalError

2015-02-27 Thread James Schneider
Generally this happens when you don't apply the initial migration. Have you
run 'python manage.py migrate' (assuming Django >= 1.7 since you mentioned
making migrations) and if you have, what was the output? If you aren't
sure, run it again as it shouldn't hurt anything.

Check your database and make sure that the tables actually exist. If not,
and there is no production data (assuming not based on the question), drop
and recreate the DB to clear out any previously failed migration attempts
and apply your migrations again using the command I specified. Capture the
entire output of the command and paste it back to this list so that we can
help more.

-James
On Feb 27, 2015 10:02 PM, "Petar Pilipovic"  wrote:

> Hello, I have manage to merge mine application to pythonanywhere.com.
> After I have done all the needed installing, uploading files, collecting
> static, making migrations to mine django application, I have experienced an
> OperationError saying:
> no such table: django_session
>
> You can find the rest of mine question here on stackoverflow
> ,
> Can someone help me over come this error, tank you.
>
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/01f5c13c-5b7e-40ea-b98b-e37640e477df%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2Be%2BciXfPuqKgQz89CVgaB07cf_Lwj%3DK-XcdtV9GK1EZ%3DQxMaQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.