Jump to content
  • 0

редиректы


crautcher
 Share

Question

1ый файл готовит линки , 2ой направляет по ним . суть простая если не залогинен отправляем на логин , если залогинен , то логинем на сайте и отправляем на сайт . Проблема в том что время от времени редирект зацикливается , и начинает кидать сам на себя по кругу . Главное понять немогу из за чего и справоцировать тоже не удаёться , прям мистика .


<?

function ExecDefault(){
header('P3P: CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
$Fb = facebook::getAuthorized() ;
$facebook = new facebook;


if ( $Fb['profile'])
{
$this -> SetAppLg ($Fb['profile']['locale']);
$sql = Sql::getInstance('horo');
$Fb ['profile'] ['Token'] = $facebook ->getAccessToken() ;
$this -> AutoregFbUser ( $Fb ['profile']);
$this -> AutoLogin ($Fb ['profile'] );
$this -> setVar ('logoutLink', $facebook->getLogoutUrl ());
if ( $_SERVER['SERVER_PORT'] == '443' )
$this -> setVar ('redirect','https://'. facebook::getConfig( "domain" ) .'/');
else
$this -> setVar ('redirect','http://'. facebook::getConfig( "domain" ) .'/');
}
else
{
if ( $_SERVER['SERVER_PORT'] == '443' )
$this -> setVar ( 'loginLink' , $facebook-> getLoginUrl (
array (
'canvas' => 1,
'scope' => 'email,offline_access,publish_stream,user_birthday',
'redirect_uri' => 'https://'.facebook::getConfig( "domain" ).'/?m=fblogin',
)) );
else
$this -> setVar ( 'loginLink' , $facebook-> getLoginUrl (
array (
'canvas' => 1,
'scope' => 'email,offline_access,publish_stream,user_birthday',
'redirect_uri' => 'http://'.facebook::getConfig( "domain" ).'/?m=fblogin',
)));
}



$this -> output ( "fbapp" );


}
?>


<?
header('P3P: CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
if (isset ($loginLink) ) { ?>

<script type="text/javascript">
top.location.href='<?echo $loginLink?>'
</script>

<?} if (isset($logoutLink)){?>

<script type='text/javascript'>
top.location = '<?echo $redirect?>'
</script>

<?}?>

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy