My first django website

2019-10-05 Thread Ehab Al-Qabbani
https://my-private-blog.herokuapp.com/ Please try it Warmest Regards, Ehab -- 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

Re: getting error when i changed database sqllite3 to mysql

2019-10-05 Thread Motaz Hejaze
If you have data , export it to csv , then after creating the mysql database populate it with data ftom csv file On Sun, 6 Oct 2019, 1:16 am Aldian Fazrihady, wrote: > Have you created the database on MySQL? > > On Sun, Oct 6, 2019 at 4:36 AM Gulsher Khan > wrote: > >> I trying to change

Re: getting error when i changed database sqllite3 to mysql

2019-10-05 Thread Aldian Fazrihady
Have you created the database on MySQL? On Sun, Oct 6, 2019 at 4:36 AM Gulsher Khan wrote: > I trying to change default database(sqllite) which is given by the Django. > I want to use mysql database. I put lots of effort but nothing went well. I > successfully has been install mysql,

Re: getting error when i changed database sqllite3 to mysql

2019-10-05 Thread Gil Obradors
HI! Maybe this tutorial can help you https://medium.com/@a01207543/django-conecta-tu-proyecto-con-la-base-de-datos-mysql-2d329c73192a (in Spanish) Missatge de Gulsher Khan del dia ds., 5 d’oct. 2019 a les 23:36: > I trying to change default database(sqllite) which is given by the Django. > I

Re: Reg: Django Error

2019-10-05 Thread Gil Obradors
Hi, Try without regex, with int indication: path('articles//', views.year_archive), https://docs.djangoproject.com/en/2.2/topics/http/urls/ Missatge de anil polineni del dia ds., 5 d’oct. 2019 a les 3:55: > @ Dear all, > > > please reslove the djangoerror > > -- > You received this

Django Signals - trigger when model changed

2019-10-05 Thread Omar Helal
Hi all, I came across this ticket in stack overflow to try to find a solution for the issue of calling a signal only when a particular field on a model was updated. https://stackoverflow.com/questions/39034798/django-signals-for-models-value-change-condition I didn't want to use any third

Not Getting proper Result

2019-10-05 Thread yasar arafath Kajamydeen
Hi All, Page navigation not working correctly instead it showing error messge as " You didn't select a choice" . Can some one put light on this . Regards, Yasar Arafath K *My views.py* from django.shortcuts import get_object_or_404, render from django.http import Http404 from

Re: How to generate a unique 9 digit random id for every registered user?

2019-10-05 Thread yashwanth .k
Hello Uri, Thank you soo much, your work made my work easy. Thank you! On Saturday, October 5, 2019 at 9:41:22 AM UTC+5:30, Uri wrote: > > Hi, > > In Speedy Net we generate a unique random ID with 15 digits and this is > used as the table's primary key. We don't use the DB's auto-generated ID.