You're getting infinite redirects because there is no condition in your 
forceSSL function- have it check for https first, otherwise it will just 
keep redirecting:

function forceSSL(

    if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ) {
          return;
     } else {
          $this->redirect('https://' . $_SERVER['SERVER_NAME'] 
. $this->here);
     }

)

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to