Project:Support desk

From MediaWiki.org
(Redirected from Project:Support Desk)
Jump to: navigation, search
vde   This page is for questions relating to the MediaWiki software.

Welcome to MediaWiki.org's Support desk, the central on-wiki place to ask MediaWiki questions!

The greater purpose of this page is to make our Manual and other available help so good that you do not have to come here to ask questions, or making them easier to find.

There are other ways for of communication as well (IRC, Mailing lists etc.). Read more here.

Before you post

Post a new question

1. To help us answer your questions, please always indicate which versions you are using:

  • MediaWiki (reported by your wiki's Special:Version page)
  • PHP (likewise)
  • Database (likewise, e.g. MySQL 5.5)

2. Please include the URL of your wiki unless you absolutely can't. It's often a lot easier for us to identify the source of the problem if we can look for ourselves.

3. To start a new thread, click "Start a new discussion".

Archiving topics

Topics are automatically archived when they have been inactive for three weeks. If a question you have asked is approaching this limit and still has not been answered, please 'bump' it to prevent it being archived. However do not 'bump' for other reasons.

First page
First page
Previous page
Previous page
Last page
Last page

Interwiki categories?

Is that at all possible? If not, would it be possible to restrict reading of individual pages like can be done with whole wikis? (Or... users seeing pages depending on rights?)

31.54.196.14901:52, 26 May 2013

HTML code appears in pages

I'm having a problem where pages show up a HTML code. When editing pages, they are showing fine. wgRawHtml doesn't do anything. Any ideas what could be the problem?

http://i.imgur.com/ePF5GBa.png

86.60.219.9722:27, 25 May 2013

Seems like I can't edit, don't know why. The problem started when we moved to another server. We just copied files over and imported sql.

86.60.219.9700:54, 26 May 2013
 

[RESOLVED]Pagetitle encoding problems when upgrading a wiki

  • MediaWiki : 1.16.2 ([1]) -> 1.20.3
  • PHP : 5.3.3-7+squeeze15 (cgi-fcgi)
  • Database : MySQL 5.1.66-0+squeeze1

Hi,

I'm working on the upgrade of es.vikida.org and I have some problems. The DB (here is a screen of phpmyadmin) as some encoding "problems" but it's working with MW:1.16.2. When upgradding to MW:1.20.3 all the pagetitle with special characters aren't accessible File:Index es before migration.png - File:Index es after migration.png. Anyone as an idea to correct the problem ?

Vivi-1 (talk)13:31, 18 May 2013

Hi!

I have once fixed that kind of error; it is a tidysome work. :-(

The result, which you must have in the end is: Your database uses UTF-8 or binary encoding and the data in your database is (in any case) UTF-8-encoded.

First you need to know what kind of encoding your system uses:

  • What is the encoding of the database, of the different tables and of all columns, which have an encoding (that means of columns holding "text" and so on as opposed to "integers")?
    • Are all these encodings identical?
    • They should all be either "utf8_general_ci" or "binary" - and all the same.
  • What you see in the screenshot is that the data in the column, which you posted, does in fact not use the encoding, which you provide as "encoding declaration" for that column.
    • So what you need to do is: If the column's content in fact is already UTF-8 encoded, then convert the encoding declaration for that column (not the content in it!) to UTF-8. That worked in some way by temporarily making the column a BLOB, then converting it (MySQL does not change the content of blobs when you convert the charset) and then set the column back to the type it had before.
    • If the content in the column in fact is not UTF-8-encoded, you need to convert the encoding of the content to UTF-8. I think that worked same as above, but without changing the affected columns to blob before.

I know there also are some scripts around

88.130.104.21214:41, 18 May 2013

Hello,


So, I'm not on my main computer, so, can't test it on my test instalation :(

Interclassments are on utf8_bin or utf8_general_ci or ... latin1_swedish_ci, latin1_bin I (or maybe another dev who can try it faster than me) will try your solution. (I can try tomorrow only ^^)

Vivi-1 (talk)15:08, 18 May 2013
 

Hi,

I have try this :

ALTER TABLE `archive` CHANGE `ar_title` `ar_title` BLOB;
ALTER TABLE `archive` CHANGE `ar_title` `ar_title` TEXT CHARACTER SET utf8 COLLATE utf8_bin;

And MySQL respond:

#1170 - BLOB/TEXT column 'ar_title' used in key specification without a key length
(
Vivi-1 (talk)18:08, 19 May 2013

Hi,

I am not really a MySQL expert, but maybe the script here helps you. It shows you the logic, which you have to go through. That should be a help to understand, what is needed. The script is written for a database, which is used by TYPO3; this explains the first few lines, in which the script tries to get the MySQL credentials. These first lines cannot be transferred 1:1 to your situation, but for your needs, you could try setting the variables in the script directly. Maybe it then even works for you without the need of doing much additional manual work. :-)

88.130.88.21621:27, 19 May 2013
echo utf8_decode($data);

I feel stupid.

I'm making a script to correct all the affected collumns in the DB.

If you have any problem, have a look to : https://github.com/neitanod/forceutf8

Vivi-1 (talk)15:18, 20 May 2013
 

correcting (the test) DB doesn't seem to be a good idea :|


I'm lost. And I have no idea why There is problem.

When accessing DB with PHP, the data are show without error. But MW as a problem with the title name in pages.

Vivi-1 (talk)18:15, 20 May 2013

AANNNDDDD : SOLVED :D

<?php
namespace ForceUTF8;
error_reporting( -1 );
ini_set( 'display_errors', 1 );
ini_set('default_charset', 'utf-8');

require_once('Encoding.php');
$handle = opendir('./sql/');
$dirIgnore = array ('.','..');

while ($file = readdir($handle)) {
    if (!in_array($file, $dirIgnore)) {
        echo 'Encoding '. $file ."\n";
        file_put_contents('./sql_utf8/'. $file, Encoding::fixUTF8(file_get_contents('./sql/'. $file)));
    }
}

?>

You need : https://github.com/neitanod/forceutf8

The source .sql files should be in ./sql/ and the encoded files in ./sql_utf8/

I reccomand to use one file per table.

Please, note that this is MY solution, it's not the most powerfull ... it can kill cats, burn your computer ...

Vivi-1 (talk)20:34, 23 May 2013
 
 
 
 
 

[RESOLVED] Short urls makes my wiki inaccessible

Edited by another user.
Last edit: 19:30, 24 May 2013

I can't access my wiki after applying the changes needed for short urls. In my .htaccess file, I added:

RewriteEngine On
RewriteRule ^/?guides(/.*)?$ %{DOCUMENT_ROOT}/guides/index.php [L]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?guides/images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/guides/thumb.php?f=$1&width=$2 [L,QSA,B]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?guides/images/thumb/archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/guides/thumb.php?f=$1&width=$2&archived=1 [L,QSA,B]

and in my LocalSettings.php file, I added this code:

$wgArticlePath = "{$wgScriptPath}/$1";
$wgUsePathInfo = true;

Here's the link to my wiki: http://kingdomhearts7.com/guides/Kingdom_Hearts_7. My MediaWiki version is 1.20.4. My PHP version is 5.3.23, and my MySQL version is 5.5.23-55.

74.190.238.17913:39, 24 May 2013

Could this be a problem with my host? I'm hosted with HostGator. Please, can anyone help me?

74.190.246.14713:36, 25 May 2013

Never mind. I figured out what the problem was.

74.190.246.14716:43, 25 May 2013
 
 

How to insert image from other web resources?

I use this code to insert an image which was uploaded to my wiki

[[File:file.jpg|200px|thumb|left|Description]]

But how can I make additional option to use direct url to the image insted of "File:file.jpg"???

Fokebox (talk)16:08, 25 May 2013

Possibility of changing links in the upper navigation?

Hey there, is there a possibility of changing the "Create Account" link in the upper navigation? I don't want to change the text, I only want to change the link. Regards, Abrafix

Abrafix (talk)12:59, 25 May 2013

extension Echo

hi how do I get extension Echo to work on my website ive installed it and it has the link at the top of my website but just a plain link I would like the look like Wikipedia Echo

86.171.33.22414:51, 12 May 2013

How does it not look like the Echo installed on Wikipedias? Do you have a screenshot or a link or something?

Krenair (talkcontribs)15:47, 12 May 2013
Edited by another user.
Last edit: 20:02, 12 May 2013

ok I will upload a photo of it not showing correctly here is the link to the image Echo notfication error.png

86.171.33.22419:56, 12 May 2013

I think you want to set $wgEchoShowFullNotificationsLink to false. (false is the default, just remove the override from your config.)

Krenair (talkcontribs)16:11, 13 May 2013

Ok so do I add it to my local settings or which file in the extension do I edit

Paladox2014 (talk)18:18, 13 May 2013

That doesent make it show like the Wikipedia notification does

Paladox2014 (talk)18:39, 13 May 2013
 
 
 
 
 

Problems editing pages and logo

Hi all

I have 2 Issues

1) Unable to edit: When I try to add new things to my wiki I consistently get an error

(Error 101 (net::ERR_CONNECTION_RESET): The connection was reset.)

I am not sure what is going on. I had to luck in trying to find something in the technical and enduser help sections. I used to be able to update it earlier. I dont remember anything changing, except for the installing the regular updates on ubuntu. I am guessing somethings changed which might be causing this. Please help figure this out.

2) Logo : I tried to use a logo file for my wiki. The logo file is an png image file (size 135x135 px). I did as it was described in the help (option 2) However, the image doesnt show up. It is currently hosted on the same dir as LocalSettings.php. Could this be a file permissions problem ?

MediaWiki 1.19.2-2 PHP 5.4.6-1ubuntu1 (apache2handler) MySQL 5.5.28-0ubuntu0.12.10.1

Wiki URL : http://myownwiki.dyndns-wiki.com/mediawiki/

Thanks R

Raja.iyer (talk)19:28, 29 November 2012

To number 2: Can you view the logo file when you point your browser to its URL?

88.130.71.23022:59, 29 November 2012

Thanks your suggestions helped. I had put the png file in the /usr/share/mediawiki/ directory while the apache2 configuration file is pointing to /var/lib/mediawiki. The logo issue is resolved.

Thanks Raja

Raja.iyer (talk)23:23, 29 November 2012

Fine. :-)

