[Answer]-Django 1.4 + Apache WebServer + Mysql and PostgreSQL Connection Error

1👍

If you are able to access MySQL but not Postgres, I guess psycopg2 which is the Postgres adapter for python is not installed. Install psycopg2 using pip.

pip install psycopg2

Here is the pypi.

👤Babu

Leave a comment