How Do I Resolve Django AllAuth - 'Connection Aborted.', Error(13, 'Permission Denied') Error?
I'm trying to resolve a connection error thrown by AllAuth/Django 1.7 running on Google App Engine: I believe the error may be in the Sessions configuration but I've not been able
Solution 1:
After doing some research, it seems AppEngine's problems were related to my installed version of requests.
I resolved this by pip uninstall requests (2.5.1), then pip install requests==2.3.
Post a Comment for "How Do I Resolve Django AllAuth - 'Connection Aborted.', Error(13, 'Permission Denied') Error?"