zelulax schrieb:
is there a way to show the number of articles OUTSIDE the wiki?
You can extract this value from the mediawiki database (ss_total_pages in table site_stats). With php it would looking something like that:
connect to the db and then: $query = "SELECT * FROM `site_stats`"; $result = mysql_query($query) or die(); // die("Error: " . mysql_error())
$line = mysql_fetch_array($result, MYSQL_ASSOC); echo $line["ss_total_pages"];
Greetings Ponte