Topic on Manual talk:Short URL

Blank Page after follow Other how-to mini-guides

9
Yakusa47 (talkcontribs)

These methods require that you have access to the server configuration. If you are on a shared host, you most likely don't. In this case you will be required to use a method that requires "no root access". You can jump directly to the MediaWiki ShortURL Builder tool and follow the on screen instructions after clicking on "I don't have root access".

Recommendation from MediaWiki ShortURL Builder: These instructions can be used to configure the wiki at http://hmipedia.org/index.php?title=Halaman_Utama with the article path "/wiki/$1" giving you urls like http://hmipedia.org/wiki/Main_Page. If you want a different article path you can fill in a new one here Article Path:/wiki/$1

/.htaccess RewriteEngine On RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/index.php [L]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d RewriteRule ^/?images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2 [L,QSA,B]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d RewriteRule ^/?images/thumb/archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2&archived=1 [L,QSA,B]

/LocalSettings.php

    1. The URL base path to the directory containing the wiki;
    2. defaults for all runtime URL paths are based off of this.
    3. For more information on customizing the URLs please see:
    4. http://www.mediawiki.org/wiki/Manual:Short_URL

$wgScriptPath = ""; $wgScriptExtension = ".php"; $wgArticlePath = "/wiki/$1"; $wgUsePathInfo = true;

    1. To enable image uploads, make sure the 'images' directory
    2. is writable, then set this to true:

$wgEnableUploads = true; $wgGenerateThumbnailOnParse = false;

Server type: Apache Path to index.php:/index.php

Mediawiki version:MediaWiki 1.24 (upgrade from 1.20)

After edit and safe of .htaccess and LocalSettings.php, mywiki generate url like this http://hmipedia.org/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/Halaman_Utama

After refresh page some times, my wiki becomes blank page. I deleted .htaccess and revert back LocalSettings.php my wiki can be accessed again http://hmipedia.org/index.php?title=Halaman_Utama.

I am not sure about this. Am I wrong in implement those guide? Thanks for your help.

Dantman (talkcontribs)

Could you show me the actual .htaccess and LocalSettings.php config you used?

(This time wrap them in <pre></pre> tags.)

Yakusa47 (talkcontribs)

Actual LocalSettings.php

<?php
# This file was automatically generated by the MediaWiki 1.20.2
# installer. If you make manual changes, please keep track in case you
# need to recreate them later.
#
# See includes/DefaultSettings.php for all configurable settings
# and their default values, but don't forget to make changes in _this_
# file, not there.
#
# Further documentation for configuration settings may be found at:
# http://www.mediawiki.org/wiki/Manual:Configuration_settings

# Protect against web entry
if ( !defined( 'MEDIAWIKI' ) ) {
	exit;
}

## Uncomment this to disable output compression
# $wgDisableOutputCompression = true;

$wgSitename      = "HMIpedia";
$wgMetaNamespace = "HMIpedia";

## The URL base path to the directory containing the wiki;
## defaults for all runtime URL paths are based off of this.
## For more information on customizing the URLs
## (like /w/index.php/Page_title to /wiki/Page_title) please see:
## http://www.mediawiki.org/wiki/Manual:Short_URL
## $wgArticlePath      = "/$1 #or "{$wgScript}/$1"; or "wiki/$1";
## $wgUsePathInfo      = true;
$wgScriptPath       = "";
$wgScriptExtension  = ".php";


## The protocol and server name to use in fully-qualified URLs
$wgServer           = "http://hmipedia.org";

## The relative URL path to the skins directory
$wgStylePath        = "$wgScriptPath/skins";

## The relative URL path to the logo.  Make sure you change this from the default,
## or else you'll overwrite your logo when you upgrade!
# $wgLogo = "$wgScriptPath/resources/assets/wiki.png";
$wgLogo = "{$wgScriptPath}/Lambang_HMI2.jpg";

## UPO means: this is also a user preference option

$wgEnableEmail      = true;
$wgEnableUserEmail  = true; # UPO

$wgEmergencyContact = "admin@hmipedia.org";
$wgPasswordSender   = "admin@hmipedia.org";

$wgEnotifUserTalk      = true; # UPO
$wgEnotifWatchlist     = true; # UPO
$wgEmailAuthentication = true;

