:
$path = $_SERVER['DOCUMENT_ROOT'];
chdir($path."/drupal");
define('DRUPAL_ROOT', getcwd());
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
global $user;
print $user->name;//it returns nothing
我使用AJAX加载此外部文件。可能是因为我有这些麻烦?
xmlhttp.open("GET","localhost/drupal/sites/all/themes/MyBartik/templates**team.php***?team_id="+str,true);
但是这段代码有效:
$account = user_load(2);
print $account->name;
如何在Drupal 7中获取当前用户的名称?
我写的时候:
print_r $user;
它返回:
stdClass Object ( [uid] => 0 [hostname] => ::1 [roles] => Array ( [1] => anonymous user ) [cache] => 0 )
而不是:
stdClass Object ( [uid] => 1 [name] => admin [pass] => $S$CyyoOFpUD2X.4w8PHsIpWVHinwFZGIG3ZS/uQCz8W/lollB7UwCT [mail] => foo@example.com...
这是AJAX功能:
function showTeam(str){
jQuery("#popup_content").fadeIn("slow");
if (str=="")
{
document.getElementById("jShowTeam").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("jShowTeam").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","http://localhost/drupal/sites/all/themes/MyBartik/templates/team.php?team_id="+str,true); xmlhttp.send();
}
答案 0 :(得分:4)
刚出现同样的问题(使用完全相同的代码)。我确信OP在过去的两年里继续发展,但我会在这里留给你 - 是的,读者。
打开此文件:
sites/default/settings.php
关于第328行,有一个像
这样的通用行#$cookie_domain = '.example.com';
取消注释并将您的域名放在那里,不要忘记留在前缀点。你必须再次登录,它应该可以工作。