DISCUZ!无法上传头像,怎么办?
主要还是检查三个配置文件,config_globalphp、config_ucenterphp、configincphp。具体:
具体需要检查的设置说明:
1、UCenter 应用 ID 要和 UCenter 后台的 ID 一致;
2、UCenter 通信密钥要和 UCenter 后台的通信密钥一致;
3、UCenter 访问地址是否是正确的地址;
4、UCenter IP 地址是否是UCenter所在的 Mysql 服务器的ip地址。
POST登录后可以在返回文本中截取到用户名用户图像地址是 http://您的地址/uc_server/avatarphpuid=用户UID&size=middle 查看更多答案>>
没有存在表里,你需要引用就把img里的src属性写成这样的,"http://你的域名/uc_server/avatarphpuid=$thread[authorid]&size=small"
模板forumdisplay_listhtm
其中作者头像及链接地址代码
<a href="homephpmod=space&uid=$thread[authorid]" target="_blank"><!--{avatar($thread[authorid],small)}--></a>其他代码原文件就有,改动HTML代码及样式即可。
如无html css基础不建议修改,出现问题很麻烦。
编辑 template\default\forum\forumdisplay_listhtm文件 查找:
<cite><!--{if $thread['authorid'] && $thread['author']}--><a href="homephpmod=space&uid=$thread[authorid]" c="1">$thread[author]</a>
<!--{if $verify[$thread['authorid']]}-->$verify[$thread[authorid]]<!--{/if}-->
<!--{else}--><!--{if $_G['forum']['ismoderator']}--><a href="homephpmod=space&uid=$thread[authorid]" c="1">{lang anonymous}</a><!--{else}-->{lang anonymous}<!--{/if}--><!--{/if}--></cite>
<em>$thread[dateline]</em>
修改为:
<style>tl by { width: 140px; text-align: left; }</style>
<div style="float:left;width:28px;padding-top:4px;">
<img src="http://你的网站域名/uc_server/avatarphpuid=$thread[authorid]&size=small" width="25px" height="25px" style="border:1px solid #ccc; padding:2px; margin:0px; background-color:#fff;" /></div><div style="float:left;padding:2px 0px 0px 6px;">
<cite><!--{if $thread['authorid'] && $thread['author']}-->
<a href="homephpmod=space&uid=$thread[authorid]" c="1">$thread[author]</a>
<!--{if $verify[$thread['authorid']]}-->$verify[$thread[authorid]]<!--{/if}--><!--{else}-->
<!--{if $_G['forum']['ismoderator']}--><a href="homephpmod=space&uid=$thread[authorid]" c="1">{lang anonymous}</a>
<!--{else}-->{lang anonymous}<!--{/if}--><!--{/if}--></cite>
<em>$thread[dateline]</em>
0条评论