Django Tutorial

Django’s comments framework – Free Django Tutorials

Django have a simple and customizable comments framework for it’s users.We can attach comments to any model using this built-in comments framework in django.For example we can use it for comments on any blog or photos. You can follow these steps,if you want to get started with comments app: You can first install the comments …

Django’s comments framework – Free Django Tutorials Read More »

Sessions In Django-Free Django Tutorials

For anonymous sessions,django provides full support.On the per-site-visitor basis,django session framework will allow you to store and retrieve arbitrary data.The django session framework will stores the data on the server side and will abstracts the sending and receiving of cookies. Cookies will use the data itself,instead of a session ID. Enabling sessions In django with …

Sessions In Django-Free Django Tutorials Read More »

How to use django with Apache-Free Django Tutorials

One of the tried and tested way to get Django into production is to deploying a django app with Apache and mod_wsgi. mod_wsgi is one of the Apache module which is used to host any python WSGI application,including django.You can find details about how to use mod_wsgi and install here: official mod_wsgi documentation. Basic configuration …

How to use django with Apache-Free Django Tutorials Read More »

File Uploading In Django-Free Django Tutorials

The file data ends up placed in request.FILES whenevar django handles a file upload.For more on the request object you can check this documentation:request and response objects .In this document you can check how files are stored on disk and in memory and how to customize the default behavior. Basic file uploads Consider a simple form which …

File Uploading In Django-Free Django Tutorials Read More »