Django and Oracle12C Connection Error

2018-01-20 Thread Rishab Kumar
https://stackoverflow.com/questions/48352888/connect-django-with-oracle12c -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.

Re: Django and Oracle12C Connection Error

2018-01-20 Thread Stephen J. Butler
Your Django settings 'NAME' is neither a SID nor a service name. Try: 'NAME': 'testdb', 'USERNAME': 'C##TDBUSER', 'PASSWORD': 'testdb', 'HOST': 'localhost', 'PORT': 1521 On Fri, Jan 19, 2018 at 11:37 PM, Rishab Kumar wrote: > https://stackoverflow.com/questions/48352888/connect-django-with-ora

Re: Setting up Django on Google Cloud (basic server)

2018-01-20 Thread Nick Sarbicki
Hi Samuel, You probably haven't opened access to port 8000 to the public Try run server on port 80. Nick. On Sat, 20 Jan 2018, 14:53 Samuel Muiruri, wrote: > I had this issue before with AWS i remember it was just as stressful then > and actually can't remember what actually fixed it. I basic

Deploying SSL for my Django 2.0.1 server with Apache on Ubuntu 16.04 (droplet)

2018-01-20 Thread drone4four
I’ve played with a little Django (v2.0.1) locally. Now I am trying to implement a test case on my production Apache web server. I’m running an Ubuntu 14.04 DigitalOcean droplet (will upgrade to 18.04 later this year). I got Django running. Here it is: http://www.angeles4four.info:8000/ Before

use a HTTPS domain as redirect_uri with / included

2018-01-20 Thread Georg Schwienbacher
To link Strava accounts to an Amazon Alexa Skill it is required to redirect the authenification to a specific callback URL. In my case I will be using the callback URL's provided by Amazon f.e. *https://alexa.amazon.co.jp/api/skill/link/* How can I enter this domain in the app configuration on h