Looking for co founders

2021-09-03 Thread balu k
I am working on a project based on stock market.I am actively looking for co founder,if anyone interested please mail me. -- 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

Re: Local django server - login fails with new safari version

2019-08-09 Thread Balu krishnan
Please check this link. He also facing the same issue https://stackoverflow.com/questions/57384659/since-macos-mojave-10-14-6-update-with-safari-12-1-2-im-not-able-to-login-in-s On Fri, Aug 9, 2019 at 12:06 PM Stephen McGonigal < mcgonigalstep...@gmail.com> wrote: > Thanks Balu. I tried

Re: Local django server - login fails with new safari version

2019-08-08 Thread Balu krishnan
Please clear your cache and try again On Thu, Aug 8, 2019 at 10:23 PM Stephen McGonigal < mcgonigalstep...@gmail.com> wrote: > I've updated my MacBook to the latest Mojave 10.14.6 version. Since that > update I'm not able to login into my locally installed django webserver > using Safari anymore.

Need Help With integrating Python Scripts with Django Frame Work

2018-04-16 Thread Balu Nanduri
n how can I call my working script on click of a button and download the files generated by the script. Thanks & Regards Balu -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emai

Save Model results

2017-02-24 Thread Nirupama Balu
Hi All, I am currently facing issues to save the results from a clustering using django for a short time without updating my master database. Need some help -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and st

Re: Deploying django. Please specify the steps.

2011-03-11 Thread balu
ost settings. NameVirtualHost *:80 DocumentRoot /home/balu/Django/workspace/mysite/ WSGIScriptAlias / /home/balu/Django/workspace/mysite/apache/ django.wsgi Order allow, deny Allow from all 3. * django.wsgi ** import os, sys wsgi_dir = os.path.abspath(os.p

Re: Deploying django. Please specify the steps.

2011-03-11 Thread balu
, shutting down [Thu Mar 10 22:50:24 2011] [notice] Apache/2.2.16 (Ubuntu) mod_wsgi/ 3.3 Python/2.6.6 configured -- resuming normal operations [Thu Mar 10 22:51:14 2011] [crit] [client 127.0.0.1] (13)Permission denied: /home/balu/Django/workspace/.htaccess pcfg_openfile: unable to check htaccess file

Deploying django. Please specify the steps.

2011-03-11 Thread balu
Hi all :) I tried to deploy django with the following. But I couldn't able succeed. Please let me know the exact steps in configuring apache server, configuring mod_wsgi. I had gone through the official site. But couldn't understand it completely the configuration process. apache, mod_wsgi, ngin

Error when trying to deploy Django.

2011-03-10 Thread balu
Hi all I'm trying to deploy django for the first time. During this process I'm getting the following error. Please help me to correct this. balu@balu-varanasi:/etc/apache2/sites-available$ /etc/init.d/apache2 reloadSyntax error on line 10 of /etc/apache2/sites-enabled/mysite: Inval

The server failed after serving a video file.

2011-03-09 Thread balu
Hi all :) I'm trying to include a video into my webpage. The page is loading fine and the video I embedded is playing properly. But... after loading of page, the server unexpectedly stopped working and it is showing an error message as below. From then it is not serving the requests. Please let m

How to assign form names in formset before rendering??

2011-02-20 Thread balu
Hi all... I'm working on building an oline examination system. Here is a view which picks some questions randomly from the database and generates 10 questions. I could able to display these questions on the web page. In that web page there should be a formset which have options A, B, C, D. The na

Re: list indices must be integers not unicode

2011-02-18 Thread balu
How to recognize a key. All the question Ids will be integers only. Should I have to use regular expressions to use that?? How to exclude the remaining keys On Feb 18, 6:09 pm, balu wrote: > Can you please show the way to filter. Please... > > On Feb 18, 5:36 pm, Burhan wrote: >

Re: list indices must be integers not unicode

2011-02-18 Thread balu
All my question Ids are integers only. Should I use regular expressions to filter them?? How to exclude the remaining keys. On Feb 18, 6:09 pm, balu wrote: > Can you please show the way to filter. Please... > > On Feb 18, 5:36 pm, Burhan wrote: > > > > > You need

Re: list indices must be integers not unicode

2011-02-18 Thread balu
o convert > 'csrfmiddlewaretoken' (a key in POST) to an integer which is not > possible. > > On Feb 18, 3:27 pm, balu wrote: > > > > > now it is showing a ValueError. > > > Exception Value: invalid literal for int() with base 10. > > 'cs

Re: list indices must be integers not unicode

2011-02-18 Thread balu
ge- > From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On > Behalf Of balu > Sent: 18 February 2011 13:56 > To: Django users > Subject: Re: list indices must be integers not unicode > > Thank you Chris Matthews for your reply. > > I'm working on

Re: list indices must be integers not unicode

2011-02-18 Thread balu
Of Chris Matthews > Sent: 18 February 2011 13:34 > To: django-users@googlegroups.com > Subject: RE: list indices must be integers not unicode > > Hi Balu, > > Numeric data from the form must be converted to int. I suspect you wanted to > index data; not id_list. > >     i

