Extension:WebChat/bn
![]() মুক্তির অবস্থা: স্থিতিশীল |
|
---|---|
![]() |
|
বাস্তবায়ন | বিশেষ পৃষ্ঠা |
বিবরণ | Adds a special page used to chat in real time with other wiki users. |
লেখক(গণ) | |
সর্বশেষ সংস্করণ | 2021-06-15 (Continuous updates) |
MediaWiki | 1.34+ |
ডাটাবেজ পরিবর্তন | না |
লাইসেন্স | গ্নু জেনারেল পাবলিক লাইসেন্স ২.০ অথবা পরবর্তী |
ডাউনলোড | |
উদাহরণ | translatewiki |
|
|
webchat |
|
Translate the WebChat extension if it is available at translatewiki.net | |
The WebChat extension adds a special page used to chat in real time with other wiki users using a web-based IRC client. Once installed, it will be available via "Special:WebChat".
Installation
- Download and place the file(s) in a directory called
WebChat
in yourextensions/
folder. - আপনার $LocalSettings-এর নীচের অংশে নিম্নলিখিত কোড যোগ করুন:
wfLoadExtension( 'WebChat' );
- Configure as necessary
করা হয়েছে – এক্সটেনশনটি সফলভাবে ইনস্টল করা হয়েছে কিনা তা যাচাই করতে আপনার উইকির Special:Version-এ যান।
To users running MediaWiki 1.29 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension()
.
If you need to install this extension on these earlier versions (MediaWiki 1.29 and earlier), instead of wfLoadExtension( 'WebChat' );
, you need to use:
require_once "$IP/extensions/WebChat/WebChat.php";
Configuration
There are several variables to be set in LocalSettings.php
, to be added after the line of code containing require_once(...)
described above.
// IRC Server to connect to, not required when using the Libera.Chat web client.
$wgWebChatServer = '';
// Channel to connect to.
$wgWebChatChannel = '';
// Which web chat client to use, 'liberaChat' is required when connecting to Libera.Chat,
// but 'Mibbit' can be used for other networks.
$wgWebChatClient = '';
- লিবেরাচ্যাটের জন্য উদাহরণ
wfLoadExtension( 'WebChat' );
$wgWebChatChannel = '#libera';
$wgWebChatClient = 'LiberaChat';
The "webchat
" permission can be used to specify what user groups can access it, by default only logged in users have access.
Usage
Go to "Special:WebChat", type a username if one is not already chosen, then press the connect button.