Extension:SocialProfile

来自开放百科 - 灰狐
2010年8月22日 (日) 12:51Allen (讨论 | 贡献)的版本

跳转到: 导航, 搜索

SocialProfile extension will incorporate a social profile, user board, and basic profile information into MediaWiki, specifically Avatars, Friending, Foeing, User Board, Board Blast, basic Profile Information, User Levels rank system, Awards and Gifts. The package also notifies users via email when other users request them as a friend or foe and/or sends them a message. The package was developed by Wikia, Inc.

SocialProfile consists of 7 components:

  • SystemGifts — awards functionality
  • UserBoard — user-to-user messages
  • UserGifts — gifting functionality
  • UserProfile — social profile pages
  • UserRelationship — friend/foe relationships
  • UserStats — statistics, such as the User Levels system
  • UserWelcome — <userWelcome/> parser hook for displaying social info on a wiki page

Install

获得代码

svn co http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/SocialProfile/ SocialProfile

上传 SocialProfile 到 extensions 目录下

修改 LocalSettings.php 增加以下内容

#SocialProfile
require_once("extensions/SocialProfile/UserWelcome/UserWelcome.php");
require_once("extensions/SocialProfile/SocialProfile.php");
$wgExtraNamespaces[NS_USER_PROFILE] = 'User_profile';
$wgExtraNamespaces[NS_USER_WIKI] = 'UserWiki';
$wgUserProfileDisplay['friends'] = true;
$wgUserProfileDisplay['foes'] = true;
$wgUserBoard = true;
$wgUserProfileDisplay['board'] = true;
$wgUserProfileDisplay['stats'] = true;
$wgUserStatsPointValues['edit'] = 50;
require_once("extensions/SocialProfile/UserStats/EditCount.php"); // Necessary edit counter
// The actual user level definitions -- key is simple: 'Level name' => points needed
$wgUserLevels = array(
    'Recruit' => 0,
    'Apprentice' => 1200,
    'Private' => 1750,
    'Corporal' => 2500,
    'Sergeant' => 5000,
    'Gunnery Sergeant' => 10000,
    'Lieutenant' => 20000,
    'Captain' => 35000,
    'Major' => 50000,
    'Lieutenant Commander' => 75000,
    'Commander' => 100000,
    'Colonel' => 150000,
    'Brigadier' => 250000,
    'Brigadier General' => 350000,
    'Major General' => 500000,
    'Lieutenant General' => 650000,
    'General' => 800000,
    'General of the Army' => 1000000,
);

创建数据表

cd $MediaWiki maintenance 目录下
执行 php update.php // 这个功能很 cool :)

转移目录

mv extensions/SocialProfile/avatars ../../images
mv extensions/SocialProfile/awards ../../images 

上传头像时图片大小超过100kb会出现: // 调大些, extensions/SocialProfile/UserProfile/SpecialUploadAvatar.php 如-quality 120 , 120kb

Warning: Invalid argument supplied for foreach() in extensions/SocialProfile/UserStats/UserStatsClass.php on line 519

Issue

Relationship Requests

Relationship requests 时, 接受, 拒绝两个按钮都不起作用?

108行 报错: 缺少对象

作者的回复:

Works for me (MediaWiki 1.17alpha (r70714), PHP 5.3.0, newest version of SocialProfile). Make sure that you're using the newest version of SocialProfile and 1.16 release of MediaWiki, that jQuery is available and that all the paths are correct ($wgUserProfileDirectory, $wgUserBoardScripts, $wgUserProfileScripts and $wgUserRelationshipScripts). --Jack Phoenix (Contact) 13:27, 11 August 2010 (UTC)

加入

$wgUserProfileDirectory = "extensions/SocialProfile/UserProfile";
$wgUserProfileScripts = "/extensions/SocialProfile/UserProfile";
$wgUserBoardScripts = "/extensions/SocialProfile/UserBoard";
$wgUserRelationshipScripts = "/extensions/SocialProfile/UserRelationship";

问题解决

升级 PHP 5.1.2 (cgi-fcgi) 到 5.2.14 (cgi-fcgi) 并升级 Lighttpd

  • Example URL: index.php?title=Special:AddRelationship&user=Pean&rel_type=1 (for adding as friend)
  • Example URL: index.php?title=Special:AddRelationship&user=Pean&rel_type=2 (for adding as foe)

发送加好友请求响应非常慢?

Links

分享您的观点
个人工具
名字空间

变换
操作
导航
工具箱