summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Trottier <tchiwam@gentoo.org>2007-01-09 10:27:14 +0000
committerPhilippe Trottier <tchiwam@gentoo.org>2007-01-09 10:27:14 +0000
commit7c49baf44b5247433587ab10dc187636247bfca5 (patch)
tree4709dd659c0d3eda25e57ef062f0ae4edfa80057 /www-apps/mediawiki/files
parentbug 161091 (diff)
downloadgentoo-2-7c49baf44b5247433587ab10dc187636247bfca5.tar.gz
gentoo-2-7c49baf44b5247433587ab10dc187636247bfca5.tar.bz2
gentoo-2-7c49baf44b5247433587ab10dc187636247bfca5.zip
bug 161091
(Portage version: 2.1.1-r2) (Unsigned Manifest commit)
Diffstat (limited to 'www-apps/mediawiki/files')
-rw-r--r--www-apps/mediawiki/files/digest-mediawiki-1.5.83
-rw-r--r--www-apps/mediawiki/files/postinstall-1.4-en.txt58
2 files changed, 0 insertions, 61 deletions
diff --git a/www-apps/mediawiki/files/digest-mediawiki-1.5.8 b/www-apps/mediawiki/files/digest-mediawiki-1.5.8
deleted file mode 100644
index ab25b2129a38..000000000000
--- a/www-apps/mediawiki/files/digest-mediawiki-1.5.8
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 1eef94157377fa8c3d049877a27c0163 mediawiki-1.5.8.tar.gz 2287928
-RMD160 ecb530a5aa16ac90d87667652fdefc6424a36e38 mediawiki-1.5.8.tar.gz 2287928
-SHA256 28dbfc2c1602b1039a7408457f7774615e92553ac1b276e7aa55c34458708b61 mediawiki-1.5.8.tar.gz 2287928
diff --git a/www-apps/mediawiki/files/postinstall-1.4-en.txt b/www-apps/mediawiki/files/postinstall-1.4-en.txt
deleted file mode 100644
index b1da07d51d95..000000000000
--- a/www-apps/mediawiki/files/postinstall-1.4-en.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-
-Completing setup:
-
-To complete installation cd into the MediaWiki install location, but
-make sure to start mysql first with:
-
-$ /etc/init.d/mysql start
-
-$ cd /var/www/localhost/htdocs/mediawiki/
-
-The host directory, localhost, may change depending on your installation.
-
-Then 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:
-
-$ chmod a+w config
-
-Then access it, for example:
-
-lynx http://localhost/mediawiki/config/
-
-After setup move the newly created LocalSettings.php from the config/
-directory to the main mediawiki directory, for example:
-
-$ mv config/LocalSettings.php .
-
- Remember to restore safe permissions to the MediaWiki config/ and
- LocalSettings.php (which contains clear-text passwords).
- chmod a-w config
- chmod ug=r,o= LocalSettings.php
- chown root:apache LocalSettings.php
-
-After these steps MediaWiki should be accesable at
-http://localhost/mediawiki/
-
-Enabling Optional Features:
-
-If you wish to enable image uploads then you must manually edit the
-LocalSettings.php file to uncomment the \$wgDisableUploads line.
-If MediaWiki was built with the imagemagick USE-flag the directory
-permissions are correct, otherwise you must install ImageMagick and
-also adjust permissions on the images directory to allow the server
-to write. For example:
-
-$ chown apache:apache /var/www/localhost/htdocs/mediawiki/images
-
-Math Support:
-
-If you wish to enable the math support then you must manually edit"
-the LocalSettings.php file to uncomment the \$wgUseTeX line.
-MediaWiki must have been built with the math USE-flag enabled or the
-necessary support executable will not be present.
-You may also have to execute
-
-$ texconfig dvips printcmd -
-
-if you have not configured tetex before.