## Database settings
$wgDBtype           = "mysql";
$wgDBserver         = "localhost";
$wgDBname           = "mydbname";
$wgDBuser           = "mydbuser";
$wgDBpassword       = "mydbpassword";

# MySQL specific settings
$wgDBprefix         = "id"; # id

# MySQL table options to use during installation or update
$wgDBTableOptions   = "ENGINE=MyISAM, DEFAULT CHARSET=binary";

# Experimental charset support for MySQL 5.0.
$wgDBmysql5 = false;

## Shared memory settings
$wgMainCacheType    = CACHE_NONE;
$wgMemCachedServers = array();

## To enable image uploads, make sure the 'images' directory
## is writable, then set this to true:
$wgEnableUploads  = true;
$wgUseImageMagick = true;
$wgImageMagickConvertCommand = "/usr/bin/convert";
$wgGenerateThumbnailOnParse = false;

# InstantCommons allows wiki to use images from http://commons.wikimedia.org
$wgUseInstantCommons  = true;

## If you use ImageMagick (or any other shell command) on a
## Linux server, this will need to be set to the name of an
## available UTF-8 locale
$wgShellLocale = "en_US.utf8";

## If you want to use image uploads under safe mode,
## create the directories images/archive, images/thumb and
## images/temp, and make them all writable. Then uncomment
## this, if it's not already uncommented:
#$wgHashedUploadDirectory = false;

## Set $wgCacheDirectory to a writable directory on the web server
## to make your wiki go slightly faster. The directory should not
## be publically accessible from the web.
#$wgCacheDirectory = "$IP/cache";

# Site language code, should be one of the list in ./languages/Names.php
$wgLanguageCode = "id";

$wgSecretKey = "xxx";

# Site upgrade key. Must be set to a string (default provided) to turn on the
# web installer while LocalSettings.php is in place
$wgUpgradeKey = "xxx";

## For attaching licensing metadata to pages, and displaying an
## appropriate copyright notice / icon. GNU Free Documentation
## License and Creative Commons licenses are supported so far.
$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
$wgRightsUrl  = "http://creativecommons.org/licenses/by-sa/3.0/";
$wgRightsText = "Creative Commons Attribution Share Alike";
$wgRightsIcon = "{$wgStylePath}/common/images/cc-by-sa.png";

# Path to the GNU diff3 utility. Used for conflict resolution.
$wgDiff3 = "/usr/bin/diff3";

## Default skin: you can change the default skin. Use the internal symbolic
## names, ie 'vector', 'monobook':
$wgDefaultSkin = "vector";

# Enabled skins.
# The following skins were automatically enabled:
require_once "$IP/skins/CologneBlue/CologneBlue.php";
require_once "$IP/skins/Modern/Modern.php";
require_once "$IP/skins/MonoBook/MonoBook.php";
require_once "$IP/skins/Vector/Vector.php";


# End of automatically generated settings.
# Add more configuration options below.

# Enabled Extensions. Most extensions are enabled by including the base extension file here
# but check specific extension documentation for more details
# The following extensions were automatically enabled:
require_once( "$IP/extensions/ConfirmEdit/ConfirmEdit.php" );
require_once( "$IP/extensions/Gadgets/Gadgets.php" );
require_once( "$IP/extensions/Nuke/Nuke.php" );
require_once( "$IP/extensions/ParserFunctions/ParserFunctions.php" );
require_once( "$IP/extensions/Renameuser/Renameuser.php" );
require_once( "$IP/extensions/WikiEditor/WikiEditor.php" );

require_once( "$IP/extensions/Cite/Cite.php" );
require_once("$IP/extensions/ImageMap/ImageMap.php");
require_once("$IP/extensions/AbuseFilter/AbuseFilter.php");
require_once "$IP/extensions/SpamBlacklist/SpamBlacklist.php";

## AutoConfirm Configuration
$wgAutoConfirmAge = 86400*3;
$wgAutoConfirmCount = 5;
$wgGroupPermissions['*']['createpage'] = false;
$wgGroupPermissions['autoconfirmed']['createpage'] = true;

