Extension:AccountInfo/hi
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
AccountInfo रिलीज़ की स्थिति: अनानुरक्षित |
|
---|---|
कार्यान्वयन | विशेष पृष्ठ |
विवरण | उपयोगकर्ताओं को उनके बारे में संग्रहीत निजी जानकारी देखने की अनुमति देता है |
लेखक | Legoktm, Emufarmers |
नवीनतम संस्करण | 0.1 (2014-02-18) |
MediaWiki | 1.22+ |
PHP | 5.3+ |
डेटाबेस बदलता है | नहीं |
लाइसेंस | GNU General Public License 2.0 or later |
डाउनलोड | |
Translate the AccountInfo extension if it is available at translatewiki.net | |
आवारा भूमिका | accountinfo |
मुद्दा | ओपन कार्य · बग की रिपोर्ट करें |
AccountInfo एक्सटेंशन उपयोगकर्ताओं को "स्पेशल: अकाउंटइन्फो" के माध्यम से अपने बारे में संग्रहीत निजी जानकारी देखने की अनुमति देता है।
सूचना
- $wgPutIPinRC - लॉग-इन उपयोगकर्ता द्वारा किए गए कार्यों के लिए सभी अद्वितीय आईपी दिखाता है जो वर्तमान में तालिका में संग्रहीत हैं।
- CheckUser - shows all unique groups of IP address, User-Agent, and XFF header that are currently stored in the table.
स्थापना
- अपने
extensions/
फ़ोल्डर मेंAccountInfo
वाली निर्देशिका में फ़ाइल डाउनलोड करें और रखें। - अपनी LocalSettings.php के नीचे निम्नलिखित कोड जोड़ें:
wfLoadExtension( 'AccountInfo' );
Done – इस बात की पुष्टि करने के लिए अपने विकी पर Special:Version पर नेविगेट करें कि एक्सटेंशन सफलतापूर्वक स्थापित हो गया है।
MediaWiki 1.24 या इससे पहले वाले उपयोगकर्ताओं के लिए:
ऊपर दिए गए निर्देश wfLoadExtension()
का उपयोग करके इस एक्सटेंशन को स्थापित करने के नए तरीके का वर्णन करते हैं।
यदि आपको इस एक्सटेंशन को इन पिछले संस्करणों (MediaWiki 1.24 और इससे पहले) पर इंस्टॉल करना है, तो wfLoadExtension( 'AccountInfo' );
के बजाय, आपको यह उपयोग करने की आवश्यकता है:
require_once "$IP/extensions/AccountInfo/AccountInfo.php";