do you test this url in your application that writted with cakephp ?
you see a page like this:
how i can disable test suite?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You access CakePHP’s built-in test suite’s web runner by going to
/yourapp/test.phpor/test.php, depending on your server’s configuration. Going to/testshould give you a 404 error unless you specifically added such a route or a file/path namedtestin yourwebrootdirectory.You can disable the web runner by denying access to it in your server configurations or by simply removing the file. However, there’s rarely a reason to do this, as:
Lastly, if you’re new to Cake, you need to read the Cake cookbook. Start from the first section, and work your way down to the Blog Tutorial. This will answer most of your questions and avoid a lot of common mistakes (such as your misconfiguring your server’s docroot and not having URL rewriting set up properly).
Note:
I’ve bolded the part about the Cookbook because it is such a crucial resource for learning Cake development, and it’s the first place you should consult if you run into any problems or have a question. In fact, people get quite annoyed on #cakephp at new users asking the same basic questions that are already answered in the Cookbook—especially if you haven’t done the Blog Tutorial.