After initial setup wizard I'm sucessfuly logged in and I'm able to use Umbraco until I log out
When I allowed a browser to save a password I was able to skip the login form and get in as well
I'm using windows integrated authentication for the database. Are there any additional configurations I should check or change to deal with this issue?
I have this same problem after upgrade to the new version 7.6.1...
I've changed too the userNoConsole to false in the umbracoUser Table...
But I Still have this error:
Failed to load resource: the server responded with a status of 400 (Bad Request)
XHR finished loading: POST "http://localhost:51165/umbraco/backoffice/UmbracoApi/Authentication/PostLogin".
)]}',
{"Message":"The requested resource does not support http method 'GET'."}
I've seen this error many times since then and it was almost always a connection string issue. Especially when you are setting up Umbraco or deploying it into production, make sure that this is right.
If none of these are applicable, the user might be locked out - check the other columns in UmbracoUser table.
Cannot login to Umbraco - Bad request
Hi,
I'm using umbraco v7.4.3 along with VisualStudio 2015 (Nuget install) and MS SQL Server 2014.
After install I'm not able to login to Umbraco getting a following error in Javascript console.
I've also noticed following:
I'm using windows integrated authentication for the database. Are there any additional configurations I should check or change to deal with this issue?
Thanks,
John
Hi Jan,
So are you sure that connection to the database is fine?
Yes, pretty sure. I've also tried to create a new project using SQL authentication instead of windows integrated. Ran into the same problem though.
Okay,
I've changed
userNoConsole
field inumbracoUser
table tofalse
and it works like a charm.Do you know what does this field exactly do? And why it could have been set to
true
right from the beginning?I have this same problem after upgrade to the new version 7.6.1...
I've changed too the userNoConsole to false in the umbracoUser Table...
But I Still have this error:
I've seen this error many times since then and it was almost always a connection string issue. Especially when you are setting up Umbraco or deploying it into production, make sure that this is right.
If none of these are applicable, the user might be locked out - check the other columns in UmbracoUser table.
HI Jan Bilek...
Thanks for your quick response...
Now, I have solved.
I had 3 problems ... I recommend reviewing the following
1) Change the useLegacyEncoding value in the web.config file to true
2) Change the EnablePropertyValueConverters value to false in the umbracoSettings.config file
This is part of the additional configurations after upgrading an umbraco:
Https://our.umbraco.org/contribute/releases/761
3) Check again that the userNoConsole value of the umbracoUser table is set to false for your user credential.
After this, in my case. I was able to log in. Thank you very much.
If anyone runs through a WAF system be it Cloudflare or another service you need to whitelist /umbraco * as these cause this issue.
is working on a reply...