list indices must be integers not unicode

2011-02-18 Thread balu
Hi all :) I'm processing a user submitted form. In that the user will answer a series of multiple choice questions. Depending on the question "id" which are submitted I'll find the compare the values and increment the score to count his marks. The question ids are keys from the dictionary reques

Re: How to select a random tuples from a database table and render them?

2011-02-16 Thread balu
Thank you Shawn... On Feb 16, 6:46 pm, Shawn Milochik wrote: > QuestionBank.objects.filter(id__in = id_list) -- 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 fro

How to select a random tuples from a database table and render them?

2011-02-16 Thread balu
Respected all I'm currently working on building an Online Examination system. In that there will be a Question Bank which contains hundreds of questions about different questions. I represented them using Django model class. From them I have to select 20 questions and render them as question paper

Re: Redirecting to personal pages.

2011-02-04 Thread balu
How "next" parameter works? On Feb 4, 3:04 pm, Andres Lucena wrote: > On Fri, Feb 4, 2011 at 10:59 AM, balu wrote: > > Hi all :) > > > I'm trying to create a website application using django's built in > > authenticaiton app. I had customized the lo

Redirecting to personal pages.

2011-02-04 Thread balu
Hi all :) I'm trying to create a website application using django's built in authenticaiton app. I had customized the login, logout, signup... template. But how to customize personal page which will be redirected after login confirmation. Which will be just how we redirected to our inbox after aut

Re: Inner classses

2011-01-19 Thread balu
Thank you sir. On Jan 19, 10:12 pm, Tom Evans wrote: > On Wed, Jan 19, 2011 at 5:05 PM, balu wrote: > > Respected sir > > > I'm working to create an Online examination system using django. In > > that concept there will be Question bank from which the Questions wi

Inner classses

2011-01-19 Thread balu
Respected sir I'm working to create an Online examination system using django. In that concept there will be Question bank from which the Questions will be created. I'm trying to implement this but I cannot access the subclass - "Question" inside the "QuestionBank" class. class QuestionBank(model

Re: Which program will run when we execute "djano-admin.py startproject mysite" command?

2010-08-02 Thread balu
Hi Jirka First of all let me thank you for replying to my question. I did as you said. But that also not working. If you don't mine please try this in Windows 7 operating system. Thank you Balu On Aug 1, 11:16 pm, Jirka Vejrazka wrote: > Hi Balu, > >    django-admin.py u

Re: Which program will run when we execute "djano-admin.py startproject mysite" command?

2010-08-01 Thread balu
Thank you. I could able to run python programs well using the Python GUI. It is the problem raised when I tried to execute "django-admin.py startproject mysite" command on Windows 7 On Aug 1, 9:26 pm, Karen Tracey wrote: > On Sun, Aug 1, 2010 at 11:47 AM, balu wrote: > > St

Re: Which program will run when we execute "djano-admin.py startproject mysite" command?

2010-08-01 Thread balu
I could able to run python programs using the Python GUI. I could say that the problem raised because of functionality of Python it is because of Django. On Aug 1, 9:26 pm, Karen Tracey wrote: > On Sun, Aug 1, 2010 at 11:47 AM, balu wrote: > > Still I couldn't made it on window 7

Is there anyone who is using Django on Windows 7 host system.

2010-08-01 Thread balu
I'm not getting the actual result which should we get when we run "django-admin.py startproject mysite" on windows 7 Operating system. -- 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...@googlegroup

Re: Which program will run when we execute "djano-admin.py startproject mysite" command?

2010-08-01 Thread balu
:http://docs.python.org/faq/windows.html > > Hope this helps, > -- Casey > > On 07/31/2010 03:57 PM, balu wrote: > > > Yah... I tried it by adding python in the command line. But I couldn't > > get the actual result. Could you people can give a gist of what > > ha

Re: Which program will run when we execute "djano-admin.py startproject mysite" command?

2010-07-31 Thread balu
ect mysite > > Hope this helps, > -- Casey > > On 07/31/2010 03:12 PM, balu wrote: > > > Hi everybody > > > I installed python and django in my Windows 7 home premium operating > > system. But when I tried to execute "django-admin.py startproject >

Which program will run when we execute "djano-admin.py startproject mysite" command?

2010-07-31 Thread balu
Hi everybody I installed python and django in my Windows 7 home premium operating system. But when I tried to execute "django-admin.py startproject mysite" command in it, the Operating system is asking me to choose the program to run this application. But this is not happened when I tried this in

Why I'm getting "no fixtures found." message when I run "python manage.py syncdb"

2010-07-25 Thread balu
uth_user Creating table auth_message Creating table django_content_type Creating table django_session Creating table django_site You just installed Django's auth system, which means you don't have any superuse rs defined. Would you like to create one now? (yes/no): yes Username: balu E

Plese guide to solve this

2010-07-21 Thread balu
Respected sir This is balu studying B.Tech third year. I started working on django in order to create dynamic website. My Python version is 2.6.5. While I'm using creating a app the following error has displayed in the command