Wednesday, April 27, 2016

Django | auth_user.last_login ERROR

When tried to create super user using the command python manage.py createsuperuser, it takes all the inputs correctly but throws below error at last. ERROR: Django.db.utils.IntegrityError: NOT NULL constraint failed: auth_user.last_login SOLUTION:  python manage.py...

Sunday, April 24, 2016

Django | Template extending

[ Article Copied from here. ] It means that you can use the same parts of your HTML for different pages of your website. Templates help when you want to use the same information/layout...

Django | Create URLs | Create Views | Create Templates

1. Create URLs We want 'http://127.0.0.1:8000/' to be a homepage of our Application and display custom design / content. We also want to keep the AppName/urls.py file clean, so we will import urls from...

Django | Create simple Website and App

1. Install Django Download the official release.  (pip install is a good choice) Once all the files finish downloading, we need to make sure our local Python installation is aware that Django exists on...

Saturday, April 23, 2016

Django | __init__() got an unexpected keyword argument 'maxlength'

TypeError: __init__() got an unexpected keyword argument 'maxlength' This problem arises when you are using a newer version of Django. Since 1.0 (or actually, somewhere in 0.97) Django switched to max_length instead of maxlength. So,...

Django default Admin Username and Password

In earlier versions of Django, when syncdb command is run, it used to ask for super user creation. But the latest versions are not using syncdb command. Here is an article related to it....

Django | DoesNotExist at /admin/login/ Site matching query does not exist

When typed  http://127.0.0.1:8000/admin/ into browser's address bar, I've encountered the following error. I found that this is due to incorrect configuration inside settings.py file. You don't really need the sites framework if you only...

AttributeError: 'AdminSite' object has no attribute 'root' | Django

Your url for admin should be: url(r'^admin/', admin.site.urls) This would be available by default in urls.py file unless you or some program change it. It should not  be (r'^admin/(.*)', admin.site.root) This is a change...

Unknown command: 'syncdb' in Python | Django

If you try to use python manage.py syncdb in latest version of Django, it throws the following error. Unknown command: 'syncdb' Type 'manage.py help' for usage. You won't find any syncdb command in help too....

Add to PYTHONPATH

If you're using bash (on a Mac or GNU/Linux distro), add this to your ~/.bashrc export PYTHONPATH=$PYTHONPATH:/my/other/path Make sure the directory you point to has at the topmost init.py file in your directory structure....

Monday, April 4, 2016

Connectify for Ubuntu | Works for Android

The pre-installed Network Manager in Unity does not support Access Point (AP) mode which is required for Android devices. Fortunately, KDE’s connection editor support this mode. Below is how to do it yourself: 1....

Page 1 of 49123»