I\'m trying to serve Django static media through nginx, Here\'s my nginx.conf
server {
listen 7777;
listen localhost:7777;
server_name e
if third party app included in your project then it should be installed on your server also like south is third party app. Consider south is included in your settings.py file then south should be installed on your server also. If that module consider south here, is already installed on server then try to upgrade it. Because it is possible that you are using upgraded version of module on local machine and older version is installed in the server.