real accountt=1287166193

百度--您的访问出错了
&您的访问出错了
很抱歉,您要访问的页面不存在。
请检查您输入的网址是否正确。
如果您不能确认您输入的网址,请浏览页面,来查看您所要访问的网址。
直接输入要访问的内容进行搜索:
如还有疑问请访问获得解决方法
&2013 BaiduFrom MediaWiki.org
Altre lingue:
 o ? o ?English o ? o ? o ? o ? o ? o ? o ? o ? o ? o ?
confirmaccount
requestips
lookupcredentials
if it is available at translatewiki.net
The ConfirmAccount extension disables direct account creation and requires the approval of new accounts by a bureaucrat. Direct account creation can still be enabled (if you want Sysops/Bureaucrats to be able to directly make them) by configuring user rights.
extension can be used (in conjunction with the ConfirmAccount extension) in order to use captchas to stop flood requests.
and place the file(s) in a directory called ConfirmAccount in your extensions/ folder.
Add the following code at the bottom of your LocalSettings.php:
require_once "$IP/extensions/ConfirmAccount/ConfirmAccount.php";
which will automatically create the necessary database tables that this extension needs.
Ensure the wiki has write permissions on , or manually set ['accountreqs'] and $wgFileStore['accountcreds'] to a writable directory of your choice.
 Done - Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
There are several configuration variables that can be adjusted in LocalSettings.php (after the require_once line that includes ConfirmAccount.php). See ConfirmAccount.config.php for all the variables that can be set. (The default values are in ConfirmAccount.config.php, but you should not edit that file).
MediaWiki version:
 Note: By default, a 50 word biography is required for the new user to submit the request form. To adjust this requirement, edit $wgAccountRequestMinWords, e.g. for 10 words:
$wgAccountRequestMinWords = 10;
Setting $wgAccountRequestMinWords to 0 will disable it entirely.
MediaWiki version:
 Note: By default, a 50 word biography is required for the new user to submit the request form. To adjust this requirement, edit $wgConfirmAccountRequestFormItems['Biography']['minWords'] in LocalSettings.php, e.g. for 10 words:
$wgConfirmAccountRequestFormItems['Biography']['minWords'] = 10;
To disable the biography, set $wgConfirmAccountRequestFormItems['Biography']['enabled'] to false:
$wgConfirmAccountRequestFormItems['Biography']['enabled'] = false;
 Note: Sysops can still create accounts directly. To disable this, add to LocalSettings.php:
$wgGroupPermissions['sysop']['createaccount'] = false;
 Note: If only logged-in users are allowed to view pages, make sure you add the request account page to $wgWhitelistRead. For example:
