summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-03-23 05:17:24 +0000
committerTim Harder <radhermit@gentoo.org>2012-03-23 05:17:24 +0000
commit6d72e0652894697487e9b8fa302d057a1f026e91 (patch)
tree1de86ff01232bde9c4d1f47082ee85863d7c86e2 /www-apps/mediawiki/files
parentVersion bump. (diff)
downloadgentoo-2-6d72e0652894697487e9b8fa302d057a1f026e91.tar.gz
gentoo-2-6d72e0652894697487e9b8fa302d057a1f026e91.tar.bz2
gentoo-2-6d72e0652894697487e9b8fa302d057a1f026e91.zip
Remove old.
(Portage version: 2.2.0_alpha92/cvs/Linux x86_64)
Diffstat (limited to 'www-apps/mediawiki/files')
-rw-r--r--www-apps/mediawiki/files/postinstall-1.13-en.txt88
1 files changed, 0 insertions, 88 deletions
diff --git a/www-apps/mediawiki/files/postinstall-1.13-en.txt b/www-apps/mediawiki/files/postinstall-1.13-en.txt
deleted file mode 100644
index 4fbc24755714..000000000000
--- a/www-apps/mediawiki/files/postinstall-1.13-en.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-To complete installation you need to proceed the following steps:
-=================================================================
-
-1. Temporarily make the MediaWiki config/ directory writable to the user the
-web server is running as. The quickest way is to make the directory world
-writable. For example:
-
-$ cd ${MY_INSTALLDIR}
-$ chmod a+w config
-
-
-2. Configure database.
-a.) If you know the root password on your database, the MediaWiki installation
-script can create a new database for you.
-
-b.) If you don't know the root password, MediaWiki still needs database to
-work with. So, please, read the following link and find solution which suits
-your needs best:
-
-http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki#Create_a_database
-
-
-3. Now continue the installation through web browser by accessing the
-following page:
-
-lynx http://${VHOST_HOSTNAME}${VHOST_APPDIR}/config/
-
-
-4. After the setup script has finished running successfully, a file called
-LocalSettings.php is created in the "config" directory. Move this file to the
-root wiki directory (${MY_INSTALLDIR}):
-
-$ mv config/LocalSettings.php .
-
-Set stringent permissions on the LocalSettings.php file:
-
-$ chown <webserver-user>:root LocalSettings.php
-$ chmod 600 LocalSettings.php
-
-And delete the "config" directory:
-
-$ rm -rf config
-
-
-5. Once you have done the above, your wiki should be ready to use!
-
-http://${VHOST_HOSTNAME}${VHOST_APPDIR}/
-
-
-Enabling Optional Features and other configuration
-==================================================
-
-Allow images and other files to be uploaded through the wiki
-------------------------------------------------------------
-
-If you wish to enable images and other files to be uploaded through wiki then
-edit the LocalSettings.php file and set \$wgEnableUploads to 'true':
-
-\$wgEnableUploads = true;
-
-Now if MediaWiki was built with the imagemagick USE-flag the directory
-permissions are correct, otherwise install ImageMagick and adjust permissions
-on the images directory to allow the web server to write. For example:
-
-$ chown <webserver-user>:<webserver-group> ${MY_INSTALLDIR}/images
-
-IMPORTANT: Uploads need to be set up properly in order to be secure! For more
-details take a look at the following page:
-
-http://www.mediawiki.org/wiki/Manual:$wgEnableUploads
-
-
-Math Support
-------------
-
-If you wish to enable the math support then you need to build MediaWiki with
-'math' USE-flag enabled or required support executable will no be present.
-After you've installed MediaWiki with math USE-flag enabled edit
-LocalSettings.php file to set the \$wgUseTeX to 'true':
-
-\$wgUseTeX = true;
-
-
-Other
------
-
-For other tweaks, continue with the following:
-http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki#See_also