A new student as join and need your help

2014-04-14 Thread Yannick Morin
Hi everyone, Let me introduce myself, If NOT interested to learn about me then goto question please: my name is Yannick and I’m a web developer specializing in Coldfusion...Pretty sure some of you have no clue what is Coldfusion...Let say it is a dead language with probably less than 0.001%

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-14 Thread Elio Gerson Clímaco Herrera
Thanks to Vernon and Andreas, for your answers, Yes Andreas my server is running on the same computer as my django server but I, changed my database settings like this and I, have the same error "Database server not found" DATABASES = { 'default': { 'ENGINE': 'sqlany_django', 'NAME': 'django

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-14 Thread Andreas Kuhne
Just a wild guess here. Checking your databases dictionary, you have set : 'HOST': 'django'. I am guessing your server is running on the same computer as your django server? In that case you should change the line to : 'HOST': 'localhost', or just delete the line entirely (default is localhost). I

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-14 Thread Vernon D. Cole
You would be best advised to contact whoever supports that driver. Their contact information ought to be on their github site. My guess (as a maintainer of a different 3rd party Windows database driver) is that they have not upgraded to django 1.6 yet. But that's only a wild guess. The other s

Re: error in using socialregistration

2014-04-14 Thread rafiee.nima
I'v fixed the problem by adding SESSION_SERIALIZER='django.contrib.sessions.serializers.PickleSerializer' to setting.py On Monday, April 14, 2014 8:41:10 PM UTC+4:30, rafiee.nima wrote: > > Hi > Im using django socialregistration i configure everything step by step > using socialregistration

Re: recommended fcgi way for django 1.6 on windows? Problems with https

2014-04-14 Thread Andre Terra
I've used nginx in windows with great results. In fact, I even compiled it on cygwin with additional modules (namely, to track large file uploads) and everything worked smoothly. Cheers, AT On Mon, Apr 14, 2014 at 1:48 PM, anton wrote: > Hi > > I did a test with modwsgi on windows with apache

Re: recommended fcgi way for django 1.6 on windows? Problems with https

2014-04-14 Thread anton
Hi I did a test with modwsgi on windows with apache, http and https work now both. Thanks :-) *BUT*: the modwsgi does not support Daemonmode on windows, which means that I need to restart the whole apache Server every time I update my django app. For a real productionserver its a nightmare, if

error in using socialregistration

2014-04-14 Thread rafiee.nima
Hi Im using django socialregistration i configure everything step by step using socialregistration doc. i also add sit_id .but i got this error : Exception Type: TypeError at /social/linkedin/redirect/ Exception Value: is not JSON serializable -- You received this message because you are s

Re: error in AUTHENTICATION using socialregistration

2014-04-14 Thread rafiee.nima
did you add facebook namespace in your main project urls.py ? On Friday, May 17, 2013 11:20:34 AM UTC+4:30, Avnesh Shakya wrote: > > hi, >I am getting error - > > NoReverseMatch at /login/ > >u'facebook' is not a registered namespace inside 'socialregistration' > > wh

Re: Autoupdate

2014-04-14 Thread Saransh Mehta
Can you provide me with some links on how to do that? On Monday, April 14, 2014 5:59:24 PM UTC+5:30, Saransh Mehta wrote: > > I want some data to autoupdate on my homepage as more entries come into > the database. It is more or less like the news feed feature of Facebook. > How do we do that? > >

django-tables2 - Mix queryset and non-queryset data in table

2014-04-14 Thread Max Demars
Hi! I would like to create a table via the Table.Meta.model with some columns that are non-queryset data. I manage to populate those columns manually in the view (see below), but it's impossible to sort the table with those columns: Cannot resolve keyword u'name' into field. What is the proper

Re: If use Template api , then it has Error... what is the problem?

2014-04-14 Thread Alex Chiaranda
Hi, > ImportError: No module named templeates check your imports, it seems that you misspelled templates Best wishes On Saturday, April 12, 2014 7:45:16 PM UTC-3, siho park wrote: > > - python 2.7, django 1.5 > > study to django on Google App Engine. > if i use *Template("It is now {{ current

If use Template api , then it has Error... what is the problem?

2014-04-14 Thread siho park
- python 2.7, django 1.5 study to django on Google App Engine. if i use *Template("It is now {{ current_date }}.") *then.. has error like below of my code.. What is the problem? -- source def current_datetime(request): now = datetime.datetim

I can't connect Django with SQL Anywhere 11 Database

2014-04-14 Thread Elio Gerson Clímaco Herrera
Hi everybody... I need connect *django *with *sql anywhere 11 database*, i follow the instructions on the page "SQL Anywhere Django Driver" from github. I created the database with this command C:\>dbinit -z UCA django.db --> (database created successful) I started the Database Serv

Re: Autoupdate

2014-04-14 Thread François Schiettecatte
Hi You will need to either use in the section of your html (ugly) or use javascript to poll the server for new data on a regular interval. François On Apr 14, 2014, at 8:29 AM, Saransh Mehta wrote: > I want some data to autoupdate on my homepage as more entries come into the > database. I

Re:Autoupdate

2014-04-14 Thread Kakar Nyori
Ajax is the way to go. Or else, web sockets. On Apr 14, 2014 5:59 PM, "Saransh Mehta" wrote: > I want some data to autoupdate on my homepage as more entries come into > the database. It is more or less like the news feed feature of Facebook. > How do we do that? > > -- > You received this messag

Autoupdate

2014-04-14 Thread Saransh Mehta
I want some data to autoupdate on my homepage as more entries come into the database. It is more or less like the news feed feature of Facebook. How do we do that? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group a

Re: Analysis of csv data

2014-04-14 Thread Saransh Mehta
Thank you.! On Thursday, April 10, 2014 4:13:26 PM UTC+5:30, Saransh Mehta wrote: > > I need to analyze the incoming data from the csv file and present it to > the user in the best possible way? > What tools do i need to use for analyzing the csv and drawing graphs etc > out of the csv? > -- Y

Re: validate answers from a detail view

2014-04-14 Thread Brad Rice
What I am building is an app that the user can come back to to finish filling out, so I don't want to have too many required fields until right before they submit the form, I want to check if they forgot anything and prompt them to fill it out. Now that I think about it, I can probably do this with

MultiValueDictKeyError in the Admin with m2m inline

2014-04-14 Thread Mike Dewhirst
Does anyone have any answers for this SO problem? http://stackoverflow.com/questions/21033912/multivaluedictkeyerror-when-editing-inline-admin-object It is almost the same as my problem which is a many-to-many inline rather than a many-to-one. Almost identically, I can add the first record inl