$wgWhitelistRead = array( 'Special:RequestAccount', 'Main Page' );
In other languages you have to replace "Main Page" with its local name, for instance "Hauptseite" in a German wiki.
To further categorize users based on their interests, you can set up MediaWiki:Requestaccount-areas. This should be in a format like:
*Topic|Topic wiki page|text to append to all interested users' bios |text to append to all interested users' bios in group0|text to append to all interested users' bios group1|text to append to all interested users' bios in group2|...
These group numbers are based on $wgAccountRequestTypes. So if 0 is the index for 'authors', then 'authors' interested in a topic will have the group0 text appended to their biography. This can be useful, say, if users can be approved as either authors or editors. Authors can have "category:X authors" where X is a topic, like "mathematics", and editors can have "category:x editors". You can have as many groups as you want, but you need at least one.
Confirming account requests on Special:ConfirmAccounts (beta form)
As a bureaucrat (or other user with the confirmaccount permission), browse to Special:ConfirmAccounts
Click Review
You will see the whole form with the users' data. Carefully review the form, and proceed to creating the account or rejecting the request.
If you chose to create the account, the user's biography will become their userpage and the userpage will be automatically created with the default summary of Creating user page with biography of new user.
Note: In order for bureaucrats to get notified of pending requests you need to set an email / mailing list in LocalSettings.php:
$wgConfirmAccountContact = '';
If you would like to add a "Request account" login link add the following to the "LocalSettings.php" file:
$wgHooks['PersonalUrls'][] = 'onPersonalUrls';
function onPersonalUrls( array &$personal_urls, Title $title, SkinTemplate $skin
// Add a link to Special:RequestAccount if a link exists for login
if ( isset( $personal_urls['login'] ) || isset( $personal_urls['anonlogin'] ) ) {
$personal_urls['createaccount'] = array(
'text' =& wfMessage( 'requestaccount' )-&text(),
'href' =& SpecialPage::getTitleFor( 'RequestAccount' )-&getFullURL()
return true;
as well as the text "Request account" to page "MediaWiki:Requestaccount".
To attempt to prevent spam, instead of captchas, bl manually moderate new user registrations, with a simpler Request account. Requesting only a username, email address and brief message. Add the following to LocalSettings.php after the line require_once "$IP/extensions/ConfirmAccount/ConfirmAccount.php";.
$wgMakeUserPageFromBio = false;
$wgAutoWelcomeNewUsers = false;
$wgConfirmAccountRequestFormItems = array(
'UserName'
=& array( 'enabled' =& true ),
'RealName'
=& array( 'enabled' =& false ),
'Biography'
=& array( 'enabled' =& false, 'minWords' =& 50 ),
'AreasOfInterest' =& array( 'enabled' =& false ),
=& array( 'enabled' =& false ),
=& array( 'enabled' =& true ),
=& array( 'enabled' =& false ),
'TermsOfService'
=& array( 'enabled' =& false ),
Optionally tweak : requestaccount-text, requestaccount-notes, requestaccount-ext-text, requestaccount-acc-text.
Change function createUserpage in extensions/ConfirmAccount/business/AccountConfirmSubmission.php, the last part to look like this:
#Create userpage!
if( !empty($body) ) {
$article = new WIkiPage( ...
$article-&doEdit( ...
Do not set $wgGroupPermissions['*']['createaccount'] to true in LocalSettings, it will override the request login and allow users to sign up without confirmation.
Do not set/create MediaWiki:Requestaccount-areas/xx where xx is a language code, the first part of each line is used as the keys to store in the DB for the items account requesters check.
Older versions of MediaWiki may not show the link to Special:RequestAccount at the user login form. You can edit MediaWiki:loginprompt to remedy this.
If your email client loses its mail data before sending it out, users will not get their passwords but may have an account. Since no one knows the passwords, you may want to use
to send them new ones.
If only a few people view the confirm accounts page, the randomly triggered pruning of old requests will not trigger often, so old rejected requests may persist.
Updating fails with Class 'ConfirmAccountUISetup' not found in extensions/ConfirmAccount/ConfirmAccount.php:42
→ Add require( __DIR__ . '/frontend/ConfirmAccountUI.setup.php' ); to line 41 in the "ConfirmAccount.php" file.
for detailed information on this.
, for administrator-initiated (mass) account creation
TwnMainPage extension, offering aCSonline的账号注册地址 http:///Registration/Accountreg.aspx?recommendid=CS39741_百度知道
CSonline的账号注册地址 http:///Registration/Accountreg.aspx?recommendid=CS39741
推广地址与官网地址注册有什么不同
提问者采纳
推广地址就是别人推广给你的 ,对双方都有好处的。 在那填也是可以的。不相信的话那直接在下面网站注册吧
提问者评价
答案来自:
其他类似问题
为您推荐:
csonline的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁≡ MenuTutorialsBASH ShellTroubleshootingNginxNetworkingMySQLGoogle Cloud PlatformAmazon Cloud ComputingRackspace Cloud ComputingLinuxCentOSDebian / UbuntuUbuntu LinuxSuseRedHat and FriendsSlackware LinuxUNIXAIXMac OS XFreeBSDFreeBSD Jails (VPS)OpenbsdSolarisSee all tutorial topicsContact usLinux Scripting GuideRSS/FEEDQ. How do I create create a new Linux user account ? How do update or modify default Linux new user information? Using the command prompt (shell) tools, how do I add a user to the system? What are command line options for adding a user?
A. To create a new user account under any Linux distribution use command called useradd. The system administrator is responsible for creating account. Login as root user (or use sudo command).useradd command syntaxuseradd [options] {username}Depending on command line options, the
useradd command will update system files (/etc/passwd and /etc/shadow file with password) and may also create the new
user's home directory and copy initial files.Linux add a new user called rakhiType the command as follows: useradd rakhi Set a password for rakhi: passwd rakhi Without password user account will be in locked status. To unlock the account, you need to use above passwd command. Use passwd command to assign a password and set password aging guidelines.Set account disable dateYou can set date for the account to be disabled in the format YYYY-MM-DD with -e option while creating account itself: useradd -e {yyyy-mm-dd} {username} useradd -e
jerrySet default password expiryThe -f {days} option set number of days after the password expires until the account is disabled. (If 0 is specified, the account is disabled immediately after the password expires. If -1 is specified, the account is not be disabled after the password expires.) useradd -f {days} {username} useradd -e
-f 30 jerryLinux add a user using command line toolsCentOS / RHEL: Set Accounts To Disable After Password&UNIX Create User AccountHowTO: Linux Disable a User Account CommandUbuntu Linux: Add a User To GroupLinux: HowTo Check User Password Expiration Date and TimeTweet itFacebook itGoogle+ itPDF itNext FAQ: Linux Delete Directory With rmdir CommandPrevious FAQ: KSH for Syntax
Featured Articles:30 Cool Open Source Software I Discovered in 201330 Handy Bash Shell Aliases For Linux / Unix / Mac OS XTop 30 Nmap Command Examples For Sys/Network Admins25 PHP Security Best Practices For Sys Admins20 Linux System Monitoring Tools Every SysAdmin Should Know20 Linux Server Hardening Security TipsLinux: 20 Iptables Examples For New SysAdminsTop 20 OpenSSH Server Best Security Practices Top 20 Nginx WebServer Best Security Practices20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors15 Greatest Open Source Terminal Applications Of 2012My 10 UNIX Command Line MistakesTop 10 Open Source Web-Based Project Management SoftwareTop 5 Email Client For Linux, Mac OS X, and Windows UsersThe Novice Guide To Buying A Linux Laptop
Follow @nixcraft

我要回帖

更多关于 real account 的文章

 

随机推荐