Extension:WebChat/pl

Category:GPL licensed extensions/pl
Podręcznik rozszerzeń MediaWiki
WebChat
Status wydania: stabilneCategory:Stable extensions/pl
Realizacja Strona specjalna Category:Special page extensions/pl
Opis Adds a special page used to chat in real time with other wiki users.
Autor(zy)
Ostatnia wersja 2021-06-15 (Continuous updates)
MediaWiki 1.34+Category:Extensions with manual MediaWiki version/pl
Zmiany w bazie danych Nie
Licencja Licencja GNU General Public License 2.0 lub nowsza
Pobieranie Category:Extensions in Wikimedia version control/pl
Przykład translatewiki
  • $wgWebChatServer
  • $wgWebChatChannel
  • $wgWebChatClient
Przetłumacz rozszerzenie WebChat jeżeli jest dostępne na translatewiki.net
Category:All extensions/pl

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".

Instalacja

  • Pobierz i umieść plik(i) w katalogu o nazwie WebChat w folderze extensions/.
    Developers and code contributors should install the extension from Git instead, using:
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/WebChat
    
  • Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
    wfLoadExtension( 'WebChat' );
    
  • Configure as necessary
  • Yes Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.

Konfiguracja

There are several variables to be set in LocalSettings.php, to be added after the line of code containing wfLoadExtension(...) 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 = '';
Example for LiberaChat
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.

Użycie

Go to "Special:WebChat", type a username if one is not already chosen, then press the connect button.

Zobacz też

Category:IRC extensions/pl Category:Chat extensions/pl
Category:All extensions/pl Category:Chat extensions/pl Category:Extensions in Wikimedia version control/pl Category:Extensions included in Miraheze/pl Category:Extensions included in WikiForge/pl Category:Extensions which add rights/pl Category:Extensions with manual MediaWiki version/pl Category:GPL licensed extensions/pl Category:IRC extensions/pl Category:Special page extensions/pl Category:Stable extensions/pl