Katharina Wolkwitz wrote: > Hi all, > > I'm looking for a way to find out how many internal links are in use inside > my wiki. > > Is there an extension that does that kind of "statistics"? > > Alternatively I'm looking for a way to search inside the wiki-text for > occurrences of "[[" (or other special syntaxes). Perhaps I can search directly > in the database, but I'm not sure in which table I'd have to look. > > I'm using mediawiki 1.15.1 > > Thanks! > Katharina Wolkwitz > > > > _______________________________________________ > MediaWiki-l mailing list > [email protected] > https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
This query may take care of it: select count(*) from mediawiki.pagelinks ; -- Sean McAfee Senior Systems Engineer _______________________________________________ MediaWiki-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
