解决二:关于fee模板lu模板卡502解决方法
0
1067
2021年5月15日
之前已经找出过这个问题也解决了部分人的,这次又发现了一个导致模板502的问题 解决也很简单
首先是fee模板 打开module.php 搜索 feee_author 找到下面这段
如图
<?php
//blog:文章作者
function feee_author($uid){
global $CACHE;
$user_cache = $CACHE->readCache('user');
$author = $user_cache[$uid]['name'];
$mail = $user_cache[$uid]['mail'];
$avatar= getGravatar($mail);
$des = $user_cache[$uid]['des'];
$title = !empty($mail) || !empty($des) ? "title=\"$des $mail\"" : '';
echo '<a title="查看更多文章" href="'.Url::author($uid)."\" > $author</a>";
}
?>
改成:
<?php
//blog:文章作者
function feee_author($uid){
global $CACHE;
$user_cache = $CACHE->readCache('user');
$author = $user_cache[$uid]['name'];
$photo = $user_cache[$uid]['photo']['src'];
echo '<a title="查看更多文章" href="'.Url::author($uid)."\" > $author</a>";
}
?>
lu模板 打开模板目录 找到module.php 搜索log_author
如图
//blog:文章作者
function log_author($uid){
global $CACHE;
$user_cache = $CACHE->readCache('user');
$author = $user_cache[$uid]['name'];
$mail = $user_cache[$uid]['mail'];
$avatar= getGravatar($mail);
$des = $user_cache[$uid]['des'];
$title = !empty($mail) || !empty($des) ? "title=\"$des $mail\"" : '';
echo '<a title="查看更多文章" href="'.Url::author($uid)."\" > $author</a>";
}
改成
//blog:文章作者
function log_author($uid){
global $CACHE;
$user_cache = $CACHE->readCache('user');
$author = $user_cache[$uid]['name'];
$photo = $user_cache[$uid]['photo']['src'];
echo '<a title="查看更多文章" href="'.Url::author($uid)."\" > $author</a>";
}
如果以上办法还没解决可以看解决方法一 https://riced.cn/post-632.html
这个主题简介啊