Monthly Archive: September 2014

Error refreshing the OAuth2 token { “error” : “invalid_grant” } 0

Error refreshing the OAuth2 token { “error” : “invalid_grant” }

There is two possibles cause for this error that I know: (i) You have the wrong email in your $client_id = '1303030303-wrongiddontuse7t9kdtai3l44jofnejr04.apps.googleusercontent.com'; //Client ID $service_account_name = '1303030303-wrongiddontuse7t9kdtai3l44jofnejr04@developer.gserviceaccount.com'; //Email Address $key_file_location = 'API Project-1234.p12'; //key.p12...

Useful day-to-day linux commands to know 0

Useful day-to-day linux commands to know

Make directory recursive (that is create all subdirectories if they are missing) $> mkdir -p /opt/mediagateway/var/lib/gateway/settings/ Find filename that matches string $> sudo find / -name admin_* In this case it will search all...

settings.DATABASES is improperly configured. Please supply the ENGINE value. 0

settings.DATABASES is improperly configured. Please supply the ENGINE value.

django.core.exceptions.ImproperlyConfigured Problem : File "c:\python27\lib\site-packages\django\db\backends\dummy\base.py", line 15, in complain raise ImproperlyConfigured("settings.DATABASES is improperly configured. " django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details. Solution : Either...