Menu page shown after update
Symptom
-
When clicking an EZproxy link, and logging in, one is redirected to the EZproxy menu page instead of the target URL
-
This started right after EZproxy was updated
Resolution
If a custom login page is used, make sure the "url" parameter in the form contains only the target URL, for example with the ^U variable:
<form id="signIn" action="/login" method="post">
<input type="hidden" name="url" value="^U" />
The following entry worked in older versions, but now it redirects to the menu page:
<form action="/login" method="post">
<input type="hidden" name="url" value="/login?url=http://www.example.com/library?ezproxy=true" />
In this case, the "/login?url=" needs to be removed from the form value.
Page ID
57234