KJams Wiki:About: Difference between revisions
Jump to navigation
Jump to search
| Line 46: | Line 46: | ||
* added google site map | * added google site map | ||
==SVN== | ==SVN== | ||
http://agileshrugged.com/blog/?p=14 | http://agileshrugged.com/blog/?p=14<br> | ||
http://www.makkintosshu.com/journal/automating-fixdavsvn | http://www.makkintosshu.com/journal/automating-fixdavsvn<br> | ||
Revision as of 21:39, 5 April 2010
- Version info
- PHP Info Page
- Auth_phpbb.php v 1.5 (released 2005-09-12)
- Overides includes/AuthPlugin.php functions to provide authentication against phpBB user table for wiki edit access.
- Added the following lines to includes/templates/Userlogin.php at line 19 to provide account creation info for new users.
<?php
// Begin Edit
// Added link to forum with text for signup.
// Author: Brad on 20050920 ?>
<h2>Create an Account:</h2>
<p>To create an account please <a href="https://www.kjams.com/forum/profile.php?mode=register">register</a> in our forum.
Once you have registered send an email to the Wiki Group Moderator requesting a Wiki membership.</p>
<?php
// End Edit ?>
- Addes the following lines to LocalSettings.php at line 2 to force SSL for logins.
// Begin Edit
// We are only operating on port 443 (SSL) for logins
// Author: Brad on 20050920
if($_SERVER['SERVER_PORT'] != '443' && $_REQUEST['title'] == 'Special:Userlogin')
{
header('Location: https://www.kjams.com'.$_SERVER['REQUEST_URI']);
}
elseif($_SERVER['SERVER_PORT'] == '443' && $_REQUEST['title'] != 'Special:Userlogin')
{
header('Location: http://www.kjams.com'.$_SERVER['REQUEST_URI']);
}
// End Edit
- installed pear so php can send mail with my store script
- Added apache redirect for http://www.kjams.com/wiki/Help:Editing so it hits http://meta.wikimedia.org/wiki/Help:Editing.
- Upgraded to PHP Version 5.0.5-dev and MySQL Version 5.0.16.
- added google maps http://meta.wikimedia.org/wiki/User:Emiller/GoogleMapsExtension. Note: if you change your GoogleMapsKey (eg: changing domain) then you have to re-save every page that has a map, otherwise it will use the old, cached key.
- edit MediaWiki:Edithelppage and change "Help:Editing" to the "http://meta.wikimedia.org/wiki/Help:Editing" without quotes
- added email obfuscator, be sure to add this into /skins/MonoBook.php in the <head> section:
<script type="text/javascript" src="/w/extensions/MailObfuscator.js"></script>
- added Navigational Images http://meta.wikimedia.org/wiki/User:Jbennet/Navigational_images
- for the forums: added Admin Userlist
- added
multilang extensionUpdate: if necessary, the replacement is AutoLanguage, which has not been installed. - added ParserFunctions and Languages Template
- create a new page Template:Lowercase and add the following:
{{DISPLAYTITLE:{{#if:{{NAMESPACE}}|{{NAMESPACE}}:|}}{{lcfirst:{{PAGENAME}}}}}}
- enabled email notifications (in DefaultSettings.php, search for "enotif", set them to TRUE)
- Added Google Analytics
using the Analytics Extensionusing Wiki-Wide Analytics plus Analytics Links. - added EmbedVideo for youtube / google video etc
- added google site map
SVN
http://agileshrugged.com/blog/?p=14
http://www.makkintosshu.com/journal/automating-fixdavsvn