https://bugzilla.wikimedia.org/show_bug.cgi?id=33275

--- Comment #11 from Milan Patel <insane...@hotmail.com> 2011-12-27 15:54:25 
UTC ---
First of all, I set "$wgDisableOutputCompression = true;" to disable the
compression, and get the exact same message across all browsers:

"Page not found

The page you are looking for might have been removed,
had its name changed, or is temporarily unavailable.

Please try the following:
If you typed the page address in the Address bar, make sure that it is spelled
correctly.

- Click the Back button in your browser to try another link. 
- Use a search engine like Google to look for information on the Internet.

HTTP 404 - File not found"

Second, I don't think this has anything to do with namespace configuration in
the localsettings file, as standard namespace "User talk" is experiencing this
problem too.

details of localsettings.php from below line::

___________________________________________________________________
if( defined( 'MW_INSTALL_PATH' ) ) {
    $IP = MW_INSTALL_PATH;
} else {
    $IP = dirname( __FILE__ );
}


$path = array( $IP, "$IP/includes", "$IP/languages" );
set_include_path( implode( PATH_SEPARATOR, $path ) . PATH_SEPARATOR .
get_include_path() );

require_once( "$IP/includes/DefaultSettings.php" );

if ( $wgCommandLineMode ) {
    if ( isset( $_SERVER ) && array_key_exists( 'REQUEST_METHOD', $_SERVER ) )
{
        die( "This script must be run from the command line\n" );
    }
}


## 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 please see:
## http://www.mediawiki.org/wiki/Manual:Short_URL
$wgScriptPath       = "/en";
$wgScriptExtension  = ".php";


$wgLanguageCode = "en";



require_once( "../ExtensionSettings.php" );
require_once( "../WikiFamilySettings.php" );
require_once( "../SharedMediaSettings.php" );

 $wgShowExceptionDetails = true;

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

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

$wgSitename = 'FINCA Wiki';
$wgMetaNamespace = "FINCA_Wiki";

## 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 please see:
## http://www.mediawiki.org/wiki/Manual:Short_URL
##(in multilingual mediawiki installation) $wgScriptPath       = "/en";
##$wgScriptExtension  = ".php";

## The protocol and server name to use in fully-qualified URLs
$wgServer           = "http://www.fincawiki.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/images/FINCA_2CP_V.png";

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

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

$wgEmergencyContact = "admin@localhost";
$wgPasswordSender = "admin@localhost";

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

## Database settings
$wgDBtype           = "mysql";
$wgDBserver         =  "fincawikiorg.ipagemysql.com";
$wgDBname           = "fincaalpha3";
$wgDBuser           = "acnif";
$wgDBpassword       = "b00dv8r";

# MySQL specific settings
$wgDBprefix         = "";

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

# Experimental charset support for MySQL 4.1/5.0.
$wgDBmysql5 = true;

## 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";

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

## 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.UTF-8";

## 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 = "en";

$wgSecretKey =
"3fa07d8c383243d0776033e41b1730f132ba812a79e5eb873fa15246c2c7769";

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

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

## 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 = "";
$wgRightsText = "";
$wgRightsIcon = "";
# $wgRightsCode = ""; # Not yet used

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

# Query string length limit for ResourceLoader. You should only set this if
# your web server has a query string length limit (then set it to that limit),
# or if you have suhosin.get.max_value_length set in php.ini (then set it to
# that value)
$wgResourceLoaderMaxQueryLength = -1;



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


###list allowed file extensions
$wgFileExtensions[] = 'doc';
$wgFileExtensions[] = 'xls';
$wgFileExtensions[] = 'ppt';
$wgFileExtensions[] = 'pps';
$wgFileExtensions[] = 'pdf';
$wgFileExtensions[] = 'png';
$wgFileExtensions[] = 'gif';
$wgFileExtensions[] = 'jpg';
$wgFileExtensions[] = 'jpeg';
$wgFileExtensions[] = 'xml';
$wgFileExtensions[] = 'xsd';
$wgFileExtensions[] = 'wsdl';
$wgFileExtensions[] = 'txt';
$wgFileExtensions[] = 'exe';
$wgFileExtensions[] = 'zip';
$wgFileExtensions[] = 'flv';
$wgFileExtensions[] = 'docx';
$wgFileExtensions[] = 'pptx';
$wgFileExtensions[] = 'xlsx';


### configuration for wiki family
$wgCookieDomain =' fincawiki.org';
$wgSharedTables[] = 'ipblocks';
$wgSharedTables[] = 'user_groups';
$wgSharedTables[] = 'user';
$wgSharedDB = 'fincaalpha2';


### shared image pool
http://www.mediawiki.org/wiki/Manual:Shared_database#Other_tables
$wgForeignFileRepos[] = array(
    'class' => 'ForeignDBRepo',
    'name' => 'en',
    'url' => "http://fincawiki.org/en/images";,
    'directory' => '/home/users/web/b2916/ipg.fincawikiorg/en/images/',
    'hashLevels' => 2, // This must be the same for the other family member
    'dbType' => $wgDBtype,
    'dbServer' => $wgDBserver,
    'dbUser' => $wgDBuser,
    'dbPassword' => $wgDBpassword,
    'dbFlags' => DBO_DEFAULT,
    'dbName' => 'fincaalpha2',
    'tablePrefix' => '',
    'hasSharedCache' => false,
    'descBaseUrl' => 'http://fincawiki.org/en/Image:',
    'fetchDescription' => false
);
 $wgVerifyMimeType = false;

