Apache cannot find mysql database modules
- by user809857
I've created a simple django project and setup a mysql database.
My simple project just creates an entry on the database.
The project works fine when I use the built in development server provided by django (runserver) and it works well.
But when I deployed the project on Apache and mod_Wsgi (Ubuntu server), django could not find 'books', which is in this case my table in the database. The mysql database that I use in runserver and apache are just the same. I also did rebuild the database using sqlall,validate and syncdb of django but still i get the error.
What could be wrong with what I'm doing?
Thanks