i have set up WATS on my local server.i managed to login with user name and
password i created but the problem is i cant see the menu.Only the white space
is being displayed in place of the menu..please assist
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It sounds like your user isn't associated with any roles. Find out what your
user's ID is (probably 1, if you used the sample at the end of the SQL file)
the add three rows into the person_role table:
INSERT INTO person_role VALUES (1, 'inventory'), (1, 'admin'), (1, view);
Log out and back in, and that should do it.
I hope you find it useful.
~Ryan
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hie
i have set up WATS on my local server.i managed to login with user name and
password i created but the problem is i cant see the menu.Only the white space
is being displayed in place of the menu..please assist
Hi Terry,
It sounds like your user isn't associated with any roles. Find out what your
user's ID is (probably 1, if you used the sample at the end of the SQL file)
the add three rows into the person_role table:
INSERT INTO person_role VALUES (1, 'inventory'), (1, 'admin'), (1, view);
Log out and back in, and that should do it.
I hope you find it useful.
~Ryan
Whups, view in the sql will need to be quoted too.