我正在开发一个独立的应用程序,它使用drupal函数,我遇到了一些麻烦。首先,我的应用程序必须检查是否有用户访问此应用程序,如果他没有权限显示错误消息。如果用户已登录并具有权限,我的应用程序必须向他显示一些操作...首先,我在Apache中创建了子域,例如我将其命名为: myapps.site.com。麻烦的是:当未经授权的用户输入这个地址时,会加载site.com的主页(只有没有图片的文本),而不是我的页面有错误信息,但是当他打印myapps.site.com/index.php时一切正常,错误消息加载。当授权用户进入此页面时,一切正常。我已经检查过,问题在于
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
以下是我的代码示例:
<?php
chdir('/www/mysite/');
require_once './includes/bootstrap.inc';
require_once './includes/form.inc';
// Here is problem
// if I comment this and show only err message everything is also OK
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
global $user;
// Here I am loading additional info to check if the user has access
profile_load_profile(&$user);
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="styles/styles.css" />
<script src="jscripts/jQuery.js"></script>
<title>app</title>
</head>
<body>';
// here i check user priviliges
if (!$user->uid || $user->profile_is_priviliged == FALSE )
{
echo 'some err msg';
}
else
{
echo 'some actions';
}
echo '</body></html>'; ?>
正如我所理解的那样,问题也可能因为这是settings.php中的子域和基本路径是site.com,默认情况下drupal_bootstrap会加载主页的内容。
答案 0 :(得分:1)
使用http://drupal.org/project/domain进行此类操作,请勿自行编码。
答案 1 :(得分:1)
尝试从性能选项中清除缓存。同时取消选中“为匿名用户缓存页面”选项,它对我有用(直到现在)
同时检查此https://www.drupal.org/node/2333361,如果我发现其他内容或问题再次出现,我会再次发布。