To number 1: I just tested editing your wiki. You get the error, when you click "Save" after editing a page (and the content is not saved in the DB). Do the error logs (PHP, Apache) contain more information?

88.130.71.23000:15, 30 November 2012

Thanks

This suggestion too helped. I found these in the apache error log

[Thu Nov 29 20:05:56 2012] [notice] child pid 24270 exit signal Segmentation fault (11) [Thu Nov 29 20:05:56 2012] [notice] child pid 24526 exit signal Segmentation fault (11) [Thu Nov 29 20:13:59 2012] [notice] child pid 24540 exit signal Segmentation fault (11) [Thu Nov 29 20:13:59 2012] [notice] child pid 25193 exit signal Segmentation fault (11)

The php error log is not turned on. I will figure out how tyo do it and get back here.

Thanks RI

Raja.iyer (talk)01:17, 30 November 2012

I'm having the same problem. Have you made any progress?

169.133.140.514:41, 11 December 2012
 

That's interesting. This sounds more like an apache problem then anything else.

>You get the error, when you click "Save" after editing a page

Also on preview and view changes button from edit pages. Normally diffing and normal parsing however do not seem to cause the error. POST actions also don't trigger the segfault.

Given that you have editing the Main Page of your wiki, it couldn't have always segfaulted. Did anything change?

