在我的网站注销空白页面

时间:2015-04-21 12:06:17

标签: php logout

你好多年,我无法解决问题我vldpersonals每个约会网站,但每次我使用登出总是空白页面这是我的PHP文件lib.account_logout.php抱歉我的英文不好

//------------------------------------------------
// Log user out
//------------------------------------------------
$SESSION->logout();


//------------------------------------------------
// Redirect back to index page
//------------------------------------------------
redirect(VIR_PATH . "index.php");

3 个答案:

答案 0 :(得分:0)

在您的注销页面顶部,您需要定义VIR_PATH实际上是什么,如果这是一个已定义的常量,则需要在每个使用它的页面上设置它。

什么是重定向?我们需要更多信息。

修改

SO想要重定向到索引页面。

所以: 重定向(VIR_PATH。“index.php”); 变为:

header("location: your URL here");
die();

示例:

header("location:http://www.website.com/index.php");
die();

答案 1 :(得分:0)

我建议使用以下内容;

<?php
$url = "your url.com";
session_destory();
header("Location: {$url}");
die();
?>

之后也总是死掉,如果单独使用它就好了,但是如果它在另一个文件中你需要调用die,那么它就不会运行文件的其余部分。

答案 2 :(得分:0)

你好我想改变那些没有图像的女人的照片,而那些没有自动剧本照片的男人只有一张照片给那些没有照片的人我想做的方式他们为男性和女性男性化身为女性化身

我想更改这两个自动图像

<a href="{top.virtual_path}{member_profile_link}"><img src="{top.virtual_tpl_path}{session.template}/media/nonfotowoman.gif" alt="" border="0" /><br/></a>
<a href="{top.virtual_path}{member_profile_link}"><img src="{top.virtual_tpl_path}{session.template}/media/user_picture_none.gif" alt="" border="0" /><br/></a>

这是member_sections_picture.tpl此代码

<!-- IF member_picture AND member_picture_active -->
<!-- IF member_picture_adult == "0" OR member_picture_adult AND session.can_view_adult_images AND session.showadult -->
    <!-- IF top.active_module == "member_profile" AND !member_profile_preview -->
        <a class="picture_zoom" href="{top.virtual_pic_path}{member_media_path}{member_picture_large}" id="profile_picture_{member_id}" target="_blank"><img src="{top.virtual_pic_path}{member_media_path}{member_picture_large}" alt="" border="0" /><br/></a>
        <div id="profile_picture_{member_id}_zoom" class="picture_zoom_in" style="display:none"><img src="{top.virtual_pic_path}{member_media_path}{member_picture_large}" alt="" border="0" /><br/></div>
    <!-- ELSE -->
        <a href="{top.virtual_path}{member_profile_link}"><img src="{top.virtual_pic_path}{member_media_path}{member_picture}" alt="" border="0" /><br/></a>
    <!-- ENDIF -->
<!-- ELSE -->
    <a href="{top.virtual_path}{member_profile_link}"><img src="{top.virtual_tpl_path}{session.template}/media/user_picture_adult.gif" alt="" border="0" /><br/></a>
<!-- ENDIF -->