IGOS Nusantara dan MediaWiki: Perbedaan revisi
Dari IGNwiki
(→Pasang Logo) |
|||
Baris 44: | Baris 44: | ||
Secara default Wiki memiliki bentuk URL (contoh) sebagai berikut http://igos-nusantara.or.id/wiki/index.php?title=IGOS_Nusantara_dan_MediaWiki&action=edit | Secara default Wiki memiliki bentuk URL (contoh) sebagai berikut http://igos-nusantara.or.id/wiki/index.php?title=IGOS_Nusantara_dan_MediaWiki&action=edit | ||
− | Ada dua cara untuk meringkas URL: | + | Ada dua cara untuk meringkas URL yaitu: |
− | + | === Cara1 Meringkas URL Wiki dengan akses root === | |
− | # [[Meringkas URL Wiki TANPA akses root]] | + | |
+ | ==== Sesuaikan LocalSettings.php ==== | ||
+ | Tambahkan di bagian akhir dari LocalSettings.php | ||
+ | $wgScriptPath = "/wiki"; # Path to the actual files. This should already be there | ||
+ | $wgArticlePath = "/wiki/$1"; # Virtual path. This directory MUST be different from the one used in $wgScriptPath | ||
+ | $wgUsePathInfo = true; # Enable use of pretty UR | ||
+ | |||
+ | ==== Buat file robots.txt ==== | ||
+ | Buat file robots.txt dan simpan di folder awal situs | ||
+ | User-agent: * | ||
+ | Disallow: /w/ | ||
+ | Disallow: /wiki/Special:Search | ||
+ | Disallow: /wiki/Special:Random | ||
+ | |||
+ | === [[Meringkas URL Wiki TANPA akses root]] === | ||
== BAHAN == | == BAHAN == | ||
[[bahan]] | [[bahan]] |
Revisi per 2 Februari 2010 11.15
Informasi Wiki yang akan dibuat:
- Nama wiki adalah IGNwiki
- Wiki dibuat di server lokal dengan IP address lokal 192.168.1.1
- URL http://192.168.1.1/wiki/
Daftar isi
Pasang MediaWiki
yum install mediawiki
Buat database
create database IGNwiki; grant index, create, select, insert, update, delete, alter, lock tables on IGNwiki.* to 'IGNwiki'@'localhost' identified by 'rhsBangeTd3H';
Sesuaikan mediawiki.conf
Ada di /etc/httpd/conf.d/mediawiki.conf
# Isi berkas: /etc/httpd/conf.d/mediawiki.conf Alias /wiki/skins /usr/share/mediawiki/skins Alias /wiki /var/www/wiki/index.php Alias /wiki-images /var/www/wiki/images
Setup
http://192.168.1.1/wiki/config/index.php
- Wiki name: IGNwiki
- Admin username: admin
- Password: ---rhs---
- Password confirm: ---rhs---
- Database name: IGNwiki
- DB username: IGNwiki
- DB password: rhsBangeTd3H
- DB password confirm: rhsBangeTd3H
Pindahkan LocalSettings.php
Semula ada di /var/www/wiki/config/LocalSettings.php pindahkan ke /var/www/wiki/LocalSettings.php
# mv /var/www/wiki/config/LocalSettings.php /var/www/wiki/LocalSettings.php
Pasang Logo
Nama logo (misal) ign-wiki.png harus ditempatkan di /var/www/wiki/images/
Setelah logo tersimpan di /var/www/wiki/images/ign-wiki.png sesuaikan LocalSettings.php
$wgLogo = "/ign2010/wiki-images/ign-wiki.png";
Meringkas URL Wiki
Secara default Wiki memiliki bentuk URL (contoh) sebagai berikut http://igos-nusantara.or.id/wiki/index.php?title=IGOS_Nusantara_dan_MediaWiki&action=edit
Ada dua cara untuk meringkas URL yaitu:
Cara1 Meringkas URL Wiki dengan akses root
Sesuaikan LocalSettings.php
Tambahkan di bagian akhir dari LocalSettings.php
$wgScriptPath = "/wiki"; # Path to the actual files. This should already be there $wgArticlePath = "/wiki/$1"; # Virtual path. This directory MUST be different from the one used in $wgScriptPath $wgUsePathInfo = true; # Enable use of pretty UR
Buat file robots.txt
Buat file robots.txt dan simpan di folder awal situs
User-agent: * Disallow: /w/ Disallow: /wiki/Special:Search Disallow: /wiki/Special:Random