One approach might be to try just installing a different version of apache and seeing if that changes anything


To truely debug this, what you would have to do is enable mediawiki logging (See How to debug) and add wfDebug() lines basically after everyline of EditPage.php (and maybe even Article.php) to try and figure out which line triggers the segfault (Since at that point the debug messages will stop)

Bawolff (talk)15:32, 13 December 2012
 

Have a look at

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694473

that bug seems to be what you are experiencing. Have you tried to stop and restart Apache? As far as I understand, using

apachectl restart

breaks thinks,

/etc/init.d/apache restart

fixes the problem temporarily.

78.50.106.22217:01, 23 December 2012
 
 
 
 
 

[RESOLVED] Trouble uploading after installation

After installing to the latest version of mediawiki, I am unable to upload text files, and get the following messege: Could not open lock file for "mwstore://local-backend/local-public/d/dc"

How can I fix this?

173.85.173.4201:20, 14 May 2012

I fixed it. chmod 777 images directory.

173.85.173.4202:23, 14 May 2012
Edited by another user.
Last edit: 15:40, 21 July 2012

Hi,

I've got the same problem but it is not fixed by chmod 777 images.

Ive just upgraded to 1.19 and

  1. I cannot upload image files - getting the message Could not create directory "mwstore://local-backend/local-public/archive/d/d8".
    • I have made the mediawiki/images directory and all sub-directories writeable
    • I had added $wgFileExtensions = {'gif', 'png'); to LocalSettings.php
    • I have tried incuding $wgUploadPath = '/mediawiki/images'; to LocalSetting.php
  2. Current images files stored in the wiki
    1. are displayed correctly using [[Image:pic.gif]],
    2. but not if resized e.g. [[Image:pic.gif|640px]]

