By default every user get after login to their personal user dashboard. I want now that all users after login get instead to another site. How can I change this in the most easily way?
You can change site-index.jsp located at - tomcat\webapps\share
comment out user dashboard redirection code. Below is site redirection code. If site is fixed one then provide site name.
<code> // redirect to site or user dashboard as appropriate String siteName = request.getParameter("site"); // forward to site specific dashboard page response.sendRedirect(request.getContextPath() + "/page/site/" + URLEncoder.encode(siteName) + "/dashboard"); <code>
Does the site exists within Alfresco Share or outside to Alfresco? If so, then you're using Alfresco just for authentication purpose? Please provide few more information.