Have you looked at your error logs? (in /var/log/apache/error.log
you can access them through the Web tab). You may find that you have an ImportError
because the package you depend on is not available in PythonAnywhere.
Most packages can be installed by running
pip install
Then you also need to add the following directory to sys.path
(in addition to the web2py folder):
/home/my_username/.local/lib/python2.7/site-packages
[update] - This question was moved to the PythonAnywhere forums, where we continued to debug the problem. final decision was related to Dropbox permissions
http://www.pythonanywhere.com/forums/topic/9/
The answer was
chmod g+w /home/Lazarof/Dropbox/web2py
Because the Dropbox folder has special permissions for pythonanywhere, our Dropbox Sync client needs permissions to access the group.
source share