I have a django site which is working fine on the development server on my computer. There is a part of the site where I send an AJAX request containing a list of names back to the server. These names often contain characters such as \xe1. The names are processed by a view. However when I upload the site to my webfaction server it seems to do something to the names in the AJAX request so that they are escaped and appear as e.g. \xe1 instead. Does anyone know why this might be? Is there some setting that could be different between my django and webfactions? Or my python and webfactions? asked 16 Mar '15, 18:30 lcaldwell |
Are you using identical versions of python and Django in both environments? What about the OS of your local environment? answered 17 Mar '15, 01:29 johns |