Changes

From SME Server
Jump to navigationJump to search
108 bytes added ,  16:46, 10 May 2010
m
no edit summary
Line 6: Line 6:  
MoinMoin is an advanced, easy to use and extensible WikiEngine with a large community of users. Said in a few words, it is about collaboration on easily editable web pages.
 
MoinMoin is an advanced, easy to use and extensible WikiEngine with a large community of users. Said in a few words, it is about collaboration on easily editable web pages.
   −
I like it because it has a nice gui edit mode.
+
I like it because it has a nice gui edit mode. I have also recently discovered that it supports a wide range of embedded functions like videos. Here is a list from the MoinMoin wiki of supported embedded applications; x-shockwave-flash, x-dvi, postscript, pdf, ogg, vnd.visio, x-ms-bmp, svg+xml, tiff, x-photoshop, mpeg, midi, x-wav, fli, mpeg, quicktime, x-msvideo, 
 +
x-pdb, x-vrml.
   −
This is my first wiki page using this software, so any [[constuctive]] criticism regarding formatting is appreciated. Any help regarding  the technical content is als appreciated.
  −
----
   
===Installation===
 
===Installation===
   −
How to install and configure MoinMoin on SME 7.0
+
How to install and configure MoinMoin on SME Server.
 
  −
 
  −
<ol><li>Download and Install MoinMoin
     −
Download MoinMoin 1.6.3 from MoinMoin 1.6.3 tar.gz, released 2008-04-20.
  −
MD5 checksum: 081aa0dd82b4220c8ff28a9a751bad7c moin-1.6.3.tar.gz
     −
Extract the tarball and install MoinMoin on your server by executing on a command line 'python setup.py' from the extracted source directory. This will install it to the site-packages directory of python. (If this isn't self-explanitory to you, please see http://moinmoin.wikiwikiweb.de/HelpOnInstalling/BasicInstallation)
+
<ol><li>Download MoinMoin from [http://moinmo.in/MoinMoinDownload the MoinMoin website].
 +
</li><li>Extract the tarball and install MoinMoin on your server by executing on a command line 'python setup.py' from the extracted source directory. This will install it to the site-packages directory of python. (If this isn't self-explanatory to you, please see http://moinmo.in/HelpOnInstalling/BasicInstallation).
 
</li><li>Create an Ibay and Copy Files
 
</li><li>Create an Ibay and Copy Files
    
Create a new ibay for your wiki (make sure you enable web access and CGI). In this example we will use the name 'testwiki' for the ibay. (If you wish to use a different name, please substitute it where you see 'testwiki' anywhere below)</li>
 
Create a new ibay for your wiki (make sure you enable web access and CGI). In this example we will use the name 'testwiki' for the ibay. (If you wish to use a different name, please substitute it where you see 'testwiki' anywhere below)</li>
 
<li>Execute the following on a SME Server shell:
 
<li>Execute the following on a SME Server shell:
cd /home/e-smith/files/ibays/testwiki
+
<pre>
cp -r /usr/share/moin/data cgi-bin
+
cd /home/e-smith/files/ibays/testwiki
cp -r /usr/share/moin/underlay cgi-bin
+
cp -r /usr/share/moin/data cgi-bin
cp /usr/share/moin/config/wikiconfig.py cgi-bin
+
cp -r /usr/share/moin/underlay cgi-bin
cp /usr/share/moin/server/moin.cgi cgi-bin
+
cp /usr/share/moin/config/wikiconfig.py cgi-bin
rm html/index.html
+
cp /usr/share/moin/server/moin.cgi cgi-bin
cp -r /usr/share/moin/htdocs/* html
+
rm html/index.html
chown www cgi-bin/data -R
+
cp -r /usr/share/moin/htdocs/* html
chown www cgi-bin/underlay -R
+
chown www cgi-bin/data -R
 +
chown www cgi-bin/underlay -R</pre>
 
</li></ol>
 
</li></ol>
 +
 
===Configuration===
 
===Configuration===
    
<ol><li>Edit wikiconfig.py in your cgi-bin directory. Find and change the following lines:
 
<ol><li>Edit wikiconfig.py in your cgi-bin directory. Find and change the following lines:
   −
sitename = u'My Test Wiki'
+
<pre>sitename = u'My Test Wiki'
logo_string = u'<img src="/testwiki/common/moinmoin.png" alt=MoinMoin Logo">'
+
logo_string = u'<img src="/testwiki/common/moinmoin.png" alt=MoinMoin Logo">'
url_prefix = '/testwiki'
+
url_prefix = '/testwiki'</pre>
    
</li><li>Edit index.html in the html directory. There are two occurrences of 'moin.cgi' in this file. They need to be prepended by 'cgi-bin/' so that they say 'cgi-bin/moin.cgi'
 
</li><li>Edit index.html in the html directory. There are two occurrences of 'moin.cgi' in this file. They need to be prepended by 'cgi-bin/' so that they say 'cgi-bin/moin.cgi'
Line 47: Line 44:  
</li><li>Test the Wiki in Your Browser
 
</li><li>Test the Wiki in Your Browser
   −
Now open up a browser window and go to http://your-server/testwiki
+
Now open up a browser window and go to <nowiki>http://your-server/testwiki</nowiki>.
    
If the installation has worked then you should see 'My Test Wiki' in the title bar and MoinMoin displaying in the browser. If only text shows up in the browser and no images, check that you have correctly set the url_prefix in wikiconfig.py as described above. If you have any other errors, please check that have followed all the instructions correctly.</li></ol>
 
If the installation has worked then you should see 'My Test Wiki' in the title bar and MoinMoin displaying in the browser. If only text shows up in the browser and no images, check that you have correctly set the url_prefix in wikiconfig.py as described above. If you have any other errors, please check that have followed all the instructions correctly.</li></ol>
Line 53: Line 50:  
===Further Configuration and Administration===
 
===Further Configuration and Administration===
   −
Now that the wiki in installed and working, go to http://moinmoin.wikiwikiweb.de/HelpOnConfiguration and read up on further tasks to be performed if you are not already familiar with the software. Most importantly you will want to create a login for yourself and assign yourself admin rights.
+
Now that the wiki in installed and working, go to http://moinmo.in/HelpOnConfiguration and read up on further tasks to be performed if you are not already familiar with the software. Most importantly you will want to create a login for yourself and assign yourself admin rights.
    
You may also wish to change permissions on the files in the i-bay to suit your security and access requirements.
 
You may also wish to change permissions on the files in the i-bay to suit your security and access requirements.
 
----
 
----
 
[[Category:Howto]]
 
[[Category:Howto]]
 +
[[Category:Social Media Apps]]

Navigation menu