Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 19 down vote accepted

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:

$this->header('HTTP/1.1 403 Forbidden');
share|improve this answer
Also, the code above only outputs the header, so you may want to end execution with return false, die, exit, or something similar. – deizel Jul 8 '09 at 23:37
This answers the question more precisely than my answer. Still, I think it's useful to be able to redirect the user to a custom page in this case, it's nicer than a blank 'the server responded this' page. – Adriano Varoli Piazza Jul 10 '09 at 12:40
Looking at the body of that method, it seems to be a wrapper around a built in function called header. – allyourcode Jul 10 '09 at 22:26
since all of cakephp is actually more php, indeed most stuff could be boiled to 'a wrapper around a built-in function'. The idea is that your development is eased by the wrapping, and that the performance overhead is negligible. – Adriano Varoli Piazza Jul 11 '09 at 15:22
1  
+1 for coming back to update three years later. – eaj Jan 23 at 20:47
show 3 more comments

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 $this->cakeError('error404') to generate a friendly 404 page. This can can be customised (as with other errors) by creating file at 'app/views/errors/error404.ctp'.

After having a closer look at the code for cakeError, my recommendation is to try extending Cake's ErrorHandler by creating a file at 'app/error.php' or (possibly more preferable) 'app/app_error.php'.

The code for your error403 (mimicking the error404 code) could read as follows:

class AppError extends ErrorHandler {
    function error403($params) {
        extract($params, EXTR_OVERWRITE);
        $this->error(array(
            'code' => '403',
            'name' => 'Forbidden',
            'message' => sprintf(__("Access was forbidden to the requested address %s on this server.", true), $url, $message)));
            $this->_stop();
     }
}

You should also be able to provide a custom view for this error by creating 'app/views/errors/error403.ctp'. Here is a modified version of the error404 view:

<h2><?php echo $name; ?></h2>
<p class="error">
    <strong>Error: </strong>
    <?php echo sprintf(__("Access was forbidden to the requested address %s on this server.", true), "<strong>'{$message}'</strong>")?>
</p>
share|improve this answer
Good answer! This is one thing I didn't know you could do with Cake. – Adriano Varoli Piazza Aug 2 '09 at 12:11

In CakePHP 2, the preferred method is to throw an exception:

throw new ForbiddenException();
share|improve this answer

Perhaps something in this section of the cakephp manual can help you.

redirect(string $url, integer $status, boolean $exit)

The flow control method you’ll use most often is redirect(). This method takes its first parameter in the form of a CakePHP-relative URL. When a user has successfully placed an order, you might wish to redirect them to a receipt screen. The second parameter of redirect() allows you to define an HTTP status code to accompany the redirect. You may want to use 301 (moved permanently) or 303 (see other), depending on the nature of the redirect.

The method will issue an exit() after the redirect unless you set the third parameter to false.

share|improve this answer
But I don't want to send a 3xx status code back. Even if this works, it seems wrong. – allyourcode Jul 8 '09 at 23:24
1  
You can send any status code back, the 303 are just an example. – Adriano Varoli Piazza Jul 8 '09 at 23:30
This is perfect for 3xx redirect status codes. Definitely a horrible idea for everything else, like the user's 403. – Brad Koch Mar 13 at 4:27
$this->response->statusCode(403);

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 header() was getting overwritten. using $this->header('HTTP/1.1 400 Bad Request') doesn't work either because Cake expects any call to $this->header to be split on a colon ex: $this->header('Location: ...')

share|improve this answer
1  
+1 for a CakePHP 2.x answer ($this->response->...) which may help current visitors from Google, etc. (For those visitors: the answers dated 2009 are for the CakePHP 1.x codebase) – deizel Jul 16 '12 at 14:09
This will work, but Exceptions tend to be preferred for these types of situations in CakePHP 2. They abort controller execution immediately, and they trigger cake's standard error handling process. – Brad Koch Oct 5 '12 at 13:27
2  
Exceptions are better for 4xx and 5xx statuses, but if you need to (for example) return 201 to a POST request, this might be the way to go. – eaj Jan 23 at 20:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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