In my controller, I check a condition to see if the user is allowed to do something. If the check fails, I want to send a 403 back to the browser. How do I do that in Cakephp?
|
|
|
|
|
|
|
By looking at the relevant API code from the previous comment, it seems you can call Controller::header($status) to output a header without redirection. In your case, the proper usage is most likely:
|
||||||||||
|
|
|
Perhaps something in this section of the cakephp manual can help you.
|
||||||||||||||
|
|
|
Upon revisiting this question, and reading Adriano's comment on my previous answer (regarding redirecting the user to a friendly page), I have come up with a new solution. Within a controller you can call After having a closer look at the code for The code for your
You should also be able to provide a custom view for this error by creating '
|
||
|