## QuestyCaptcha Configuration
require_once("$IP/extensions/ConfirmEdit/QuestyCaptcha.php"); 
$wgCaptchaClass = 'QuestyCaptcha';
$wgCaptchaQuestions[] = array( 'question' => 'A question?', 'answer' => 'An answer!' );
$wgCaptchaQuestions[] = array( 'question' => 'Siapakah nama pendiri HMI?', 'answer' => 'Lafran Pane' );
$wgCaptchaQuestions[] = array( 'question' => "Apakah nama situs wiki ini?", 'answer' => "$wgSitename" );
$wgCaptchaQuestions[] = array( 'question' => 'Tuliskan kata rahasia, "5 februari", disini:', 'answer' => '5 februari' );
$wgCaptchaQuestions[] = array( 'question' => 'Tahun berapa HMI berdiri?', 'answer' => '1947' );
$wgCaptchaQuestions[] = array( 'question' => 'Siapakah nama ketua umum pbhmi yang juga pernah menjabat ketua umum partai demokrat?', 'answer' => 'Anas Urbaningrum' );
$wgCaptchaQuestions[] = array( 'question' => 'Huruf "I" dalam gambar ini singkatan dari? <img src="http://hmipedia.org/wiki/Berkas:Lambang_HMI.jpg" alt="" title="Himpunan Mahasiswa Islam" />', 'answer' => 'Islam' );

## ConfirmEdit skipcaptcha
$wgGroupPermissions['*'            ]['skipcaptcha'] = false;
$wgGroupPermissions['user'         ]['skipcaptcha'] = false;
$wgGroupPermissions['autoconfirmed']['skipcaptcha'] = false;
$wgGroupPermissions['bot'          ]['skipcaptcha'] = true; // registered bots
$wgGroupPermissions['sysop'        ]['skipcaptcha'] = true;

## ConfirmEdit confirmed their email
$wgGroupPermissions['emailconfirmed']['skipcaptcha'] = true;
$ceAllowConfirmedEmail = true;

$wgCaptchaTriggers['edit']          = false; 
$wgCaptchaTriggers['create']        = true; 
$wgCaptchaTriggers['addurl']        = true; 
$wgCaptchaTriggers['createaccount'] = true;
$wgCaptchaTriggers['badlogin']      = true;

$wgCaptchaTriggersOnNamespace[NS_TALK]['addurl'] = false;
$wgCaptchaTriggersOnNamespace[NS_PROJECT]['edit'] = true;

$wgGroupPermissions['user']['skipcaptcha'] = true; 
$wgCaptchaTriggers['edit'] = true;

## restrict account creation, cabut larangan ini setelah selesai membersihkan spam.
$wgGroupPermissions['*']['createaccount'] = false;

Deleted .htaccess:

RewriteEngine On
RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/index.php [L]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2 [L,QSA,B]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2&archived=1 [L,QSA,B]

Thank you for your reply and help.

Dantman (talkcontribs)

I don't see the wgArticlePath or any other part of the LocalSettings.php config you were given in there.

Though that's strange since that shouldn't cause the /wiki/Wiki/wiki/Wiki/.

Yakusa47 (talkcontribs)

