Project

General

Profile

Bug #63806

Updated by Markus Klein over 9 years ago

I am using Typo3 6.2.4 on a local test server. 

 After being logged an moving to a page where only logged in users have access and trying to log out from this page i always get a 404 because redirection doesn't work. 

 For example: 

 # I login on this page: lhttp://localhost/t3/typo3_src-6.2.4/index.php?id=12 
 # After this I will be redirected to a Page which only registered users have access. (ID  
 # Then I will go back to the Login page, where I now find Logout button. 
 # After #After doing the logout the redirect will hit the Page with the ID 3 again. But there is an error message coming (an error page). The URL of the ID 3 page I can see! 
 # When I will login again from this error page again, the system logged me in but there is no redirect to a protected page. I log out and I am on the same page like before. 
 # After this I manually hit the normal login page and logged me in. The redirect goes directly to the protected page.  
 # The logout-redirect is not working.  

 My TS settings are as follows: 
 <pre> 
 plugin.tx_felogin_pi1 { 
   storagePid = 2 
   showForgotPasswordLink = 1 
   showPermaLogin = 0 
   redirectPageLogin = 3 
   redirectFirstMethod = 1 
   redirectMode = login,logout,userLogin,groupLogin 
   redirectPageLogout = 12 
   redirectDisable = 0 
 } 
 </pre> 

 What can I do?

Back