Re: Newbie operational error with Django db tables

2014-11-12 Thread Collin Anderson
Hello, Very interesting. I wonder if the model isn't being noticed in syncdb because it's in models/downloads.py, and it's not referenced in models/__init__.py. Collin -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: Newbie operational error with Django db tables

2014-11-07 Thread Mr. crazy
I have executed [1] and tried again but no luck, the issues persists I know that "downloads" table is missing yet I didn't in DionaraFR guithub anything regarding that table. That what specifically makes me wonder if I have to build that missing

Re: Newbie operational error with Django db tables

2014-11-07 Thread Adailton Nascimento
The error that is giving and following this saying in your settings.py in APPS not contain the "downloads" or if you already have to add it only in the database, delete your database and run the shell [1]. or just run the command in the shell [1] I believe that updates the database without

Re: Newbie operational error with Django db tables

2014-11-06 Thread Mr. crazy
well, as I asid in my question I'm following at tutorial on the installation steps of my visualization tool, it does not sat anything about tables creation I have also checked the tool in github but I can't see anything there. and if I want to build

Re: Newbie operational error with Django db tables

2014-11-06 Thread Adailton Nascimento
Mr.crazy whenever you add content to the model or form run syncdb will have to be added to the database. or delete your database, and run: python manage.py syncdb -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: Newbie operational error with Django db tables

2014-11-06 Thread donarb
On Thursday, November 6, 2014 6:31:08 AM UTC-8, Mr. crazy wrote: > well, > > That is totally true.This is the problem which I need to find it's > solution. > Do I have to make the table?? How? > I looked for the DB tables and I didn't find it-Maybe I did not searched > the correct place > > I

Re: Newbie operational error with Django db tables

2014-11-06 Thread Mr. crazy
well, That is totally true.This is the problem which I need to find it's solution. Do I have to make the table?? How? I looked for the DB tables and I didn't find it-Maybe I did not searched the correct place I need help On Thursday, November 6, 2014 9:04:05 PM UTC+8, Avraham Serour

Re: Newbie operational error with Django db tables

2014-11-06 Thread Avraham Serour
it looks like django is trying to access a table named downloads which doesn't seems to exists in the db On Thu, Nov 6, 2014 at 8:54 AM, Mr. crazy wrote: > Hello, > > I'm working in a project where I use DionaeaFR to visualize my data > collected by Dionaea and the

Newbie operational error with Django db tables

2014-11-06 Thread Mr. crazy
Hello, I'm working in a project where I use DionaeaFR to visualize my data collected by Dionaea and the tutorial I followed uses Django Framework. Later I go and try to access the DionaeaFR graphs through my web browser,