Difference between revisions of "MediaWiki/Presentation"

From Freephile Wiki
Jump to navigation Jump to search
(→‎Resources: adds links)
(adds configuration hint)
Line 115: Line 115:
 
# Import/Export  (TODO talk about exporting to text)
 
# Import/Export  (TODO talk about exporting to text)
 
# Special pages
 
# Special pages
##<pre>[[Special:ListGroupRights]]</pre>  
+
##<pre>[[Special:ListGroupRights]]</pre>
 
# Image Galleries like [[Special:NewImages]]
 
# Image Galleries like [[Special:NewImages]]
 
# Protection (lock a page) Not to be confused with 'versions' that helps with things like versioned documentation for software products.
 
# Protection (lock a page) Not to be confused with 'versions' that helps with things like versioned documentation for software products.
Line 143: Line 143:
  
 
== Administering it ==
 
== Administering it ==
* Custom menu
+
The LocalSettings.php file is the main point of configuration for the wiki administrator.
 +
{{Messagebox
 +
| type = restricted
 +
| text = You can remove the database configuration lines into it's own file and then include that file from LocalSettings so that you now can commit LocalSettings to your version control repository without revealing the db credentials.}}
 +
<source lang="php">
 +
## Database settings
 +
## moved to a separate file so that we can track changes to the general config in version control, without checking in our db credentials
 +
require_once( "$IP/DatabaseSettings.php" ); 
 +
</source>
  
 
== Developing it ==
 
== Developing it ==

Revision as of 13:21, 14 January 2009