Re: Downloading html as pdf using popen, headless chrome option

2022-02-01 Thread Jisson Varghese
oup and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/9a0b68e5-a587-4ac4-a018-a8fcc18f1cf4n%40googlegroups.com > <https://groups.google.com/d/msg

Make migration issue for a unique True filed.

2018-09-26 Thread jisson varghese
I have model MyModel in app app1 class MyModel(models.Model): ... name = models.CharField(max_length=10, unique=True) I have made the following change, class MyModel(models.Model): ... name = models.CharField(max_length=10, unique=True, null=False) python

Re: new project directory not defined when starting :

2012-02-21 Thread Jisson Varghese
Hi, the linkmay help you. -- 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

ipaddress

2012-01-27 Thread Jisson Varghese
Hi all, First am sorry ,its a python specific question not django based. I am developing a mobile application, using python in server side. I want to get user's ipaddress(Now user's request not sending ipaddress as a parameter to my server). I am using cherrypy server , Now I take IPaddress

Re: Issues with "startproject"

2012-01-03 Thread Jisson Varghese
Script name may differ in distribution packages If you installed Django using a Linux distribution's package manager (e.g. apt-get or yum) django-admin.py may have been renamed to django-admin. You may continue through this documentation by omitting .py from each command. Refer:

Re: Unable to display static content.

2011-12-31 Thread Jisson Varghese
use {{STATIC_URL}} in place of {{MEDIA_URL}} and keep STATIC_ROOT =' ' in settings page. refer : https://docs.djangoproject.com/en/dev/howto/static-files/ On Sat, Dec 31, 2011 at 7:42 AM, Chirdeep wrote: > Hi All, > > I am just learning Python and Django. I am able to

Re: Creating websites like Amazon/Ebay using Django

2011-12-17 Thread Jisson Varghese
well Django is suitable for web application development. Django uses Python for serverside Mysql is a good choice as Database.In a web app database stores user credentials,sessions,and items,its price(in your case). I suggest SQlalchemy (ORM). first try with djnago orm (models),then shift to

Re: static file problem with modwsgi+ apache2 with django1.3

2011-12-10 Thread Jisson Varghese
@ Ramiro Morales Thank you for your response, *edit the configuration file as you suggested ,But still am facing the problem.* I have one doubt about the configuration I used collectstatic command for static files, STATIC_ROOT = '/home/jisson/Desktop/testcloud.aws/DjangoApis/teststaticfiles/'

Re: Template Renderer safe if used with URL parameters?

2011-12-09 Thread Jisson Varghese
@Mathew ,am sorry i don't know is it safe or not,Its the one of the question I wished to ask to some one.I think most of the applications use ajax get methods ,since its faster. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: custom table for django authentication possible

2011-10-19 Thread Jisson Varghese
I want to do this since,The project I am handling(my first web project) is a mobile version of a project ,there is already a user table in our serverside.So avoid redundancy ,am not able to create a new table for users. On Thu, Oct 13, 2011 at 8:11 PM, Benedict Verheyen <