cancel
Showing results for 
Search instead for 
Did you mean: 

Redirecting to a site dashbord after login

princeali
Champ in-the-making
Champ in-the-making
Hello,

I'm trying to customize Alfresco Share and the users will basically use the same site. Thus, after logging on, I want them to be directly redirected to the site dashboard. How can I force this?

Thanks

2 REPLIES 2

sanket
Champ on-the-rise
Champ on-the-rise
You can customize this file.
tomcat\webapps\share\site-index.jsp

Add the following code:
 
  response.sendRedirect(request.getContextPath() + "/page/site/"+URLEncoder.encode(siteName)+"/dashboard");



In place of :


response.sendRedirect(request.getContextPath() + "/page/user/" + URLEncoder.encode(userid) + "/dashboard");


You may need to explicitly pass the sitename for example "test" in siteName variable.

princeali
Champ in-the-making
Champ in-the-making
Thanks, it works!