unable to log into airtime 2.5.2.1 [solved]
  • Just tried to install airtime 2.5.2.1. When I go to http://airtimeinstalllocation/?config I have all green checkmarks. However, when I try to log in, it does nothing, I tried admin/admin however it just loops back to the login form. 

    Any sugestions?
    Post edited by Nolan Wagner at 2015-08-04 23:46:10
  • 1 Comment sorted by
  • Update, it turns out when I created the user in postgresql it didnt have permissions to login, which is weird. I got around that by doing this: 

    su postgres
    psql
    CREATE USER airtime ENCRYPTED PASSWORD 'airtime' LOGIN CREATEDB NOCREATEUSER;
    CREATE DATABASE airtime;
    ALTER DATABASE airtime OWNER TO airtime;
    \q