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?
|
EDIT - This question is quite old and covers different versions of the CakePHP framework. Following is a summary of which version each answer applies to. Don't forget to vote on the solution that helps most.
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:
|
|||||||||||||
|
|
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 '
|
|||
|
|
In CakePHP 2, the preferred method is to throw an exception:
|
|||
|
|
|
Perhaps something in this section of the cakephp manual can help you.
|
|||||||||
|
Will set the status code when Cake is ready to send the response. CakeResponse::send() expects to send the status code and message, so in my tests I think my using |
|||||||||||
|