I have a link pointing to restricted page. When i access the link directly in logout status, its redirect to 404. Actually it should redirect to login form.

I tried:

config {
   typolinkLinkAccessRestrictedPages=PAGE Id 
   typolinkLinkAccessRestrictedPages_addParams = &return_url=###RETURN_URL###&pageId=###PAGE_ID###
   }

Not working.

Also I tried the login status redirect plugin, no use.

Anyone know how to do this ? I am using typo3 version 4.4.8.

link|improve this question

65% accept rate
It would be helpful if you'd told us about your TYPO3 version - a bug is filed about wrong labeling in version 4.5: forge.typo3.org/issues/24942. However, the chances that this helps you out are low. – Mateng Jul 12 '11 at 21:03
Another question: Are you using RealURL or maybe a multidomain config (see bug in 4.3 bugs.typo3.org/view.php?id=11412 )? What have you actually put into the TS setup where we find "PAGE Id"? What happens if you replace the markers ###RETURN_URL### and ###PAGE_ID### with actual values? I am sorry I don't have a proper answer, but maybe these hints help to get one step forward. – Mateng Jul 12 '11 at 21:26
I am using typo3 version 4.4.8. I tried replacing markers with values. Still it redirect to 404 page. – Sivakumar Jul 13 '11 at 13:51
feedback

1 Answer

As this is still unanswered, does this help?

# Check if user is logged in:
[usergroup = *]
# do something
[else]
page.config >
page.config.additionalHeaders = Location: http://www.yourdomain.org/login.html
[end]

I recently posted this to another questions and it crossed my mind that it might be a suitable workaround for your probem.

Found here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.