$wgUploadSizeWarning = 100 * 1024;


## Cacheing

##$wgUseFileCache = true;
##$wgFileCacheDirectory = "/en/cache";
##$wgDisableCounters = true;
##$wgEnableSidebarCache = false;
##$wgMiserMode = true;
##$wgRevisionCacheExpiry = 3*24*3600;
##$wgParserCacheExpireTime = 14*24*3600;


##INTERWIKI
$wgLocalInterwiki   = strtolower( $wgSitename );

#### Extension Directory Variables


$wgGroupPermissions['*']['read'] = false;
$wgAccountRequestMinWords = 0;
session_save_path("tmp");
$wgGroupPermissions['sysop']['passwordreset']   = true;


require_once("$IP/extensions/embed_document.php");
require_once("$IP/extensions/MediawikiPlayer/MediawikiPlayer.php");
require_once('extensions/Googledocviewer.php');
//require_once( 'extensions/SelectCategoryTagCloud/SelectCategoryTagCloud.php'
);

require_once( "$IP/extensions/ParserFunctions/ParserFunctions.php" );
$wgUseAjax = true;
require_once("{$IP}/extensions/CategoryTree/CategoryTree.php");
require_once( "$IP/extensions/Validator/Validator.php" );
require_once("$IP/extensions/Collection/Collection.php");

##extension RSSReader
require_once( "$IP/extensions/RSSReader/RSSReader.php");
$egRSSReaderPath  = $wgScriptPath."en/extensions/RSSReader";
$egRSSReaderPath  = $wgScriptPath."/en/extensions/RSSReader";


##Nimbus
require_once("$IP/extensions/Nimbus/Nimbus.php");
$wgNimbusInSidebar = true;


##packaged as part of Mediawiki 1.18##
require_once( "$IP/extensions/Gadgets/Gadgets.php" );
require_once("$IP/extensions/Renameuser/Renameuser.php");
require_once( "$IP/extensions/WikiEditor/WikiEditor.php" );

###semantic mediawiki
include_once("$IP/extensions/SemanticMediaWiki/SemanticMediaWiki.php");
enableSemantics('fincawiki.org');



### PHPBB User Database Plugin. (Requires MySQL Database)
require_once './extensions/Auth_phpBB/Auth_phpBB.php';

$wgAuth_Config = array(); // Clean.

$wgAuth_Config['WikiGroupName'] = 'Wiki';       // Name of your PHPBB group
                                                // users need to be a member
                                                // of to use the wiki. (i.e.
wiki)
                        // This can also be set to an array
                        // of group names to use more then
                        // one. (ie.
                        // $wgAuth_Config['WikiGroupName'][] = 'Wiki';
                        // $wgAuth_Config['WikiGroupName'][] = 'Wiki2';
                        // or
                        // $wgAuth_Config['WikiGroupName'] = array('Wiki',
'Wiki2');
                        // )


$wgAuth_Config['UseWikiGroup'] = true;          // This tells the Plugin to
require
                                                // a user to be a member of the
above
                                                // phpBB group. (ie. wiki)
Setting
                                                // this to false will let any
phpBB
                                                // user edit the wiki.

$wgAuth_Config['UseExtDatabase'] = false;       // This tells the plugin that
the phpBB tables
                                                // are in a different database
then the wiki.
                                                // The default settings is
false.

$wgAuth_Config['MySQL_Host']        = 'fincawikiorg.ipagemysql.com';      //
phpBB MySQL Host Name.
$wgAuth_Config['MySQL_Username']    = 'acnif';       // phpBB MySQL Username.
$wgAuth_Config['MySQL_Password']    = 'b00dv8r';       // phpBB MySQL Password.
$wgAuth_Config['MySQL_Database']    = 'fincaalpha2';       // phpBB MySQL
Database Name.

$wgAuth_Config['UserTB']         = 'phpbb_users';       // Name of your PHPBB
user table. (i.e. phpbb_users)
$wgAuth_Config['GroupsTB']       = 'phpbb_groups';      // Name of your PHPBB
groups table. (i.e. phpbb_groups)
$wgAuth_Config['User_GroupTB']   = 'phpbb_user_group';  // Name of your PHPBB
user_group table. (i.e. phpbb_user_group)
$wgAuth_Config['PathToPHPBB']    = '../forum/';         // Path from this file
to your phpBB install.

// Local
$wgAuth_Config['LoginMessage']   = '<b>You need a phpBB account to
login.</b><br /><a href="' . $wgAuth_Config['PathToPHPBB'] .
                                   'ucp.php?mode=register">Click here to create
an account.</a>'; // Localize this message.
$wgAuth_Config['NoWikiError']    = 'You are not a member of the required phpBB
group.'; // Localize this message.

$wgAuth = new Auth_phpBB($wgAuth_Config);     // Auth_phpBB Plugin.
require_once("$IP/extensions/Cite/Cite.php");

### End phpbb integration

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to