Amy suggestions appreciated

Kirby

86.184.214.10120:22, 26 May 2012

le dossier mediawiki et tout son contenu devrait apartenir au même usager que celui utilisé par le service Apache... Dans mon cas, www-data... Alors j'ai fait "chown -R www-data: mediawiki" pour régler mon problème.

70.81.74.13215:02, 8 July 2012

... En passant, je ne pense pas que ce soit une bonne idée de tout le mettre en 777, ça peut causer une brèche de sécurité.

70.81.74.13215:03, 8 July 2012

My french is rusty, but I think that I agree with you.

Setting 777 permissions is really a bad idea.

On my system, I had this problem too. I got here by googling the error message.

I fixed the problem by setting the image directory's owner to apache. And since nothing but a readme was in that directory, I didn't even need a recursive chown.

 chown apache. /var/www/mediawiki119/images

That was the path on my CentOS 6.3 system.

I wonder if there is an even less crude solution.

There is. Read Manual:Configuring file uploads

DHR (talk)07:31, 4 November 2012
 
 

check your "$wgFileExtensions = {'gif', 'png');" entry

you need to create an array, something like this:

$wgFileExtensions = array('gif','png');

2001:480:10:160:0:0:0:312121:47, 7 August 2012
 

For me chmoding uploads, uploads/*, uploads/*/* uploads/*/*/* to 777 helped (but please check with someone mor wiki-security aware that this doesn't imply any threats). For you it may be images, images/*, ... as it seems our wiki has some special settings.

89.103.184.11217:20, 21 June 2012

Making things 777 means any user can write to the directory, which means if anyone somehow gets access to your server (aka security vulnrability in something else), or if there are other users of your server, they can write stuff to the images directory. A better approach is to make the images folder either owned by the apache user, or in the apache's user's group, and only let the apache user have said permissions.

Bawolff (talk)12:15, 9 July 2012
 
 

Mi sukcesis per

# chown apache -R /path/to/your/wiki/
# chgrp apache -R /path/to/your/wiki/
AceroChevalosta (talk)06:05, 14 November 2012

I just solved this issue on Fedora by installing mod_fcgid.

I hope this helps someone. :-)

Ogredeschnique (talk)23:51, 7 April 2013
 
 

Unable to edit sections/ edit window is very small

Our wiki has two problems that seem to have come up at the same time. The first: The edit button is visible at the top of the page, but not above any of the page titles. We have a specific page that everyone is trained to just click the edit above the title.

The other issue is that if you do manage to get into the edit view for a page, the windows is only a couple lines tall.

I can't provide a link to it as it's an internal, company specific wiki. Here's the wiki info though.

    MediaWiki: 1.11.0
   PHP: 5.2.6-3ubuntu4.6 (apache2handler)
   MySQL: 5.1.63-log
50.39.144.9816:14, 24 May 2013

We actually figured out that this was an error in our database, causing a couple errors including these two. We're restoring to before and that should fix it.

50.39.144.9816:35, 24 May 2013
 

Hi what time is Mediawiki 1.21.0 coming out today

Paladox2014 (talk)18:30, 15 May 2013

Despite the my intention to release 1.21 today, I have to delay it until May 18. Yesterday someone pointed out a blocker to me.

While we have a work-around for this, I don't have time to integrate it right now, so the release needs to be delayed until Saturday.

http://www.gossamer-threads.com/lists/wiki/wikitech/358697

31.19.128.1820:41, 15 May 2013

Oh ok

Paladox2014 (talk)20:50, 15 May 2013

Is Mediawiki 1.21.0 coming out today if it is what time would it be coming out today

5.66.149.6210:17, 18 May 2013

