Unable to login taiga post successful installation admin 123123 is not working

1,079 views
Skip to first unread message

rajpu...@gmail.com

unread,
Aug 5, 2015, 11:47:06 AM8/5/15
to taigaio
Unable to login taiga post successful installation admin 123123 is not working.

Error : Something happened and our Oompa Loompas are working on it.

Thanks,
Raj

Konrad Krawczuk

unread,
Aug 5, 2015, 3:15:11 PM8/5/15
to taigaio, rajpu...@gmail.com
As I am definitely anti-pro if it comes to fix something (i rather crash everything) i love to cooperate with creators of Taiga and i know one important thing. They are not fairies and dont have special powers to fix bug without clues :P Give them some more informations ! :D

Alejandro Alonso

unread,
Aug 6, 2015, 1:33:47 AM8/6/15
to Konrad Krawczuk, taigaio, rajpu...@gmail.com
Hahahahahaha, thanks Konrad!,

Raj, we would need more information to know whats happening with your instance...what installation method did you follow, browser, SO...

If you are having installation issues I would suggest using the fully automated process using taiga-scripts -> http://taigaio.github.io/taiga-doc/dist/setup-alternatives.html#setup-taiga-scripts it should be the easiest option.

Regards!,

--
You received this message because you are subscribed to the Google Groups "taigaio" group.
To unsubscribe from this group and stop receiving emails from it, send an email to taigaio+u...@googlegroups.com.
To post to this group, send email to tai...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/04b25e35-1b50-4b63-af50-3d063716118c%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--

  
Alejandro Alonso Fernández  
CIO & Co-founder

www.kaleidos.net/FC8EAC/

rajpu...@gmail.com

unread,
Aug 6, 2015, 6:04:16 AM8/6/15
to taigaio, konrad....@gmail.com, rajpu...@gmail.com
Thanks for the Support !

Hi,

I completed the installation on Ubuntu 14.04 VM as per http://taigaio.github.io/taiga-doc/dist/setup-production.html

I am using a Hyper-v and disable the firewall in Ubuntu 14.04 VM.

When I try to connect from an external system, I get the oompa loompas error message showing:
Oops, something happened...According to our Oompa Loompas, your username/email or password are incorrect.

Please find the Config files below (url's changed to xxxxx.cloud.net).

My conf.json for front end follows:

{
"eventsUrl": "ws://xxxxx.cloud.net/events,
"debug": true,
"publicRegisterEnabled": true,
"feedbackEnabled": true,
"privacyPolicyUrl": null,
"termsOfServiceUrl": null,
"maxUploadFileSize": null,
"contribPlugins": [],
"debugInfo": false
}

app-loader.js shows:

(function() {
  var promise, version;

  version = 1437417017488;

  window.taigaConfig = {
    "eventsUrl": null,
    "debug": true,
    "defaultLanguage": "en",
    "publicRegisterEnabled": true,
    "feedbackEnabled": true,
    "privacyPolicyUrl": null,
    "termsOfServiceUrl": null,
    "maxUploadFileSize": null,
    "contribPlugins": []
  };

  promise = $.getJSON("/js/conf.json");

  promise.done(function(data) {
    return window.taigaConfig = _.extend({}, window.taigaConfig, data);
  });

  promise.always(function() {
    var plugins;
    if (window.taigaConfig.contribPlugins.length > 0) {
      plugins = _.map(window.taigaConfig.contribPlugins, function(plugin) {
        return plugin + "?v=" + version;
      });
      return ljs.load(plugins, function() {
        return ljs.load("/js/app.js?v=" + version, function() {
          return angular.bootstrap(document, ['taiga']);
        });
      });
    } else {
      return ljs.load("/js/app.js?v=" + version, function() {
        return angular.bootstrap(document, ['taiga']);
      });
    }
  });

}).call(this);

local.py for taiga-back :  


from .common import *

SITES["front"]["scheme"] = "http"
SITES["front"]["domain"] = "xxxxx.cloud.net"

SECRET_KEY = "theveryultratopsecretkey"

DEBUG = False
TEMPLATE_DEBUG = False
PUBLIC_REGISTER_ENABLED = True

DEFAULT_FROM_EMAIL = "no-r...@xxxxx.cloud.net"
SERVER_EMAIL = DEFAULT_FROM_EMAIL

# Uncomment and populate with proper connection parameters
# for enable email sending.
#EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
#EMAIL_USE_TLS = False
#EMAIL_HOST = "localhost"
#EMAIL_HOST_USER = ""
#EMAIL_HOST_PASSWORD = ""
#EMAIL_PORT = 25

# Uncomment and populate with proper connection parameters
# for enable github login/singin.
#GITHUB_API_CLIENT_ID = "yourgithubclientid"
#GITHUB_API_CLIENT_SECRET = "yourgithubclientsecret"

from .celery import *

BROKER_URL = 'amqp://guest:guest@localhost:5672//'
CELERY_RESULT_BACKEND = 'redis://localhost:6379/0'
CELERY_ENABLED = True


nginx settings follow:

server {
    listen 80 default_server;
    server_name _;

    large_client_header_buffers 4 32k;
    client_max_body_size 50M;
    charset utf-8;

    access_log /home/taiga/logs/nginx.access.log;
    error_log /home/taiga/logs/nginx.error.log;

    # Frontend
    location / {
        root /home/taiga/taiga-front-dist/dist/;
        try_files $uri $uri/ /index.html;
    }

    # Backend
    location /api {
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Scheme $scheme;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://127.0.0.1:8001/api;
        proxy_redirect off;
    }

    # Django admin access (/admin/)
    location /admin {
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Scheme $scheme;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://127.0.0.1:8001$request_uri;
        proxy_redirect off;
    }

    # Static files
    location /static {
        alias /home/taiga/taiga-back/static;
    }

    # Media files
    location /media {
        alias /home/taiga/taiga-back/media;
    }
}

Please let me know how to fix the error!?


Alejandro Alonso

unread,
Aug 6, 2015, 6:23:33 AM8/6/15
to Pushparaj Balasubramaniyan, taigaio, Konrad Krawczuk
Sorry but I don't know what could be happening but I suggest you to use the taiga-scripts option for the installation and customize the server after that if needed.

Regards,

--
You received this message because you are subscribed to the Google Groups "taigaio" group.
To unsubscribe from this group and stop receiving emails from it, send an email to taigaio+u...@googlegroups.com.
To post to this group, send email to tai...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages