<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://web.ing.unimo.it/wiki/index.php?action=history&amp;feed=atom&amp;title=Help%3AConfiguration_tips_and_tricks</id>
	<title>Help:Configuration tips and tricks - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://web.ing.unimo.it/wiki/index.php?action=history&amp;feed=atom&amp;title=Help%3AConfiguration_tips_and_tricks"/>
	<link rel="alternate" type="text/html" href="https://web.ing.unimo.it/wiki/index.php?title=Help:Configuration_tips_and_tricks&amp;action=history"/>
	<updated>2026-05-13T14:07:37Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.7</generator>
	<entry>
		<id>https://web.ing.unimo.it/wiki/index.php?title=Help:Configuration_tips_and_tricks&amp;diff=1577&amp;oldid=prev</id>
		<title>Corni: 1 revision(s)</title>
		<link rel="alternate" type="text/html" href="https://web.ing.unimo.it/wiki/index.php?title=Help:Configuration_tips_and_tricks&amp;diff=1577&amp;oldid=prev"/>
		<updated>2006-11-18T17:33:42Z</updated>

		<summary type="html">&lt;p&gt;1 revision(s)&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 17:33, 18 November 2006&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Corni</name></author>
	</entry>
	<entry>
		<id>https://web.ing.unimo.it/wiki/index.php?title=Help:Configuration_tips_and_tricks&amp;diff=1474&amp;oldid=prev</id>
		<title>Corni: 1 revision(s)</title>
		<link rel="alternate" type="text/html" href="https://web.ing.unimo.it/wiki/index.php?title=Help:Configuration_tips_and_tricks&amp;diff=1474&amp;oldid=prev"/>
		<updated>2006-11-18T17:30:34Z</updated>

		<summary type="html">&lt;p&gt;1 revision(s)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;-[[MediaWiki User&amp;#039;s Guide]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Questions ==&lt;br /&gt;
&lt;br /&gt;
* Please help! Mediawiki is stumping me on a couple of configuration issues. First, I&amp;#039;d like to rename &amp;quot;Image List&amp;quot; to &amp;quot;Upload List,&amp;quot; as has been done here. Second, I&amp;#039;d like to remove completely the links to the rss/atom feeds--how do I do this? --[[User:Artemisi link|Artemisi link]] 21:27, 12 August 2005 (UTC)&lt;br /&gt;
&lt;br /&gt;
* [[Access Restrictions]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Navigation Tabs ==&lt;br /&gt;
How do I change the &amp;quot;discussion&amp;quot; tab at the top of the page to &amp;quot;News&amp;quot;?&lt;br /&gt;
:Check the [[Special:Allmessages|System Messages]], under [[Special:Specialpages|Special pages]].&lt;br /&gt;
&lt;br /&gt;
== Configuration of Image Marker ==&lt;br /&gt;
&lt;br /&gt;
is there a way to supply an image for the box with the red x when linking to a file like a doc file or pdf file ??&lt;br /&gt;
&lt;br /&gt;
== Change lock defaults ==&lt;br /&gt;
 1. Set new pages to locked&lt;br /&gt;
What to do to make newly created pages get &amp;#039;&amp;#039;locked&amp;#039;&amp;#039; by default?&lt;br /&gt;
&lt;br /&gt;
 2. Set uploads disabled for users&lt;br /&gt;
What to do to restrict file upload to the e.g. &amp;#039;&amp;#039;sysop&amp;#039;&amp;#039; group?&lt;br /&gt;
&lt;br /&gt;
== Using external SMTP server ==&lt;br /&gt;
For using an external smtp server you need to define $wgSMTP&lt;br /&gt;
&lt;br /&gt;
 $wgSMTP = array(&lt;br /&gt;
  &amp;quot;host&amp;quot; =&amp;gt; &amp;#039;smtp.your-server.extension&amp;#039;,&lt;br /&gt;
  &amp;quot;IDHost&amp;quot; =&amp;gt; &amp;#039;your-domain.extension&amp;#039;,&lt;br /&gt;
  &amp;quot;port&amp;quot; =&amp;gt; &amp;quot;25&amp;quot;,&lt;br /&gt;
  &amp;quot;auth&amp;quot; =&amp;gt; true/false,&lt;br /&gt;
  &amp;quot;username&amp;quot; =&amp;gt; user,&lt;br /&gt;
  &amp;quot;password&amp;quot; =&amp;gt; password&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
This function relies on the [[w:PEAR|PEAR&amp;#039;s]] [http://pear.php.net/package/Mail Mail] packages. After installing you have to include the location to your include path. What is located in the beginning of LocalSettings.php:&lt;br /&gt;
&lt;br /&gt;
 ini_set( &amp;quot;include_path&amp;quot;, &amp;quot;.:$IP:$IP/includes:$IP/languages:/usr/share/php&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
The last part (&amp;#039;&amp;#039;&amp;#039;/usr/share/php&amp;#039;&amp;#039;&amp;#039;) is pointing to the directory where Mail.php is&lt;br /&gt;
&lt;br /&gt;
=== Comment for v1.6.7 ===&lt;br /&gt;
I tried this in mediawiki 1.6.7 on Windows and found that there you have to change the $path array (in LocalSettings.php) instead:&lt;br /&gt;
&lt;br /&gt;
 $path = array( $IP, &amp;quot;$IP/includes&amp;quot;, &amp;quot;$IP/languages&amp;quot;, &amp;quot;C:\PHP\PEAR&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;C:\PHP\PEAR&amp;quot; is the location of Mail.php.&lt;br /&gt;
&amp;lt;br&amp;gt;Note that there are two files of that name: Mail.php in the PEAR root and mail.php in subdirectory &amp;quot;Mail&amp;quot;. I set the include path to the PEAR root and it works.&lt;br /&gt;
&lt;br /&gt;
=== Note for Windows servers ===&lt;br /&gt;
&lt;br /&gt;
PEAR must not be downloaded from php.net. Use go-pear.bat found in the PHP folder (usually C:\PHP) and then run &amp;#039;&amp;#039;&amp;#039;c:\pear\pear.bat -install mail&amp;#039;&amp;#039;&amp;#039; which will download and install Mail automatically.&lt;/div&gt;</summary>
		<author><name>Corni</name></author>
	</entry>
</feed>