Posts from Django

Solved Django Error: That port is already in use. – Mac

By Saruque Ahamed Mollick

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

Django: You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s)

By Saruque Ahamed Mollick

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

Python | Understanding FileField in Django models

By Nishtha Grover

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

How to run Cronjob in Django

By Shrimad Mishra

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

Login Registration System using MySQL in Django

By Aditi Deo

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

How to connect MySQL to Django

By Aditi Deo

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

on_delete purpose on Django models

By Aditi Deo

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

Signals In Django – Usage with examples

By Aditi Deo

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

Related Posts