Following guide on MediaWiki ShortURL Builder (http://shorturls.redwerks.org/?articlepath=%2Fwiki%2F%241&source=userdata&thumb_handler=1&fcgi_params=%2Fetc%2Fnginx%2Ffastcgi_params&url=http%3A%2F%2Fhmipedia.org%2Findex.php%3Ftitle%3DHalaman_Utama&fcgi_pass=127.0.0.1%3A9000&server=apache&has_root=&mod_php=on&script=%2Findex.php&hashed_uploads=on)

With this setting and recommendation:

These instructions can be used to configure the wiki at http://hmipedia.org/index.php?title=Halaman_Utama with the article path "/wiki/$1" giving you urls like http://hmipedia.org/wiki/Main_Page. If you want a different article path you can fill in a new one here.
Article Path: /wiki/$1
Include 404 thumbnail handler config
Server type : Apache
I don't have root access, please use .htaccess files. 


.htaccess according to MediaWiki ShortURL Builder

RewriteEngine On
RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/index.php [L]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2 [L,QSA,B]

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2&archived=1 [L,QSA,B]

4 lines in LocalSettings.php according to MediaWiki ShortURL Builder

$wgArticlePath      = "wiki/$1";
$wgUsePathInfo      = true;
$wgEnableUploads  = true;
$wgGenerateThumbnailOnParse = false;

And the result of my mediawiki site like this:

http://hmipedia.org/wiki/wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Wiki/wiki/Halaman_Utama
Dantman (talkcontribs)
$wgArticlePath      = "wiki/$1";

$wgArticlePath must begin with /, that would cause your bug.

Yakusa47 (talkcontribs)

Thank you Daniel, it help me out.

I Found something else that make me confuse.

Compare this:

## QuestyCaptcha Configuration
require_once("$IP/extensions/ConfirmEdit/QuestyCaptcha.php"); 
$wgCaptchaClass = 'QuestyCaptcha';
$wgCaptchaQuestions[] = array( 'question' => 'A question?', 'answer' => 'An answer!' );
$wgCaptchaQuestions[] = array( 'question' => 'Siapakah nama pendiri HMI?', 'answer' => 'Lafran Pane' );
$wgCaptchaQuestions[] = array( 'question' => "Apakah nama situs wiki ini?", 'answer' => "$wgSitename" );
$wgCaptchaQuestions[] = array( 'question' => 'Tuliskan kata rahasia, "5 februari", disini:', 'answer' => '5 februari' );
$wgCaptchaQuestions[] = array( 'question' => 'Tahun berapa HMI berdiri?', 'answer' => '1947' );
$wgCaptchaQuestions[] = array( 'question' => 'Siapakah nama ketua umum pbhmi yang juga pernah menjabat ketua umum partai demokrat?', 'answer' => 'Anas Urbaningrum' );
$wgCaptchaQuestions[] = array( 'question' => 'Huruf "I" dalam gambar ini singkatan dari? <img src="http://hmipedia.org/wiki/Berkas:Lambang_HMI.jpg" alt="" title="Himpunan Mahasiswa Islam" />', 'answer' => 'Islam' );

With this:

## QuestyCaptcha Configuration
require_once("$IP/extensions/ConfirmEdit/QuestyCaptcha.php"); 
$wgCaptchaClass = 'QuestyCaptcha';
$wgCaptchaQuestions[] = array( 'question' => "Siapakah nama pendiri HMI?", 'answer' => "Lafran Pane" );
$wgCaptchaQuestions[] = array( 'question' => "Dimanakah HMI didirikan?", 'answer' => "Yogyakarta" );
$wgCaptchaQuestions[] = array( 'question' => "Kapan HMI berdiri tanggal masehi dengan tahunnya?", 'answer' => "5 Februari 1947" );
$wgCaptchaQuestions[] = array( 'question' => "Kapan HMI berdiri tanggal hijriyah dengan tahunnya?", 'answer' => "14 Rabiul Awal 1366" );
$wgCaptchaQuestions[] = array( 'question' => "Siapakah nama Ketua Umum PBHMI yang juga pernah menjabat Ketua Umum Partai Demokrat?", 'answer' => "Anas Urbaningrum" );
$wgCaptchaQuestions[] = array( 'question' => "Siapakah nama Ketua Umum PBHMI yang juga pernah menjabat Ketua Umum Partai Golkar", 'answer' => "Akbar Tandjung" );
$wgCaptchaQuestions[] = array( 'question' => "Siapakah nama alumni HMI yang pernah menjabat Wakil Presiden Republik Indonesia", 'answer' => "Jusuf Kalla" );
$wgCaptchaQuestions[] = array( 'question' => "Huruf I dalam HMI singkatan dari", 'answer' => "Islam" );

The first one reproduce this error:

[31-Mar-2015 11:11:12 UTC] PHP Parse error:  syntax error, unexpected 'question' (T_STRING), expecting ')' in /home/yakusa47/public_html/hmipedia.org/LocalSettings.php on line 167
[31-Mar-2015 11:11:53 UTC] PHP Parse error:  syntax error, unexpected '=>' (T_DOUBLE_ARROW), expecting ')' in /home/yakusa47/public_html/hmipedia.org/LocalSettings.php on line 167

The second one solve the problem, "quote and double quote".

Than I try to add/edit page, but reproduce this error:

http://hmipedia.org/index.php?title=Teuku_Taufiqulhadi&action=submit

Not Acceptable
An appropriate representation of the requested resource /index.php could not be found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

I am not sure how to solve this one. Thanks for your reply and help.

Dantman (talkcontribs)

This is an unrelated error related to mod_security.

Talk to your hosting provider.

Clearing cookies for your website might fix the problem for you.

Cammy26 (talkcontribs)

Woah cool look at all the wikis :D

Reply to "Blank Page after follow Other how-to mini-guides"