I had given a time for making the release today, but I'm running into a problem of logistics. It will probably have to wait until Monday.

MarkAHershberger(talk)14:08, 18 May 2013

what time is mediawiki 1.21.0 coming out today

86.168.53.8919:18, 20 May 2013
 

is mediawiki 1.21.0 coming out today if it is what time is it coming out

86.168.53.8920:09, 20 May 2013
 
 
 
 
 

How can I list all pages, which contain a certain text?

Hi guys,

I have pages, in which I am using certain tags like so <bug>123</bug>.

How can I get a list of all pages, which contain such a "<bug>" tag?

I know that I could just search the DB table "text", but that will also bring up old revisions. Or is there maybe an extension?

Cheers!

88.130.100.15121:13, 23 May 2013

I found the extension ReplaceText, which offers that kind of functionality.

88.130.125.11915:39, 24 May 2013
 

Install editor error

Hi guys!

I upgrade mediawiki 1.17 to 1.20.5 and all articles and pictures works fine, but editors don't work. I tried to upgrade and install last versions of: - FCKEditor - CKEditor - VisualEditor - Wysiwyg Any work. Sometimes don't editor doesn't work and other I can't see my wiki.

I can't see any error in logs files. What could be the problem? Any idea ?

Thanks

Infopsm (talk)08:39, 24 May 2013

These editors are not supported anymore. What you could try is WikiEditor, but it is not a real WYSIWYG editor....

88.130.125.11915:38, 24 May 2013
 

[RESOLVED] SQL statements that are taking 10,000 to 26,000 milliseconds

Product Versions

MediaWiki 1.21alpha (35f559d)

PHP 5.3.17 (apache2handler)

MySQL 5.1.50-MariaDB-log

Wiki: elinux.org

Occasionally, I see a massive slow down of my wiki due to SQL queries such as:


3049.511 s Time:26,600 ms Call count:1379

SELECT /­* Job­Queue­DB­:­:claim­Random Wmat */­ * FROM `job` WHERE job_­cmd = ? AND job_­token = ? AND ­(job_­random >= ?­)­ ORDER BY job_­random ASC LIMIT ?


3468.882 s Time:10,100 ms Call count:618

UPDATE /­* Job­Queue­DB­:­:claim­Random Wmat */­ `job` SET job_­token = ?,­ job_­token_­timestamp = ?,­ job_­attempts = job_­attempts+? WHERE job_­cmd = ? AND job_­id = ? AND job_­token = ?


I can't seem to find any references to this anywhere. Any thoughts on how to fix this?

Thanks Bill

Wmat (talk)20:57, 23 May 2013

bugzilla:42614?

Ciencia Al Poder (talk)09:31, 24 May 2013

Thanks you kindly, apparently my search-fu is poor.

Wmat (talk)13:56, 24 May 2013
 
 

How to enable merge account

Hi how do I enable merger count across all my wikis there is no extension for it

86.171.33.22418:59, 7 May 2013

I don't understand what you mean by "enable merger count". Do you mean that you want some statistics (which ones?) counted across your different wikis?

MarkAHershberger(talk)02:20, 8 May 2013

What I mean how do I merge your account on multiple wikis

Paladox2014 (talk)12:53, 8 May 2013

Third-party wikis have to install Extension:CentralAuth, although Manual:$wgSharedDB may be simpler.

Jasper Deng (talk)07:44, 10 May 2013

Ok will it work with different MySQL databases

90.201.14.12711:48, 10 May 2013

CentralAuth, in my opinion, works best when you don't use database prefixes and you use separate databases.

Jasper Deng (talk)17:09, 10 May 2013
 
 
 
 
 

How to use Nuke DPL for deleting based on a date?

I want to delete all information posted before the 1th of Januari 2011 on a wiki site. In the standard criteria of Nuke DPL I don't find the possibility to select on date. In the DPL manual I find the possibility to select for instance 'Last revisions before....) That would help me if it would work.. but it does not. The standard criteria which are in the page tool field do work well. Can somebody help me out? Thanks, Akke

Some information about the wiki version we use: - Product Version MediaWiki 1.22wmf4 (646544a) PHP 5.3.10-1ubuntu3.6+wmf1 (apache2handler) MySQL 5.5.30-MariaDB-mariadb1~precise-log LuaSandbox 1.6-1 Lua 5.1.4

