On Sun, Oct 10, 2010 at 4:54 AM, [email protected] <[email protected]> wrote: > Hello, > > The website runs on a shared hosting platform. Since a week the home > page doesn't work properly. The other pages works as normal. > > I have also tried a fresh install from the cakephp website and I got > still > the same error: > -------------------------------------------------------------------------------------- > Error: Redirect:Controller could not be found. > > Error: Create the class Redirect:Controller below in file: app/ > controllers/redirect:controller.php > > <?php > class Redirect:Controller extends AppController { > > var $name = 'Redirect:'; > } > > ?> > ------------------------------------------------------------------------------------- > > And here my cakephp install: > http://cake.fijnmedia.nl/ > > Maybe its something with the htaccess / dispatcher or something, I > really don't know.
Cake is throwing up that error because you've tried to redirect to a URL beginning with "/redirect". At least, that's my best guess. So, what does your controller code look like?Or maybe it's something in AppController::beforeFilter(). Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
