November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Hi Kristoffer
The default url to CMS 12 backend login is either /util/login or /episerver/cms. There are two endpoints are registered by default to match these two urls.
You might notice /episerver is working in foundation demo site, because it has Episerver find package installed and the /episerver route is somehow registered in the Episerver.Find package in CMS 12.
I hope above helps.
Now that was embarrassing! Before /episerver always redirected you to the login page but not anymore.
/episerver/cms works just perfect!
Thanks!
/Kristoffer
If you've formed a habit of just typing "/episerver" into the URL and expecting to get to the login or edit UI (like I have), you could just add a rewrite in your Startup.cs.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
...
var rewriteOptions = new RewriteOptions()
.AddRedirect("episerver(/)?$", "episerver/cms");
app.UseRewriter(rewriteOptions);
...
}
I'm not sure what implications this will have, but it works for the time being.
Hi!
So the upgrade from CMS 11 to CMS 12 is now working, finallly. But I cannnot access /episerver, that jus gives me as 404.
Any idea what I'm missing? It looks like every under /modules is there.
Thanks!