Mediawiki Notes
From Docunext Technology Wiki
Contents |
My Experience with MediaWiki
- Heavy data model - will it level off eventually? 5MB for a practically empty db?
- Pretty slow when used without memcached, much much faster when used with memcached
- Do the page sections which are separately editable keep the database smaller?
- After about 12 months of using MediaWiki, I have to say I'm really pleased with it. It has the capabilities I need, and is extensible in ways that I find helpful. I particularly like the ability to edit page sections, as well as create categories. It would be nice if there were some better plug-in and theme capabilities, but for now I'm happy.
Things I like about MediaWiki
- You can lock pages
- Has some bad-bot functions built-in, wicked cool
- The minor edit checkbox
Lingering Questions about MediaWiki
- Why can't the admin edit the logo from the web interface?
- How to integrate plugins, like bad behavior?
- Would a remote memcached help performance if a local server is not available? i.e. dreamhost.com? Urg, dreamhost php doesn't have support for memcached. They allow you to build your own, but I'm not going to bother considering network latency.
MISC MediaWiki Stuff
Redirects
#REDIRECT [[New Page Name]]
Navigation Bar
MediaWiki:Sidebar
Create a new User
Special:Userlogin
Appearance
- http://meta.wikimedia.org/wiki/Skins
- MediaWiki Sitemap Generator
- http://wiki.evernex.com/index.php?title=Blocking_Spam_in_Mediawiki
- http://carma.astro.umd.edu/wiki/index.php/Mediawiki_spam_protection
Disable MediaWiki Registration
$wgGroupPermissions['*']['createaccount'] = false;
MediaWiki Require Login to Edit
$wgGroupPermissions['*']['edit'] = false;