无限星辰工作室-客户无限互联网动力之源
标题:
Discuz! X2.5 增加端口号记录
[打印本页]
作者:
crx349
时间:
2013-7-3 16:56
标题:
Discuz! X2.5 增加端口号记录
1. 增加会员状态表字段 注册IP端口、最后访问端口。类型 char 长度6。
ALTER TABLE `pre_common_member_status` ADD `regipport` CHAR( 6 ) NOT NULL DEFAULT '0' AFTER `lastip` ,
ADD `lastipport` CHAR( 6 ) NOT NULL DEFAULT '0' AFTER `regipport`
复制代码
2. 增加帖子表字段,发帖时的端口。
ALTER TABLE `pre_forum_post` ADD `useport` CHAR( 6 ) NOT NULL DEFAULT '0' AFTER `useip`
复制代码
3. 修改程序文件,注册、访问、发帖时记录访客端口号。
3.1、 source\class\table\table_common_member.php 292行
搜索 'lastip' => (string)$ip, 下面增加两行:
'regipport' => (int) $_SERVER['REMOTE_PORT'],
'lastipport' => (int) $_SERVER['REMOTE_PORT'],
复制代码
3.2、 source\class\class_member.php 121行
搜索
C::t('common_member_status')->update($_G['uid'], array('lastip' => $_G['clientip'], 'lastvisit' =>TIMESTAMP, 'lastactivity' => TIMESTAMP));
复制代码
改成:
C::t('common_member_status')->update($_G['uid'], array('lastip' => $_G['clientip'], 'lastipport' => (int) $_SERVER['REMOTE_PORT'], 'lastvisit' =>TIMESTAMP, 'lastactivity' => TIMESTAMP));
复制代码
3.3、 source\include\post\post_newreply.php 415行
搜索 'useip' => $_G['clientip'], 下面增加一行
'useport' => (int) $_SERVER['REMOTE_PORT'],
复制代码
3.4、 source\include\post\post_newthread.php 580行
搜索 'useip' => $_G['clientip'], 下面增加一行
'useport' => (int) $_SERVER['REMOTE_PORT'],
复制代码
4. 修改模板用于显示
4.1、 template\default\home\space_profile_body.htm 154行
</em>$space[regip] 后面增加:
<!--{if $space[regipport] != 0}-->$space[regipport]<!--{/if}-->
复制代码
</em>$space[lastip] 后面增加:
<!--{if $space[lastipport] != 0}-->$space[lastipport]<!--{/if}-->
复制代码
4.2、 template\default\forum\topicadmin_getip.htm
<b>$member[useip] 后面增加:
<!--{if $member[useport] != 0}-->$member[useport]<!--{/if}-->
复制代码
欢迎光临 无限星辰工作室-客户无限互联网动力之源 (https://xmspace.net/)
Powered by Discuz! X3.4