Extension:WebChat/bn

This page is a translated version of the page Extension:WebChat and the translation is 8% complete.
মিডিয়াউইকি এক্সটেনশন ম্যানুয়াল
WebChat
মুক্তির অবস্থা: স্থিতিশীল
বাস্তবায়ন বিশেষ পৃষ্ঠা
বিবরণ Adds a special page used to chat in real time with other wiki users.
লেখক(গণ)
সর্বশেষ সংস্করণ 2021-06-15 (Continuous updates)
MediaWiki 1.34+
ডাটাবেজ পরিবর্তন না
লাইসেন্স গ্নু জেনারেল পাবলিক লাইসেন্স ২.০ অথবা পরবর্তী
ডাউনলোড
উদাহরণ translatewiki

  • $wgWebChatServer
  • $wgWebChatChannel
  • $wgWebChatClient
webchat
Quarterly downloads 3 (Ranked 141st)
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".


  • ডাউনলোড করুন এবং আপনার extensions/ ফোল্ডারের WebChat নামক ডিরেক্টরিতে ফাইল(গুলি) নিন।
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/WebChat
  • আপনার LocalSettings.php -এর নিচের অংশে নিম্নলিখিত কোড যোগ করুন:
    wfLoadExtension( 'WebChat' );
    
  • Configure as necessary
  • Yes করা হয়েছে – এক্সটেনশনটি সফলভাবে ইনস্টল করা হয়েছে কিনা তা যাচাই করতে আপনার উইকির Special:Version-এ যান।

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.

See also