LG47FB (talk)12:20, 24 May 2013

How to enable email notifications for comments

Hi.

A few days ago I've been searching how to get notified whenever people comment on my pages.

I will be very greatful if somebody could help me.

Regards.

190.250.168.1711:18, 16 May 2013

Not sure if "Preferences>Notifications>Email settings" is what you mean, if not please elaborate.

AKlapper (WMF) (talk)12:32, 16 May 2013
 

My goal is: When I have a Mistake or something like that I want other users can do a feedback and mediawiki automatically sends me an e-mail notification, making possible a faster adjustment.

201.232.2.11513:24, 16 May 2013
 

How to switch off saving of every version of page

By default, MediaWiki saves a full copy of every version of every page on the wiki. Is it possible to switch off saves every version. I need only last version of page? This will let me avoid DB size growth.

It there is no oportunity to switch it off. Is there posibility to remove (not compress) old versions of pages? Thanks in advance.

YS

93.182.23.8609:44, 23 May 2013

Hi!

It is not possible to stop MediaWiki from saving a complete copy of each page each time when saving the page. But what you can do is use the maintenance script DeleteOldRevisions.php, possibly as a cron job, to remove all old revisions.

88.130.100.15113:08, 23 May 2013

Supppper! It should be good enought for me. Thanks.

93.182.23.8614:51, 23 May 2013

You're welcome! :-)

88.130.100.15117:32, 23 May 2013
 
 
 

Extention:EmailToWiki. Emails didn't appear in wiki

Edited by another user.
Last edit: 14:55, 23 May 2013

We inslalled extention EmailToWiki. We are beginners. We followed instruction on extention page. But emails didn't appear in wiki. Сontents of EmailToWiki.conf file are next:

# Name of the wiki which the emails will populate (must be running on the same host)
$::wiki = "https://192.***.2.7/";
 
# The wiki template to wrap the email paramaters in
$::template = "Email";
 
# Extract just the email address portion of the FROM and TO fields
$::emailonly = 1;
 
# Don't import emails into the wiki if the From address isn't registered in the wiki
$::fromfilter = 0;
 
# If there's HTML formatting in the email don't also add <pre> sections for non-HTML versions of the content
$::html_only = 0;
 
# Details of the POP or IMAP server to check for messages
$::type = "IMAP";
$::host = "192.***.2.210";
$::user = "mediawiki@navi*****.com";
$::pass = "mwnavis2013";
 
# Delete messages after processing them
$::remove = 0;
 
# Maximum amount of message to download
$::limit = 20000000;
 
# Format of the title for the corresponding article in the wiki
$::format = "Email:\$id (\$subject)";
 
# The user the webserver runs as
$::owner = "www-data";

1; We created template Template:Email which contains: {| style="background-color:#eee;border: solid 1px black; padding: 5px" |- !align=left|From: |{{{from}}} |- !align=left|To: |{{{to}}} |- !align=left|Date: |{{{date}}} |- !align=left|Subject: |{{{subject}}} |} Could anybody help us?

Kate 23.05.2013

84.204.22.13012:03, 23 May 2013

Hi Kate, I think I heard somewhere that this extension is broken. However, do not quote me on this one. You should direct your question to its talk page, or contact the developer. Cheers

[[kgh]] (talk)14:43, 23 May 2013
 

How to know which extensions are used ?

Hi

I think that a lot of extensions on my wiki are just installed and never used. I'm trying to know which extensions are really used but I don't know how ? Someone can help me ?

Thanks in advance

Lutch 2904 (talk)07:31, 23 May 2013

Heiya, have a look at WikiAPIary. This wiki collects all sorts of useful information on wikis running MediaWiki including extensions and their usage. Also, when looking at the extension's pages on this wiki you will see a little info at the bottom of the box displaying infos on the extension which says "Check usage and version matrix". Just click on it and it will bring you where some music is. :) Cheers

[[kgh]] (talk)14:34, 23 May 2013
 

Ouch, I think I did not get your question right in the first place. Well in case an extension provides a parser function or a tag you can look for their usage on pages. Other extensions provide logging which indicate their usage. It really depends on the extension.

[[kgh]] (talk)14:47, 23 May 2013
 
First page
First page
Previous page
Previous page
Last page
Last page