Jump to content

Pengaya:AnonPrivacy

From mediawiki.org
This page is a translated version of the page Extension:AnonPrivacy and the translation is 100% complete.
Manual pengaya MediaWiki
AnonPrivacy
Status keluaran: stabil
Penerapan Antarmuka pengguna
Deskripsi Menyembunyikan alamat IP pengguna anonim dari semua orang kecuali pengurus.
Perancang Sophivorusbicara
Versi terbaru 1.1 (2020-03-15)
MediaWiki 1.35+
  • anonprivacy
Licence Lisensi Publik Umum GNU 3.0
Unduh
Terjemahkan pengaya AnonPrivacy jika tersedia di translatewiki.net

Pengaya AnonPrivacy menyembunyikan alamat IP pengguna anonim dari semua orang kecuali pengurus, di perubahan terbaru, perubahan terkait, daftar pantauan, riwayat halaman, dll. Alamat IP masih dapat ditemukan lewat API.

AnonPrivacy can also hide IP addresses in the block list and in the logs. This does not include if the target page is a userpage or a user talk page of an IP. If the log has an IPv6 which is meant to be hidden, it won't show the log and instead give an error.

Limitations

If an anonymous user moves a page, their IP address will be shown even with anonprivacy turned on.

Any unblocked user who clicks the "Undo" button on an anonymous user can see the IP address of the unregistered user unless the edit can't be undone due to conflicting intermediate edits.

If you export the page history then import it to a different wiki or open the XML file, you can see the IP addresses.

Pemasangan

  • Unduh dan pindahkan folder AnonPrivacy yang diekstrak ke direktori extensions/ Anda.
    Pengembang dan penyumbangsih kode sebaiknya memasang pengaya dari Git sebagai gantinya, menggunakan:
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/AnonPrivacy
    
  • Tambahkan kode berikut di bawah berkas LocalSettings.php Anda:
    wfLoadExtension( 'AnonPrivacy' );
    
  • Yes Selesai – Telusuri ke Special:Version di wiki Anda untuk memastikan pengayanya berhasil dipasang.

Konfigurasi

Pengaya ini memperkenalkan hak pengguna tambahan yang disebut "anonprivacy". Pengguna apa pun dengan hak ini dapat melihat alamat IP, sedangkan pengguna tanpa hak ini tidak dapat melihatnya. Pengurus diberikan hak tersebut secara bawaan. To give the right to any other user groups, add the following to your LocalSettings.php:

$wgGroupPermissions['groupname'] = 'anonprivacy';

IPs can still be seen through the API via for example api.php?action=feedrecentchanges. Syndication feeds can be disabled by adding the following to the bottom of your LocalSettings.php:

$wgFeed = false;

Namun, alamat IP masih akan terlihat melalui cara API lainnya. Penyelesaian masalah ini seharusnya menjadi pengutamaan untuk pengembangan di masa mendatang. In the meantime, a workaround is to disable the API entirely by adding the following to the bottom of your LocalSettings.php:

$wgEnableAPI = false;

Harap perhatikan bahwa fitur ini terusangkan dan dihapus di MediaWiki 1.32.

Lihat pula