I am using Mac os and I get this error message Error: That port is already in use. when I try to run the server. I am aware of the fact that I can not run the server on the same p.... Read More
Hello, I was learning Django basics and then I found this error while starting the server in Django. The error was: You have 18 unapplied migration(s). Your project may not work pr.... Read More
In this tutorial, we are going to learn about the FileField in Django models– its use and arguments usability. Django is an MVT ( Model View Template) framework of Python. Creati.... Read More
Hi folks, It’s been a year since I have written a blog, but now I have got an interesting problem to solve for you guys. At the end of this tutorial, I am sure you all will b.... Read More
For any website, it is essential to authenticate the user to verify their identity. Therefore, in this tutorial, we will learn to setup login and registration system using MySQL in.... Read More
Django provides a default database called SQLite which is an inbuilt database. But sometimes we might choose to connect popular databases such as MySQL to the Django framework to m.... Read More
Models in Django are objects that have specific attributes and functions. They are used to represent and manage data in the database. Using Django we can easily create, update, o.... Read More
Suppose whenever a user registers himself to a given website, we want the user profile to be automatically created. Or consider when a user profile is deleted, we want to notify th.... Read More