Go to the documentation of this file.
74 $this->serverPort =
$params[
'port'];
75 $this->useWindowsAuth =
$params[
'UseWindowsAuth'];
81 # Test for driver support, to avoid suppressed fatal error
82 if ( !function_exists(
'sqlsrv_connect' ) ) {
85 "Microsoft SQL Server Native (sqlsrv) functions missing.
86 You can download the driver from: http://go.microsoft.com/fwlink/?LinkId=123470\n"
90 # e.g. the class is being loaded
91 if ( !strlen(
$user ) ) {
100 $connectionInfo = [];
102 if ( $dbName !=
'' ) {
103 $connectionInfo[
'Database'] = $dbName;
108 if ( !$this->useWindowsAuth ) {
109 $connectionInfo[
'UID'] =
$user;
113 Wikimedia\suppressWarnings();
114 $this->conn = sqlsrv_connect(
$server, $connectionInfo );
115 Wikimedia\restoreWarnings();
117 if ( $this->conn ===
false ) {
121 $this->opened =
true;
123 ( $dbName !=
'' ) ? $dbName :
null,
137 return sqlsrv_close( $this->conn );
149 } elseif (
$result ===
true ) {
167 if ( preg_match(
'/\bLIMIT\s*/i', $sql ) ) {
173 if ( preg_match(
'#\bEXTRACT\s*?\(\s*?EPOCH\s+FROM\b#i', $sql,
$matches ) ) {
175 $sql = str_replace(
$matches[0],
"DATEDIFF(s,CONVERT(datetime,'1/1/1970'),", $sql );
185 $scrollArr = [
'Scrollable' => SQLSRV_CURSOR_STATIC ];
192 $stmt = sqlsrv_prepare( $this->conn, $sql, [], $scrollArr );
195 $stmt = sqlsrv_query( $this->conn, $sql, [], $scrollArr );
202 if ( $this->ignoreDupKeyErrors ) {
211 $errors = sqlsrv_errors();
214 foreach ( $errors
as $err ) {
226 $this->lastAffectedRowCount = sqlsrv_rows_affected( $stmt );
236 sqlsrv_free_stmt(
$res );
245 return $res->fetchObject();
253 return $res->fetchRow();
267 if (
$ret ===
false ) {
270 $ret = (int)sqlsrv_has_rows(
$res );
285 return sqlsrv_num_fields(
$res );
298 return sqlsrv_field_metadata(
$res )[$n][
'Name'];
315 return $res->seek( $row );
323 $retErrors = sqlsrv_errors( SQLSRV_ERR_ALL );
324 if ( $retErrors !=
null ) {
325 foreach ( $retErrors
as $arrError ) {
329 $strRet =
"No errors found";
340 return '[SQLSTATE ' .
341 $err[
'SQLSTATE'] .
'][Error Code ' . $err[
'code'] .
']' . $err[
'message'];
348 $err = sqlsrv_errors( SQLSRV_ERR_ALL );
349 if ( $err !==
null && isset( $err[0] ) ) {
350 return $err[0][
'code'];
357 $errors = sqlsrv_errors( SQLSRV_ERR_ALL );
364 $statementOnly =
false;
365 $codeWhitelist = [
'2601',
'2627',
'547' ];
366 foreach ( $errors
as $error ) {
367 if ( $error[
'code'] ==
'3621' ) {
368 $statementOnly =
true;
369 } elseif ( !in_array( $error[
'code'], $codeWhitelist ) ) {
370 $statementOnly =
false;
375 return $statementOnly;
407 if ( isset(
$options[
'EXPLAIN'] ) ) {
411 $this->
query(
"SET SHOWPLAN_ALL ON" );
413 $this->
query(
"SET SHOWPLAN_ALL OFF" );
415 if ( isset(
$options[
'FOR COUNT'] ) ) {
417 $this->
query(
"SET SHOWPLAN_ALL OFF" );
421 'COUNT(*) AS EstimateRows',
458 if ( isset(
$options[
'EXPLAIN'] ) ) {
465 if ( strpos( $sql,
'MAX(' ) !==
false || strpos( $sql,
'MIN(' ) !==
false ) {
467 if ( is_array( $table ) ) {
471 if ( is_array(
$t ) ) {
481 foreach ( $bitColumns
as $col => $info ) {
483 "MAX({$col})" =>
"MAX(CAST({$col} AS tinyint))",
484 "MIN({$col})" =>
"MIN(CAST({$col} AS tinyint))",
486 $sql = str_replace( array_keys( $replace ), array_values( $replace ), $sql );
493 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
498 parent::deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
$fname );
499 }
catch ( Exception
$e ) {
506 public function delete( $table, $conds,
$fname = __METHOD__ ) {
509 parent::delete( $table, $conds,
$fname );
510 }
catch ( Exception
$e ) {
538 if ( is_string( $column ) && !in_array( $column, [
'*',
'1' ] ) ) {
539 $conds[] =
"$column IS NOT NULL";
551 if ( isset( $row[
'EstimateRows'] ) ) {
552 $rows = (int)$row[
'EstimateRows'];
568 # This does not return the same info as MYSQL would, but that's OK
569 # because MediaWiki never uses the returned value except to check for
570 # the existence of indexes.
571 $sql =
"sp_helpindex '" . $this->
tableName( $table ) .
"'";
579 foreach (
$res as $row ) {
580 if ( $row->index_name == $index ) {
581 $row->Non_unique = !stristr( $row->index_description,
"unique" );
582 $cols = explode(
", ", $row->index_keys );
583 foreach ( $cols
as $col ) {
584 $row->Column_name = trim( $col );
587 } elseif ( $index ==
'PRIMARY' && stristr( $row->index_description,
'PRIMARY' ) ) {
588 $row->Non_unique = 0;
589 $cols = explode(
", ", $row->index_keys );
590 foreach ( $cols
as $col ) {
591 $row->Column_name = trim( $col );
616 # No rows to insert, easy just return now
617 if ( !
count( $arrToInsert ) ) {
627 if ( !( isset( $arrToInsert[0] ) && is_array( $arrToInsert[0] ) ) ) {
628 $arrToInsert = [ 0 => $arrToInsert ];
634 $tableRawArr = explode(
'.', preg_replace(
'#\[([^\]]*)\]#',
'$1', $table ) );
635 $tableRaw = array_pop( $tableRawArr );
637 "SELECT NAME AS idColumn FROM SYS.IDENTITY_COLUMNS " .
638 "WHERE OBJECT_NAME(OBJECT_ID)='{$tableRaw}'"
640 if (
$res && sqlsrv_has_rows(
$res ) ) {
642 $identityArr = sqlsrv_fetch_array(
$res, SQLSRV_FETCH_ASSOC );
643 $identity = array_pop( $identityArr );
645 sqlsrv_free_stmt(
$res );
652 if ( in_array(
'IGNORE',
$options ) ) {
654 $this->ignoreDupKeyErrors =
true;
658 foreach ( $arrToInsert
as $a ) {
663 $identityClause =
'';
668 foreach ( $a
as $k => $v ) {
669 if ( $k == $identity ) {
670 if ( !is_null( $v ) ) {
673 $sqlPre =
"SET IDENTITY_INSERT $table ON;";
674 $sqlPost =
";SET IDENTITY_INSERT $table OFF;";
684 $identityClause =
"OUTPUT INSERTED.$identity ";
687 $keys = array_keys( $a );
690 $sql = $sqlPre .
'INSERT ' . implode(
' ',
$options ) .
691 " INTO $table (" . implode(
',',
$keys ) .
") $identityClause VALUES (";
695 if ( isset( $binaryColumns[$key] ) ) {
703 if ( is_null(
$value ) ) {
709 $sql .=
')' . $sqlPost;
715 }
catch ( Exception
$e ) {
717 $this->ignoreDupKeyErrors =
false;
724 $row =
$ret->fetchObject();
725 if ( is_object( $row ) ) {
726 $this->lastInsertId = $row->$identity;
730 if ( $this->lastAffectedRowCount == -1 ) {
731 $this->lastAffectedRowCount = 1;
737 $this->ignoreDupKeyErrors =
false;
758 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
762 parent::nativeInsertSelect(
772 }
catch ( Exception
$e ) {
809 $sql =
"UPDATE $opts $table SET " . $this->
makeList( $values,
LIST_SET, $binaryColumns );
811 if ( $conds !== [] && $conds !==
'*' ) {
817 $this->
query( $sql );
818 }
catch ( Exception
$e ) {
843 if ( !is_array( $a ) ) {
844 throw new DBUnexpectedError( $this, __METHOD__ .
' called with incorrect parameters' );
851 foreach ( array_keys( $a )
as $field ) {
852 if ( !isset( $binaryColumns[$field] ) ) {
856 if ( is_array( $a[$field] ) ) {
857 foreach ( $a[$field]
as &$v ) {
862 $a[$field] =
new MssqlBlob( $a[$field] );
867 return parent::makeList( $a, $mode );
877 $sql =
"SELECT CHARACTER_MAXIMUM_LENGTH,DATA_TYPE FROM INFORMATION_SCHEMA.Columns
878 WHERE TABLE_NAME = '$table' AND COLUMN_NAME = '$field'";
882 if ( strtolower( $row[
'DATA_TYPE'] ) !=
'text' ) {
883 $size = $row[
'CHARACTER_MAXIMUM_LENGTH'];
900 if ( $offset ===
false || $offset == 0 ) {
901 if ( strpos( $sql,
"SELECT" ) ===
false ) {
902 return "TOP {$limit} " . $sql;
904 return preg_replace(
'/\bSELECT(\s+DISTINCT)?\b/Dsi',
905 'SELECT$1 TOP ' . $limit, $sql, 1 );
909 $select = $orderby = [];
910 $s1 = preg_match(
'#SELECT\s+(.+?)\s+FROM#Dis', $sql, $select );
911 $s2 = preg_match(
'#(ORDER BY\s+.+?)(\s*FOR XML .*)?$#Dis', $sql, $orderby );
913 $first = $offset + 1;
914 $last = $offset + $limit;
916 $sub2 =
'sub_' . ( $this->subqueryId + 1 );
917 $this->subqueryId += 2;
920 throw new DBUnexpectedError( $this,
"Attempting to LIMIT a non-SELECT query\n" );
924 $overOrder =
'ORDER BY (SELECT 1)';
926 if ( !isset( $orderby[2] ) || !$orderby[2] ) {
928 $sql = str_replace( $orderby[1],
'', $sql );
930 $overOrder = $orderby[1];
931 $postOrder =
' ' . $overOrder;
933 $sql =
"SELECT {$select[1]}
935 SELECT ROW_NUMBER() OVER({$overOrder}) AS rowNumber, *
936 FROM ({$sql}) {$sub1}
938 WHERE rowNumber BETWEEN {$first} AND {$last}{$postOrder}";
956 $pattern =
'/\bLIMIT\s+((([0-9]+)\s*,\s*)?([0-9]+)(\s+OFFSET\s+([0-9]+))?)/i';
957 if ( preg_match( $pattern, $sql,
$matches ) ) {
962 $sql = str_replace(
$matches[0],
'', $sql );
964 return $this->
limitResult( $sql, $row_count, $offset );
974 return "[{{int:version-db-mssql-url}} MS SQL Server]";
981 $server_info = sqlsrv_server_info( $this->conn );
982 $version = $server_info[
'SQLServerVersion'] ??
'Error';
993 list( $db, $schema, $table ) = $this->
tableName( $table,
'split' );
995 if ( $db !==
false ) {
997 $this->queryLogger->error(
"Attempting to call tableExists on a remote table" );
1001 if ( $schema ===
false ) {
1005 $res = $this->
query(
"SELECT 1 FROM INFORMATION_SCHEMA.TABLES
1006 WHERE TABLE_TYPE = 'BASE TABLE'
1007 AND TABLE_SCHEMA = '$schema' AND TABLE_NAME = '$table'" );
1009 if (
$res->numRows() ) {
1024 list( $db, $schema, $table ) = $this->
tableName( $table,
'split' );
1026 if ( $db !==
false ) {
1028 $this->queryLogger->error(
"Attempting to call fieldExists on a remote table" );
1032 $res = $this->
query(
"SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS
1033 WHERE TABLE_SCHEMA = '$schema' AND TABLE_NAME = '$table' AND COLUMN_NAME = '$field'" );
1035 if (
$res->numRows() ) {
1043 list( $db, $schema, $table ) = $this->
tableName( $table,
'split' );
1045 if ( $db !==
false ) {
1047 $this->queryLogger->error(
"Attempting to call fieldInfo on a remote table" );
1051 $res = $this->
query(
"SELECT * FROM INFORMATION_SCHEMA.COLUMNS
1052 WHERE TABLE_SCHEMA = '$schema' AND TABLE_NAME = '$table' AND COLUMN_NAME = '$field'" );
1054 $meta =
$res->fetchRow();
1080 sqlsrv_begin_transaction( $this->conn );
1089 sqlsrv_commit( $this->conn );
1099 sqlsrv_rollback( $this->conn );
1109 return str_replace(
"'",
"''",
$s );
1119 } elseif (
$s instanceof
Blob ) {
1123 return $blob->fetch();
1125 if ( is_bool(
$s ) ) {
1128 return parent::addQuotes(
$s );
1138 return '[' .
$s .
']';
1146 return strlen(
$name ) &&
$name[0] ==
'[' && substr(
$name, -1, 1 ) ==
']';
1157 return str_replace( [ $escapeChar,
'%',
'_',
'[',
']',
'^' ],
1158 [
"{$escapeChar}{$escapeChar}",
"{$escapeChar}%",
"{$escapeChar}_",
1159 "{$escapeChar}[",
"{$escapeChar}]",
"{$escapeChar}^" ],
1165 throw new DBExpectedError( $this, __CLASS__ .
": domain schemas are not supported." );
1169 if ( $database !== $this->
getDBname() ) {
1173 throw new DBExpectedError( $this,
"Could not select database '$database'." );
1177 $this->currentDomain = $domain;
1193 if ( is_numeric( $key ) ) {
1194 $noKeyOptions[$option] =
true;
1202 if ( isset( $noKeyOptions[
'DISTINCT'] ) || isset( $noKeyOptions[
'DISTINCTROW'] ) ) {
1203 $startOpts .=
'DISTINCT';
1206 if ( isset( $noKeyOptions[
'FOR XML'] ) ) {
1208 $tailOpts .=
" FOR XML PATH('')";
1212 return [ $startOpts,
'', $tailOpts,
'',
'' ];
1224 return implode(
' + ', $stringList );
1248 $this->subqueryId++;
1250 $delimLen = strlen( $delim );
1251 $fld =
"{$field} + {$this->addQuotes( $delim )}";
1252 $sql =
"(SELECT LEFT({$field}, LEN({$field}) - {$delimLen}) FROM ("
1253 . $this->
selectSQLText( $table, $fld, $conds,
null, [
'FOR XML' ], $join_conds )
1254 .
") {$gcsq} ({$field}))";
1261 if ( $length ===
null ) {
1267 $length = 2147483647;
1269 return 'SUBSTRING(' . implode(
',', [
$input, $startPosition, $length ] ) .
')';
1279 $tableRawArr = explode(
'.', preg_replace(
'#\[([^\]]*)\]#',
'$1', $table ) );
1280 $tableRaw = array_pop( $tableRawArr );
1282 if ( $this->binaryColumnCache ===
null ) {
1286 return $this->binaryColumnCache[$tableRaw] ?? [];
1294 $tableRawArr = explode(
'.', preg_replace(
'#\[([^\]]*)\]#',
'$1', $table ) );
1295 $tableRaw = array_pop( $tableRawArr );
1297 if ( $this->bitColumnCache ===
null ) {
1301 return $this->bitColumnCache[$tableRaw] ?? [];
1305 $res = $this->
select(
'INFORMATION_SCHEMA.COLUMNS',
'*',
1308 'TABLE_SCHEMA' => $this->
dbSchema(),
1309 'DATA_TYPE' => [
'varbinary',
'binary',
'image',
'bit' ]
1312 $this->binaryColumnCache = [];
1313 $this->bitColumnCache = [];
1314 foreach (
$res as $row ) {
1315 if ( $row->DATA_TYPE ==
'bit' ) {
1316 $this->bitColumnCache[$row->TABLE_NAME][$row->COLUMN_NAME] = $row;
1318 $this->binaryColumnCache[$row->TABLE_NAME][$row->COLUMN_NAME] = $row;
1330 # Replace reserved words with better ones
1349 if ( $format ==
'split' ) {
1352 return array_pad( explode(
'.', $table, 3 ), -3,
false );
1364 public function dropTable( $tableName, $fName = __METHOD__ ) {
1365 if ( !$this->
tableExists( $tableName, $fName ) ) {
1370 $sql =
"DROP TABLE " . $this->
tableName( $tableName );
1372 return $this->
query( $sql, $fName );
1406 return "CAST( $field AS NVARCHAR )";
1410 return [ self::ATTR_SCHEMAS_AS_TABLE_GROUPS =>
true ];
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like please read the documentation for tableName() and addQuotes(). You will need both of them. ------------------------------------------------------------------------ Basic query optimisation ------------------------------------------------------------------------ MediaWiki developers who need to write DB queries should have some understanding of databases and the performance issues associated with them. Patches containing unacceptably slow features will not be accepted. Unindexed queries are generally not welcome in MediaWiki
if(is_array( $mode)) switch( $mode) $input
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Allows to change the fields on the form that will be generated $name
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Class to handle database/prefix specification for IDatabase domains.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break but it is *strongly *advised not to try any more intrusive changes to get MediaWiki to conform more closely to your filesystem hierarchy Any such attempt will almost certainly result in unnecessary bugs The standard recommended location to install relative to the web is it should be possible to enable the appropriate rewrite rules by if you can reconfigure the web server