Jump to content

Module:Unicode data: Difference between revisions

From Soutar36
h>Djsasso
m 1 revision imported from en:Module:Unicode_data
m 1 revision imported
Line 98: Line 98:
{  0x30000,  0x3134A, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension G
{  0x30000,  0x3134A, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension G
{  0x31350,  0x323AF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension H
{  0x31350,  0x323AF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension H
{  0x2EBF0,  0x2EE5D, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension I
{  0xF0000,  0xFFFFD, "<private-use-%04X>" }, -- Plane 15 Private Use
{  0xF0000,  0xFFFFD, "<private-use-%04X>" }, -- Plane 15 Private Use
{ 0x100000, 0x10FFFD, "<private-use-%04X>" }  -- Plane 16 Private Use
{ 0x100000, 0x10FFFD, "<private-use-%04X>" }  -- Plane 16 Private Use
Line 162: Line 161:
end
end


--[[
-- No image data modules on Justapedia yet.
function p.lookup_image(codepoint)
function p.lookup_image(codepoint)
local data = loader[('images/%03X'):format(codepoint / 0x1000)]
local data = loader[('images/%03X'):format(codepoint / 0x1000)]
Line 169: Line 170:
end
end
end
end
--]]


local planes = {
local planes = {
Line 479: Line 481:
return result
return result
end
end
--[[--------------------------< I S _ R T L _ F R A M E >------------------------------------------------------
external entry from an {{#invoke:}} to determine if a string of text is rtl.  Strips html and html-like tags so
that those tags don't corrupt the is-rtl-is-not-rtl determination; this added for the cases where the rtl text
has <br /> tags.
]]
function p.is_rtl_frame (frame)
local str = frame.args[1]; -- get the string from the {{#invoke:}} frame
str = str:gsub ('%b<>', ''); -- strip any html and html-like tags
return p.is_rtl (str); -- return if whatever remains rtl; false else
end


local function get_codepoint(args, arg)
local function get_codepoint(args, arg)

Revision as of 05:58, 25 December 2024

Documentation for this module may be created at Module:Unicode data/doc

local p = {}

local floor = math.floor

local function errorf(level, ...)
	if type(level) == "number" then
		return error(string.format(...), level + 1)
	else -- level is actually the format string.
		return error(string.format(level, ...), 2)
	end
end

local function binary_range_search(codepoint, ranges)
	local low, mid, high
	low, high = 1, ranges.length or require "Module:TableTools".length(ranges)
	while low <= high do
		mid = floor((low + high) / 2)
		local range = ranges[mid]
		if codepoint < range[1] then
			high = mid - 1
		elseif codepoint <= range[2] then
			return range, mid
		else
			low = mid + 1
		end
	end
	return nil, mid
end
p.binary_range_search = binary_range_search

--[[
local function linear_range_search(codepoint, ranges)
	for i, range in ipairs(ranges) do
		if range[1] <= codepoint and codepoint <= range[2] then
			return range
		end
	end
end
--]]

-- Load a module by indexing "loader" with the name of the module minus the
-- "Module:Unicode data/" part. For instance, loader.blocks returns
-- [[Module:Unicode data/blocks]]. If a module cannot be loaded, false will be
-- returned.
local loader = setmetatable({}, {
	__index = function (self, key)
		local success, data = pcall(mw.loadData, "Module:Unicode data/" .. key)
		if not success then
			data = false
		end
		self[key] = data
		return data
	end
})

-- For the algorithm used to generate Hangul Syllable names,
-- see "Hangul Syllable Name Generation" in section 3.12 of the
-- Unicode Specification:
-- https://www.unicode.org/versions/Unicode11.0.0/ch03.pdf
local name_hooks = {
	{     0x00,     0x1F, "<control-%04X>" }, -- C0 control characters
	{     0x7F,     0x9F, "<control-%04X>" }, -- DEL and C1 control characters
	{   0x3400,   0x4DBF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension A
	{   0x4E00,   0x9FFF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph
	{   0xAC00,   0xD7A3, function (codepoint) -- Hangul Syllables
		local Hangul_data = loader.Hangul
		local syllable_index = codepoint - 0xAC00

		return ("HANGUL SYLLABLE %s%s%s"):format(
			Hangul_data.leads[floor(syllable_index / Hangul_data.final_count)],
			Hangul_data.vowels[floor((syllable_index % Hangul_data.final_count)
				/ Hangul_data.trail_count)],
			Hangul_data.trails[syllable_index % Hangul_data.trail_count]
		)
	end },
	-- High Surrogates, High Private Use Surrogates, Low Surrogates
	{   0xD800,   0xDFFF, "<surrogate-%04X>" },
	{   0xE000,   0xF8FF, "<private-use-%04X>" }, -- Private Use
	-- CJK Compatibility Ideographs
	{   0xF900,   0xFA6D, "CJK COMPATIBILITY IDEOGRAPH-%04X" },
	{   0xFA70,   0xFAD9, "CJK COMPATIBILITY IDEOGRAPH-%04X" },
	{  0x17000,  0x187F7, "TANGUT IDEOGRAPH-%04X" }, -- Tangut Ideograph
	{  0x18800,  0x18AFF, function (codepoint)
		return ("TANGUT COMPONENT-%03d"):format(codepoint - 0x187FF)
	end },
	{  0x18D00,  0x18D08, "TANGUT IDEOGRAPH-%04X" }, -- Tangut Ideograph Supplement
	{  0x1B170,  0x1B2FB, "NUSHU CHARACTER-%04X" }, -- Nushu
	{  0x20000,  0x2A6DF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension B
	{  0x2A700,  0x2B739, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension C
	{  0x2B740,  0x2B81D, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension D
	{  0x2B820,  0x2CEA1, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension E
	{  0x2CEB0,  0x2EBE0, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension F
	-- CJK Compatibility Ideographs Supplement (Supplementary Ideographic Plane)
	{  0x2F800,  0x2FA1D, "CJK COMPATIBILITY IDEOGRAPH-%04X" },
	{  0xE0100,  0xE01EF, function (codepoint) -- Variation Selectors Supplement
		return ("VARIATION SELECTOR-%d"):format(codepoint - 0xE0100 + 17)
	end},
	{  0x30000,  0x3134A, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension G
	{  0x31350,  0x323AF, "CJK UNIFIED IDEOGRAPH-%04X" }, -- CJK Ideograph Extension H
	{  0xF0000,  0xFFFFD, "<private-use-%04X>" }, -- Plane 15 Private Use
	{ 0x100000, 0x10FFFD, "<private-use-%04X>" }  -- Plane 16 Private Use
}
name_hooks.length = #name_hooks

local name_range_cache

local function generate_name(data, codepoint)
	if type(data) == "string" then
		return data:format(codepoint)
	else
		return data(codepoint)
	end
end

--[[
-- Checks that the code point is a number and in range.
-- Does not check whether code point is an integer.
-- Not used
local function check_codepoint(funcName, argIdx, val)
	require 'libraryUtil'.checkType(funcName, argIdx, val, 'number')
	if codepoint < 0 or 0x10FFFF < codepoint then
		errorf("Codepoint %04X out of range", codepoint)
	end
end
--]]

-- https://www.unicode.org/versions/Unicode11.0.0/ch04.pdf, section 4.8
function p.lookup_name(codepoint)
	-- U+FDD0-U+FDEF and all code points ending in FFFE or FFFF are Unassigned
	-- (Cn) and specifically noncharacters:
	-- https://www.unicode.org/faq/private_use.html#nonchar4
	if 0xFDD0 <= codepoint and (codepoint <= 0xFDEF
			or floor(codepoint % 0x10000) >= 0xFFFE) then
		return ("<noncharacter-%04X>"):format(codepoint)
	end

	if name_range_cache -- Check if previously used "name hook" applies to this code point.
			and codepoint >= name_range_cache[1]
			and codepoint <= name_range_cache[2] then
		return generate_name(name_range_cache[3], codepoint)
	end
	
	local range = binary_range_search(codepoint, name_hooks)
	if range then
		name_range_cache = range
		return generate_name(range[3], codepoint)
	end

	local data = loader[('names/%03X'):format(codepoint / 0x1000)]
	
	if data and data[codepoint] then
		return data[codepoint]
	
	-- Unassigned (Cn) consists of noncharacters and reserved characters.
	-- The character has been established not to be a noncharacter,
	-- and if it were assigned, its name would already been retrieved,
	-- so it must be reserved.
	else
		return ("<reserved-%04X>"):format(codepoint)
	end
end

--[[
-- No image data modules on Justapedia yet.
function p.lookup_image(codepoint)
	local data = loader[('images/%03X'):format(codepoint / 0x1000)]
	
	if data then
		return data[codepoint]
	end
end
--]]

local planes = {
	[ 0] = "Basic Multilingual Plane";
	[ 1] = "Supplementary Multilingual Plane";
	[ 2] = "Supplementary Ideographic Plane";
	[ 3] = "Tertiary Ideographic Plane";
	[14] = "Supplementary Special-purpose Plane";
	[15] = "Supplementary Private Use Area-A";
	[16] = "Supplementary Private Use Area-B";
}

-- Load [[Module:Unicode data/blocks]] if needed and assign it to this variable.
local blocks

local function block_iter(blocks, i)
	i = i + 1
	local data = blocks[i]
	if data then
		 -- Unpack doesn't work on tables loaded with mw.loadData.
		return i, data[1], data[2], data[3]
	end
end

-- An ipairs-type iterator generator for the list of blocks.
function p.enum_blocks()
	local blocks = loader.blocks
	return block_iter, blocks, 0
end

function p.lookup_plane(codepoint)
	local i = floor(codepoint / 0x10000)
	return planes[i] or ("Plane %u"):format(i)
end

function p.lookup_block(codepoint)
	local blocks = loader.blocks
	local range = binary_range_search(codepoint, blocks)
	if range then
		return range[3]
	else
		return "No Block"
	end
end

function p.get_block_info(name)
	for i, block in ipairs(loader.blocks) do
		if block[3] == name then
			return block
		end
	end
end

function p.is_valid_pagename(pagename)
	local has_nonws = false

	for cp in mw.ustring.gcodepoint(pagename) do
		if (cp == 0x0023) -- #
		or (cp == 0x005B) -- [
		or (cp == 0x005D) -- ]
		or (cp == 0x007B) -- {
		or (cp == 0x007C) -- |
		or (cp == 0x007D) -- }
		or (cp == 0x180E) -- MONGOLIAN VOWEL SEPARATOR
		or ((cp >= 0x2000) and (cp <= 0x200A)) -- spaces in General Punctuation block
		or (cp == 0xFFFD) -- REPLACEMENT CHARACTER
		then
			return false
		end

		local printable, result = p.is_printable(cp)
		if not printable then
			return false
		end

		if result ~= "space-separator" then
			has_nonws = true
		end
	end

	return has_nonws
end

local function manual_unpack(what, from)
	if what[from + 1] == nil then
		return what[from]
	end
	
	local result = {}
	from = from or 1
	for i, item in ipairs(what) do
		if i >= from then
			table.insert(result, item)
		end
	end
	return unpack(result)
end

local function compare_ranges(range1, range2)
	return range1[1] < range2[1]
end

-- Creates a function to look up data in a module that contains "singles" (a
-- code point-to-data map) and "ranges" (an array containing arrays that contain
-- the low and high code points of a range and the data associated with that
-- range).
-- "loader" loads and returns the "singles" and "ranges" tables.
-- "match_func" is passed the code point and either the data or the "dots", and
-- generates the final result of the function.
-- The varargs ("dots") describes the default data to be returned if there wasn't
-- a match.
-- In case the function is used more than once, "cache" saves ranges that have
-- already been found to match, or a range whose data is the default if there
-- was no match.
local function memo_lookup(data_module_subpage, match_func, ...)
	local dots = { ... }
	local cache = {}
	local singles, ranges

	return function (codepoint)
		if not singles then
			local data_module = loader[data_module_subpage]
			singles, ranges = data_module.singles, data_module.ranges
		end

		if singles[codepoint] then
			return match_func(codepoint, singles[codepoint])
		end

		local range = binary_range_search(codepoint, cache)
		if range then
			return match_func(codepoint, manual_unpack(range, 3))
		end
		
		local range, index = binary_range_search(codepoint, ranges)
		if range then
			table.insert(cache, range)
			table.sort(cache, compare_ranges)
			return match_func(codepoint, manual_unpack(range, 3))
		end
		
		if ranges[index] then
			local dots_range
			if codepoint > ranges[index][2] then
				dots_range = {
					ranges[index][2] + 1,
					ranges[index + 1] and ranges[index + 1][1] - 1 or 0x10FFFF,
					unpack(dots)
				}
			else -- codepoint < range[index][1]
				dots_range = {
					ranges[index - 1] and ranges[index - 1][2] + 1 or 0,
					ranges[index][1] - 1,
					unpack(dots)
				}
			end
			table.sort(cache, compare_ranges)
		end
		
		return match_func(codepoint)
	end
end

-- Get a code point's combining class value in [[Module:Unicode data/combining]],
-- and return whether this value is not zero. Zero is assigned as the default
-- if the combining class value is not found in this data module.
-- That is, return true if character is combining, or false if it is not.
-- See https://www.unicode.org/reports/tr44/#Canonical_Combining_Class_Values for
-- more information.
p.is_combining = memo_lookup(
	"combining",
	function (codepoint, combining_class)
		return combining_class and combining_class ~= 0 or false
	end,
	0)

function p.add_dotted_circle(str)
	return (mw.ustring.gsub(str, ".",
		function(char)
			if p.is_combining(mw.ustring.codepoint(char)) then
				return '◌' .. char
			end
		end))
end

local lookup_control = memo_lookup(
	"control",
	function (codepoint, ccc)
		return ccc or "assigned"
	end,
	"assigned")
p.lookup_control = lookup_control

function p.is_assigned(codepoint)
	return lookup_control(codepoint) ~= "unassigned"
end

function p.is_printable(codepoint)
	local result = lookup_control(codepoint)
	return (result == "assigned") or (result == "space-separator"), result
end

function p.is_whitespace(codepoint)
	local result = lookup_control(codepoint)
	return (result == "space-separator"), result
end

p.lookup_category = memo_lookup(
	"category",
	function (codepoint, category)
		return category
	end,
	"Cn")

local lookup_script = memo_lookup(
	"scripts",
	function (codepoint, script_code)
		return script_code or 'Zzzz'
	end,
	"Zzzz")
p.lookup_script = lookup_script

function p.get_best_script(str)
	-- Check type of argument, because mw.text.decode coerces numbers to strings!
	require "libraryUtil".checkType("get_best_script", 1, str, "string")
	
	-- Convert HTML character references (including named character references,
	-- or character entities) to characters.
	str = mw.text.decode(str, true)
	
	local scripts = {}
	for codepoint in mw.ustring.gcodepoint(str) do
		local script = lookup_script(codepoint)
		
		-- Ignore "Inherited", "Undetermined", or "Uncoded" scripts.
		if not (script == "Zyyy" or script == "Zinh" or script == "Zzzz") then
			scripts[script] = true
		end
	end
	
	-- If scripts does not contain two or more keys,
	-- return first and only key (script code) in table.
	if not next(scripts, next(scripts)) then
		return next(scripts)
	end -- else return majority script, or else "Zzzz"?
end

function p.is_Latin(str)
	require "libraryUtil".checkType("get_best_script", 1, str, "string")
	str = mw.text.decode(str, true)
	
	-- Search for the leading bytes that introduce the UTF-8 encoding of the
	-- code points U+0340-U+10FFFF. If they are not found and there is at least
	-- one Latin-script character, the string counts as Latin, because the rest
	-- of the characters can only be Zyyy, Zinh, and Zzzz.
	-- The only scripts found below U+0370 (the first code point of the Greek
	-- and Coptic block) are Latn, Zyyy, Zinh, and Zzzz.
	-- See the codepage in the [[UTF-8]] article.
	if not str:find "[\205-\244]" then
		for codepoint in mw.ustring.gcodepoint(str) do
			if lookup_script(codepoint) == "Latn" then
				return true
			end
		end
	end
	
	local Latn = false
	
	for codepoint in mw.ustring.gcodepoint(str) do
		local script = lookup_script(codepoint)
		
		if script == "Latn" then
			Latn = true
		elseif not (script == "Zyyy" or script == "Zinh"
				or script == "Zzzz") then
			return false
		end
	end
	
	return Latn
end

-- Checks that a string contains only characters belonging to right-to-left
-- scripts, or characters of ignorable scripts.
function p.is_rtl(str)
	require "libraryUtil".checkType("get_best_script", 1, str, "string")
	str = mw.text.decode(str, true)
	
	-- Search for the leading bytes that introduce the UTF-8 encoding of the
	-- code points U+0580-U+10FFFF. If they are not found, the string can only
	-- have characters from a left-to-right script, because the first code point
	-- in a right-to-left script is U+0591, in the Hebrew block.
	if not str:find "[\214-\244]" then
		return false
	end
	
	local result = false
	local rtl = loader.scripts.rtl
	for codepoint in mw.ustring.gcodepoint(str) do
		local script = lookup_script(codepoint)
		
		if rtl[script] then
			result = true
		elseif not (script == "Zyyy" or script == "Zinh"
				or script == "Zzzz") then
			return false
		end
	end
	
	return result
end

local function get_codepoint(args, arg)
	local codepoint_string = args[arg]
		or errorf(2, "Parameter %s is required", tostring(arg))
	local codepoint = tonumber(codepoint_string, 16)
		or errorf(2, "Parameter %s is not a code point in hexadecimal base",
			tostring(arg))
	if not (0 <= codepoint and codepoint <= 0x10FFFF) then
		errorf(2, "code point in parameter %s out of range", tostring(arg))
	end
	return codepoint
end

local function get_func(args, arg, prefix)
	local suffix = args[arg]
		or errorf(2, "Parameter %s is required", tostring(arg))
	suffix = mw.text.trim(suffix)
	local func_name = prefix .. suffix
	local func = p[func_name]
		or errorf(2, "There is no function '%s'", func_name)
	return func
end

-- This function allows any of the "lookup" functions to be invoked. The first
-- parameter is the word after "lookup_"; the second parameter is the code point
-- in hexadecimal base.
function p.lookup(frame)
	local func = get_func(frame.args, 1, "lookup_")
	local codepoint = get_codepoint(frame.args, 2)
	local result = func(codepoint)
	if func == p.lookup_name then
		-- Prevent code point labels such as <control-0000> from being
		-- interpreted as HTML tags.
		result = result:gsub("<", "&lt;")
	end
	return result
end

function p.is(frame)
	local func = get_func(frame.args, 1, "is_")
	
	-- is_Latin and is_valid_pagename take strings.
	if func == p.is_Latin or func == p.is_valid_pagename or func == p.is_rtl then
		return (func(frame.args[2]))
	else -- The rest take code points.
		local codepoint = get_codepoint(frame.args, 2)
		return (func(codepoint)) -- Adjust to one result.
	end
end

return p
MediaWiki: 1.43.0
PHP: 8.1.27
Time: 0.35225
Memory: 8.13 MB (Peak: 8.39 MB)
LogMWDebug output completeMediaWiki\Debug\MWDebug::getDebugHTML
#SQLTimeCall
1localhost: SET group_concat_max_len = 262144, `sql_mode` = ''0.090msWikimedia\Rdbms\DatabaseMySQL::open
2localhost: SELECT @@GLOBAL.read_only AS Value0.156msWikimedia\Rdbms\DatabaseMySQL::serverIsReadOnly
3localhost: BEGIN0.038msWikimedia\Rdbms\Database::beginIfImplied (MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds)
4localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1 0.329msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
5localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'deps' LIMIT 1 0.615msLCStoreDB::get
6localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'list' LIMIT 1 0.271msLCStoreDB::get
7localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'preload' LIMIT 1 0.167msLCStoreDB::get
8localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'preload' LIMIT 1 0.158msLCStoreDB::get
9localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'namespaceGenderAliases' LIMIT 1 0.140msLCStoreDB::get
10localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_random,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 828 AND page_title = 'Unicode_data' LIMIT 1 0.200msWikiPage::pageData
11localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 676 LIMIT 1 0.281msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
12localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 676 0.229msMediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb
13localhost: SELECT role_id AS `id`,role_name AS `name` FROM `slot_roles` ORDER BY id 0.141msMediaWiki\Storage\NameTableStore::loadTable
14localhost: SELECT model_id AS `id`,model_name AS `name` FROM `content_models` ORDER BY id 0.140msMediaWiki\Storage\NameTableStore::loadTable
15localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1 0.288msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
16localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 675 0.213msMediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb
17localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1 0.270msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
18localhost: SELECT rev_id FROM `revision` IGNORE INDEX (rev_timestamp) WHERE rev_page = 45 AND (rev_timestamp > '20231130124720' OR (rev_timestamp = '20231130124720' AND (rev_id > 675))) ORDER BY rev_timestamp ASC,rev_id ASC LIMIT 1 0.263msMediaWiki\Revision\RevisionStore::getRelativeRevision
19localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 90 LIMIT 1 0.253msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
20localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 90 LIMIT 1 0.262msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
21localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1 0.237msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
22localhost: SELECT ct_tag_id AS `value` FROM `change_tag` WHERE ct_rev_id = 675 0.218msDifferenceEngine::loadRevisionData
23localhost: SELECT ct_tag_id AS `value` FROM `change_tag` WHERE ct_rev_id = 90 0.133msDifferenceEngine::loadRevisionData
24localhost: SET group_concat_max_len = 262144, `sql_mode` = ''0.140msWikimedia\Rdbms\DatabaseMySQL::open
25localhost: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'u730917019_wikih:messages:en' AND (exptime >= '20250316002501') 0.290msSqlBagOStuff::fetchBlobs
26localhost: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'u730917019_wikih:messages:en:status' AND (exptime >= '20250316002501') 0.120msSqlBagOStuff::fetchBlobs
27localhost: SELECT IF(GET_LOCK('u730917019_wikih:messages:en',0),UNIX_TIMESTAMP(SYSDATE(6)),NULL) AS acquired0.096msSqlBagOStuff::doLock
28localhost: SELECT page_title,page_latest FROM `page` WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title NOT LIKE '%/%' ESCAPE '`') AND (page_len > 10000) 0.267msMessageCache::loadFromDB(en)-big
29localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'list' LIMIT 1 0.880msLCStoreDB::get
30localhost: SELECT /*! STRAIGHT_JOIN */ rev_id,rev_page,rev_actor,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len FROM `page` JOIN `revision` ON ((page_id = rev_page)) JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title NOT LIKE '%/%' ESCAPE '`') AND (page_len <= 10000) AND (page_latest = rev_id) 0.351msMessageCache::loadFromDB(en)-small
31localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 953 AND slot_role_id = 1 0.235msMediaWiki\Revision\RevisionStore::getSlotRowsForBatch
32localhost: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 407 0.150msMediaWiki\Storage\SqlBlobStore::fetchBlobs
33localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'magicWords' LIMIT 1 0.233msLCStoreDB::get
34localhost: REPLACE INTO `objectcache` (keyname,value,exptime) VALUES ('u730917019_wikih:messages:en','�■M�■0�D■\n■�■■B■■I\r�.B■�=\"�■■■I■�■■]■■e■L■■■?■Q0■■a■■uc-Ė#■■)Ͻ]vp■$CQ߻■̏■■■■�■�■■r52x■■᜔U■�!6L■ �■m■■R�■lU@D�bskt■q■■\"■�■■\rR■v■!■�Yy■?/�$(��■pD■■?','99991231235959')0.159msSqlBagOStuff::modifyTableSpecificBlobsForSet
35localhost: SELECT RELEASE_LOCK('u730917019_wikih:messages:en') AS released0.061msSqlBagOStuff::doUnlock
36localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:difference-title' LIMIT 1 0.127msLCStoreDB::get
37localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:group-user' LIMIT 1 0.162msLCStoreDB::get
38localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:grouppage-user' LIMIT 1 0.124msLCStoreDB::get
39localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'namespaceAliases' LIMIT 1 0.141msLCStoreDB::get
40localhost: SELECT rev_id FROM `revision` IGNORE INDEX (rev_timestamp) WHERE rev_page = 45 AND (rev_timestamp < '20231130124720' OR (rev_timestamp = '20231130124720' AND (rev_id < 675))) ORDER BY rev_timestamp DESC,rev_id DESC LIMIT 1 0.214msMediaWiki\Revision\RevisionStore::getRelativeRevision
41localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 89 LIMIT 1 0.225msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
42localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:previousdiff' LIMIT 1 0.123msLCStoreDB::get
43localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:recentchanges-label-minor' LIMIT 1 0.134msLCStoreDB::get
44localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:minoreditletter' LIMIT 1 0.132msLCStoreDB::get
45localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:november' LIMIT 1 0.141msLCStoreDB::get
46localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:revisionasof' LIMIT 1 0.132msLCStoreDB::get
47localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:viewsourceold' LIMIT 1 0.123msLCStoreDB::get
48localhost: SELECT iw_prefix,iw_url,iw_api,iw_wikiid,iw_local,iw_trans FROM `interwiki` WHERE iw_prefix = 'en' LIMIT 1 0.133msMediaWiki\Interwiki\ClassicInterwikiLookup::load
49localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_latest,page_touched,page_len,page_content_model FROM `page` WHERE ((page_namespace = 0 AND page_title = 'En:Module:Unicode_data')) 0.131msMediaWiki\Cache\LinkBatch::doQuery (for MediaWiki\CommentFormatter\CommentParser::addPageLink)
50localhost: SELECT iw_prefix,iw_url,iw_api,iw_wikiid,iw_local,iw_trans FROM `interwiki` WHERE iw_prefix = 'en' LIMIT 1 0.117msMediaWiki\Interwiki\ClassicInterwikiLookup::load
51localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:red-link-title' LIMIT 1 0.125msLCStoreDB::get
52localhost: SELECT iw_prefix,iw_url,iw_api,iw_wikiid,iw_local,iw_trans FROM `interwiki` WHERE iw_prefix = 'h' LIMIT 1 0.112msMediaWiki\Interwiki\ClassicInterwikiLookup::load
53localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:nextdiff' LIMIT 1 0.122msLCStoreDB::get
54localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:december' LIMIT 1 0.121msLCStoreDB::get
55localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 2 AND page_title = 'Sourav' LIMIT 1 0.169msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
56localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:talkpagelinktext' LIMIT 1 0.133msLCStoreDB::get
57localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 3 AND page_title = 'Sourav' LIMIT 1 0.126msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
58localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'specialPageAliases' LIMIT 1 0.127msLCStoreDB::get
59localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:contribslink' LIMIT 1 0.120msLCStoreDB::get
60localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pipe-separator' LIMIT 1 0.129msLCStoreDB::get
61localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:parentheses' LIMIT 1 0.115msLCStoreDB::get
62localhost: SELECT ug_user,ug_group,ug_expiry FROM `user_groups` WHERE ug_user = 1 0.138msMediaWiki\User\UserGroupManager::getUserGroupMemberships
63localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:group-bureaucrat' LIMIT 1 0.118msLCStoreDB::get
64localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:grouppage-bureaucrat' LIMIT 1 0.113msLCStoreDB::get
65localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 4 AND page_title = 'Bureaucrats' LIMIT 1 0.145msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
66localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:group-interface-admin' LIMIT 1 0.116msLCStoreDB::get
67localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:grouppage-interface-admin' LIMIT 1 0.114msLCStoreDB::get
68localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 4 AND page_title = 'Interface_administrators' LIMIT 1 0.128msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
69localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:group-sysop' LIMIT 1 0.116msLCStoreDB::get
70localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:grouppage-sysop' LIMIT 1 0.113msLCStoreDB::get
71localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 4 AND page_title = 'Administrators' LIMIT 1 0.128msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
72localhost: SELECT user_editcount FROM `user` WHERE user_id = 1 LIMIT 1 0.123msMediaWiki\User\UserEditTracker::getUserEditCount
73localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:diff-user-edits' LIMIT 1 0.124msLCStoreDB::get
74localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:formatnum-nan' LIMIT 1 0.158msLCStoreDB::get
75localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'compiledPluralRules' LIMIT 1 0.127msLCStoreDB::get
76localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 90 0.234msMediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb
77localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 675 0.179msMediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb
78localhost: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 306 0.143msMediaWiki\Storage\SqlBlobStore::fetchBlobs
79localhost: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 46 0.138msMediaWiki\Storage\SqlBlobStore::fetchBlobs
80localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:lineno' LIMIT 1 0.135msLCStoreDB::get
81localhost: SELECT rev_id AS `value` FROM `revision` WHERE rev_page = 45 AND ((rev_deleted & 1) = 0) AND (rev_timestamp > '20231130124720' OR (rev_timestamp = '20231130124720' AND (rev_id > 675))) AND (rev_timestamp < '20241225055826' OR (rev_timestamp = '20241225055826' AND (rev_id < 90))) LIMIT 1001 0.254msMediaWiki\Revision\RevisionStore::getRevisionIdsBetween
82localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:scribunto-doc-page-name' LIMIT 1 0.139msLCStoreDB::get
83localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 828 AND page_title = 'Unicode_data/doc' LIMIT 1 0.133msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
84localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:scribunto-doc-page-does-not-exist' LIMIT 1 0.118msLCStoreDB::get
85localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:blanknamespace' LIMIT 1 0.160msLCStoreDB::get
86localhost: SELECT ss_total_edits,ss_good_articles,ss_total_pages,ss_users,ss_active_users,ss_images FROM `site_stats` 0.139msMediaWiki\SiteStats\SiteStats::doLoadFromDB
87localhost: SELECT COUNT(*) FROM `user_groups` WHERE ug_group = 'sysop' AND ((ug_expiry IS NULL OR ug_expiry >= '20250316002501')) LIMIT 1 0.176msMediaWiki\SiteStats\SiteStats::numberingroup
88localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:and' LIMIT 1 0.150msLCStoreDB::get
89localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:ellipsis' LIMIT 1 0.155msLCStoreDB::get
90localhost: SELECT pr_type,pr_expiry,pr_level,pr_cascade FROM `page_restrictions` WHERE pr_page = 45 0.516msMediaWiki\Permissions\RestrictionStore::loadRestrictions
91localhost: SELECT pp_page,pp_propname,pp_value FROM `page_props` WHERE pp_page = 45 AND pp_propname = 'templatedata' 0.259msMediaWiki\Page\PageProps::getProperties
92localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1 0.369msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
93localhost: SELECT rev_id FROM `revision` IGNORE INDEX (rev_timestamp) WHERE rev_page = 45 AND (rev_timestamp > '20231130124720' OR (rev_timestamp = '20231130124720' AND (rev_id > 675))) ORDER BY rev_timestamp ASC,rev_id ASC LIMIT 1 0.305msMediaWiki\Revision\RevisionStore::getRelativeRevision
94localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 90 LIMIT 1 0.274msMediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds
95localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:helppage-top-gethelp' LIMIT 1 0.222msLCStoreDB::get
96localhost: COMMIT0.062msMediaWiki\MediaWikiEntryPoint::commitMainTransaction
97localhost: BEGIN0.048msWikimedia\Rdbms\Database::beginIfImplied (MediaWiki\Cache\LinkBatch::doQuery (for Skin::preloadExistence))
98localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_latest,page_touched,page_len,page_content_model FROM `page` WHERE ((page_namespace = 829 AND page_title = 'Unicode_data')) 0.221msMediaWiki\Cache\LinkBatch::doQuery (for Skin::preloadExistence)
99localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-info' LIMIT 1 0.254msLCStoreDB::get
100localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-info' LIMIT 1 0.229msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
101localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:footer-info' LIMIT 1 0.168msLCStoreDB::get
102localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Footer-info' LIMIT 1 0.157msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
103localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-places' LIMIT 1 0.144msLCStoreDB::get
104localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-places' LIMIT 1 0.174msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
105localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-places-privacy' LIMIT 1 0.163msLCStoreDB::get
106localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-places-privacy' LIMIT 1 0.183msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
107localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-footer-places-privacy' LIMIT 1 0.151msLCStoreDB::get
108localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-footer-places-privacy' LIMIT 1 0.172msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
109localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-places-about' LIMIT 1 0.148msLCStoreDB::get
110localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-places-about' LIMIT 1 0.152msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
111localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-footer-places-about' LIMIT 1 0.141msLCStoreDB::get
112localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-footer-places-about' LIMIT 1 0.182msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
113localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-places-disclaimers' LIMIT 1 0.155msLCStoreDB::get
114localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-places-disclaimers' LIMIT 1 0.185msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
115localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-footer-places-disclaimers' LIMIT 1 0.161msLCStoreDB::get
116localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-footer-places-disclaimers' LIMIT 1 0.183msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
117localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:footer-places' LIMIT 1 0.157msLCStoreDB::get
118localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Footer-places' LIMIT 1 0.191msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
119localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-icons' LIMIT 1 0.142msLCStoreDB::get
120localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-icons' LIMIT 1 0.119msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
121localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:footer-icons' LIMIT 1 0.108msLCStoreDB::get
122localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Footer-icons' LIMIT 1 0.114msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
123localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pt-login' LIMIT 1 0.155msLCStoreDB::get
124localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pt-createaccount' LIMIT 1 0.143msLCStoreDB::get
125localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:nstab-module' LIMIT 1 0.131msLCStoreDB::get
126localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:nstab-module_talk' LIMIT 1 0.117msLCStoreDB::get
127localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Nstab-module_talk' LIMIT 1 0.129msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
128localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:view-view' LIMIT 1 0.160msLCStoreDB::get
129localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'View-view' LIMIT 1 0.148msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
130localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-2022-view-view' LIMIT 1 0.137msLCStoreDB::get
131localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Vector-2022-view-view' LIMIT 1 0.139msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
132localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:skin-view-view' LIMIT 1 0.142msLCStoreDB::get
133localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-2022-action-viewsource' LIMIT 1 0.131msLCStoreDB::get
134localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Vector-2022-action-viewsource' LIMIT 1 0.141msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
135localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:skin-action-viewsource' LIMIT 1 0.136msLCStoreDB::get
136localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-2022-view-history' LIMIT 1 0.080msLCStoreDB::get
137localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Vector-2022-view-history' LIMIT 1 0.088msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
138localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:skin-view-history' LIMIT 1 0.077msLCStoreDB::get
139localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:help-mediawiki' LIMIT 1 0.123msLCStoreDB::get
140localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pageinfo-toolboxlink' LIMIT 1 0.134msLCStoreDB::get
141localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-navigation' LIMIT 1 0.125msLCStoreDB::get
142localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-help-mediawiki' LIMIT 1 0.100msLCStoreDB::get
143localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-help-mediawiki' LIMIT 1 0.102msLCStoreDB::get
144localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-tb' LIMIT 1 0.082msLCStoreDB::get
145localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-lang' LIMIT 1 0.077msLCStoreDB::get
146localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:otherlanguages' LIMIT 1 0.098msLCStoreDB::get
147localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-user-interface-preferences' LIMIT 1 0.078msLCStoreDB::get
148localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:user-interface-preferences' LIMIT 1 0.073msLCStoreDB::get
149localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'User-interface-preferences' LIMIT 1 0.157msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
150localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-user-page' LIMIT 1 0.111msLCStoreDB::get
151localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:user-page' LIMIT 1 0.095msLCStoreDB::get
152localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'User-page' LIMIT 1 0.136msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
153localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-personal' LIMIT 1 0.091msLCStoreDB::get
154localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-notifications' LIMIT 1 0.078msLCStoreDB::get
155localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-notifications' LIMIT 1 0.087msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
156localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:notifications' LIMIT 1 0.137msLCStoreDB::get
157localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Notifications' LIMIT 1 0.119msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
158localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-associated-pages' LIMIT 1 0.091msLCStoreDB::get
159localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-associated-pages' LIMIT 1 0.092msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
160localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-nstab-module' LIMIT 1 0.144msLCStoreDB::get
161localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-nstab-module' LIMIT 1 0.111msLCStoreDB::get
162localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-ca-nstab-module' LIMIT 1 0.101msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
163localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-nstab' LIMIT 1 0.169msLCStoreDB::get
164localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:associated-pages' LIMIT 1 0.095msLCStoreDB::get
165localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Associated-pages' LIMIT 1 0.121msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
166localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-namespaces' LIMIT 1 0.127msLCStoreDB::get
167localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-views' LIMIT 1 0.143msLCStoreDB::get
168localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-view' LIMIT 1 0.098msLCStoreDB::get
169localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-view' LIMIT 1 0.103msLCStoreDB::get
170localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-cactions' LIMIT 1 0.148msLCStoreDB::get
171localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:cactions' LIMIT 1 0.107msLCStoreDB::get
172localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-variants' LIMIT 1 0.080msLCStoreDB::get
173localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-user-menu-anon-editor' LIMIT 1 0.131msLCStoreDB::get
174localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-user-menu-anon-editor' LIMIT 1 0.162msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
175localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:user-menu-anon-editor' LIMIT 1 0.137msLCStoreDB::get
176localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'User-menu-anon-editor' LIMIT 1 0.126msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
177localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-views-overflow' LIMIT 1 0.153msLCStoreDB::get
178localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-views-overflow' LIMIT 1 0.182msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
179localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-more-view' LIMIT 1 0.125msLCStoreDB::get
180localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-ca-more-view' LIMIT 1 0.136msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
181localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-more-view' LIMIT 1 0.088msLCStoreDB::get
182localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-ca-more-view' LIMIT 1 0.091msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
183localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-more-viewsource' LIMIT 1 0.143msLCStoreDB::get
184localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-ca-more-viewsource' LIMIT 1 0.152msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
185localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-more-viewsource' LIMIT 1 0.124msLCStoreDB::get
186localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-ca-more-viewsource' LIMIT 1 0.146msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
187localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-more-history' LIMIT 1 0.139msLCStoreDB::get
188localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-ca-more-history' LIMIT 1 0.111msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
189localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-more-history' LIMIT 1 0.095msLCStoreDB::get
190localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-ca-more-history' LIMIT 1 0.096msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
191localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:views-overflow' LIMIT 1 0.151msLCStoreDB::get
192localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Views-overflow' LIMIT 1 0.138msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
193localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:namespacenotice-828' LIMIT 1 0.119msLCStoreDB::get
194localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Namespacenotice-828' LIMIT 1 0.121msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
195localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-opt-out-tooltip' LIMIT 1 0.130msLCStoreDB::get
196localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-opt-out' LIMIT 1 0.121msLCStoreDB::get
197localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-action-toggle-sidebar' LIMIT 1 0.109msLCStoreDB::get
198localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-main-menu-tooltip' LIMIT 1 0.109msLCStoreDB::get
199localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-jumptosearch' LIMIT 1 0.102msLCStoreDB::get
200localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-jumptocontent' LIMIT 1 0.101msLCStoreDB::get
201localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-toc-beginning' LIMIT 1 0.103msLCStoreDB::get
202localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-toc-label' LIMIT 1 0.103msLCStoreDB::get
203localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-toc-menu-tooltip' LIMIT 1 0.099msLCStoreDB::get
204localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-toc-collapsible-button-label' LIMIT 1 0.112msLCStoreDB::get
205localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-pin-element-label' LIMIT 1 0.128msLCStoreDB::get
206localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-unpin-element-label' LIMIT 1 0.108msLCStoreDB::get
207localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-site-nav-label' LIMIT 1 0.111msLCStoreDB::get
208localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:sitesubtitle' LIMIT 1 0.116msLCStoreDB::get
209localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:sitetitle' LIMIT 1 0.110msLCStoreDB::get
210localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-page-tools-nav-label' LIMIT 1 0.117msLCStoreDB::get
211localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:empty-language-selector-body' LIMIT 1 0.121msLCStoreDB::get
212localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-appearance-label' LIMIT 1 0.104msLCStoreDB::get
213localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-no-language-button-label' LIMIT 1 0.132msLCStoreDB::get
214localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-no-language-button-aria-label' LIMIT 1 0.099msLCStoreDB::get
215localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-language-variant-switcher-label' LIMIT 1 0.103msLCStoreDB::get
216localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-main-menu-label' LIMIT 1 0.115msLCStoreDB::get
217localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-appearance-tooltip' LIMIT 1 0.108msLCStoreDB::get
218localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:variantname-en' LIMIT 1 0.132msLCStoreDB::get
219localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Variantname-en' LIMIT 1 0.147msMediaWiki\Page\PageStore::getPageByNameViaLinkCache
220localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-vector-anon-user-menu-title' LIMIT 1 0.131msLCStoreDB::get
221localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-page-tools-actions-label' LIMIT 1 0.144msLCStoreDB::get
222localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-page-tools-general-label' LIMIT 1 0.131msLCStoreDB::get
223localhost: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'u730917019_wikih:lightncandy-compiled:2.2.0:1310722:/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/templates:skin' AND (exptime >= '20250316002501') 0.224msSqlBagOStuff::fetchBlobs
224localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-page-tools-label' LIMIT 1 0.186msLCStoreDB::get
225localhost: SELECT page_namespace,page_title,page_touched,page_len,page_latest FROM `page` WHERE ((page_namespace = 8 AND page_title IN ('Common.css','Noscript.css','Print.css','Vector-2022.css') )) 0.239msMediaWiki\ResourceLoader\WikiModule::preloadTitleInfo
226localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:january' LIMIT 1 0.155msLCStoreDB::get
227localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:february' LIMIT 1 0.112msLCStoreDB::get
228localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:march' LIMIT 1 0.110msLCStoreDB::get
229localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:april' LIMIT 1 0.109msLCStoreDB::get
230localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:may_long' LIMIT 1 0.109msLCStoreDB::get
231localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:june' LIMIT 1 0.108msLCStoreDB::get
232localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:july' LIMIT 1 0.099msLCStoreDB::get
233localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:august' LIMIT 1 0.104msLCStoreDB::get
234localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:september' LIMIT 1 0.107msLCStoreDB::get
235localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:october' LIMIT 1 0.103msLCStoreDB::get
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory


  • Start request GET /index.php?diff=next&oldid=675&title=Module%3AUnicode_data
    IP: 18.188.151.206
    HTTP HEADERS:
    HOST: soutar36.com
    PRAGMA: no-cache
    CACHE-CONTROL: no-cache
    SEC-CH-UA: "HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"
    SEC-CH-UA-MOBILE: ?0
    SEC-CH-UA-PLATFORM: "Windows"
    UPGRADE-INSECURE-REQUESTS: 1
    USER-AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
    ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
    SEC-FETCH-SITE: none
    SEC-FETCH-MODE: navigate
    SEC-FETCH-USER: ?1
    SEC-FETCH-DEST: document
    ACCEPT-ENCODING: gzip, deflate, br, zstd
    PRIORITY: u=0, i
    COOKIE: ls_smartpush=1; VEE=wikitext
    (end headers)
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [session] SessionManager using store SqlBagOStuff
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [localisation] LocalisationCache using store LCStoreDB
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] MainWANObjectCache using store Wikimedia\ObjectCache\EmptyBagOStuff
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [session] SessionBackend "hr54ll7iu1cgbc8ul7hvil01p7s1tfek" is unsaved, marking dirty in constructor
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [session] SessionBackend "hr54ll7iu1cgbc8ul7hvil01p7s1tfek" save: dataDirty=1 metaDirty=1 forcePersist=0
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [cookie] already deleted setcookie: "u730917019_wikih_session", "", "1710548701", "/", "", "1", "1", ""
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [cookie] already deleted setcookie: "u730917019_wikihUserID", "", "1710548701", "/", "", "1", "1", ""
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [cookie] already deleted setcookie: "u730917019_wikihToken", "", "1710548701", "/", "", "1", "1", ""
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [cookie] already deleted setcookie: "forceHTTPS", "", "1710548701", "/", "", "", "1", ""
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [session] SessionBackend "hr54ll7iu1cgbc8ul7hvil01p7s1tfek" data dirty due to dirty(): MediaWiki\Session\SessionManager->getSessionForRequest/MediaWiki\Session\SessionManager->getInitialSession/MediaWiki\Session\Session->getToken/MediaWiki\Session\Session->set/MediaWiki\Session\SessionBackend->dirty
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [session] SessionBackend "hr54ll7iu1cgbc8ul7hvil01p7s1tfek" save: dataDirty=1 metaDirty=0 forcePersist=0
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\DatabaseMySQL::open [0.09ms] localhost: SET group_concat_max_len = 262144, `sql_mode` = ''
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reallyOpenConnection: opened new connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\DatabaseMySQL::serverIsReadOnly [0.156ms] localhost: SELECT @@GLOBAL.read_only AS Value
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:rdbms-server-readonly:localhost): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\Database::beginIfImplied (MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds) [0.038ms] localhost: BEGIN
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.329ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [MessageCache] MessageCache using store SqlBagOStuff
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • MediaWiki\Parser\ParserFactory: using default preprocessor
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [SQLBagOStuff] MicroStash using store SqlBagOStuff
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.615ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'deps' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.271ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'list' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.167ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'preload' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.158ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'preload' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.14ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'namespaceGenderAliases' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] WikiPage::pageData [0.2ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_random,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 828 AND page_title = 'Unicode_data' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.281ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 676 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:revision-row-1.29:u730917019_wikih:45:676): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb [0.229ms] localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 676
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Storage\NameTableStore::loadTable [0.141ms] localhost: SELECT role_id AS `id`,role_name AS `name` FROM `slot_roles` ORDER BY id
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:NameTableSqlStore:slot_roles:u730917019_wikih): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Storage\NameTableStore::loadTable [0.14ms] localhost: SELECT model_id AS `id`,model_name AS `name` FROM `content_models` ORDER BY id
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:NameTableSqlStore:content_models:u730917019_wikih): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page-content-model:676): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [ContentHandler] Registered handler for Scribunto: MediaWiki\Extension\Scribunto\ScribuntoContentHandler
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(u730917019_wikih:page-content-model:676): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(u730917019_wikih:page-content-model:676): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.288ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • Article::view: showing diff page
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb [0.213ms] localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 675
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • DifferenceEngine old '675' new 'next' rcid '0'
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.27ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::getRelativeRevision [0.263ms] localhost: SELECT rev_id FROM `revision` IGNORE INDEX (rev_timestamp) WHERE rev_page = 45 AND (rev_timestamp > '20231130124720' OR (rev_timestamp = '20231130124720' AND (rev_id > 675))) ORDER BY rev_timestamp ASC,rev_id ASC LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.253ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 90 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.262ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 90 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.237ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] DifferenceEngine::loadRevisionData [0.218ms] localhost: SELECT ct_tag_id AS `value` FROM `change_tag` WHERE ct_rev_id = 675
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] DifferenceEngine::loadRevisionData [0.133ms] localhost: SELECT ct_tag_id AS `value` FROM `change_tag` WHERE ct_rev_id = 90
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [localisation] LocalisationCache::loadCoreData: got localisation for en from source
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\DatabaseMySQL::open [0.14ms] localhost: SET group_concat_max_len = 262144, `sql_mode` = ''
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reallyOpenConnection: opened new connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(global:rdbms-server-readonly:localhost): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] SqlBagOStuff::fetchBlobs [0.29ms] localhost: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'u730917019_wikih:messages:en' AND (exptime >= '20250316002501')
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [SQLBagOStuff] SqlBagOStuff debug: SqlBagOStuff::fetchBlobs: retrieved u730917019_wikih:messages:en; expiry time is 99991231235959
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] SqlBagOStuff::fetchBlobs [0.12ms] localhost: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'u730917019_wikih:messages:en:status' AND (exptime >= '20250316002501')
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] SqlBagOStuff::doLock [0.096ms] localhost: SELECT IF(GET_LOCK('u730917019_wikih:messages:en',0),UNIX_TIMESTAMP(SYSDATE(6)),NULL) AS acquired
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MessageCache::loadFromDB(en)-big [0.267ms] localhost: SELECT page_title,page_latest FROM `page` WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title NOT LIKE '%/%' ESCAPE '`') AND (page_len > 10000)
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.88ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'list' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MessageCache::loadFromDB(en)-small [0.351ms] localhost: SELECT /*! STRAIGHT_JOIN */ rev_id,rev_page,rev_actor,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len FROM `page` JOIN `revision` ON ((page_id = rev_page)) JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title NOT LIKE '%/%' ESCAPE '`') AND (page_len <= 10000) AND (page_latest = rev_id)
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::getSlotRowsForBatch [0.235ms] localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 953 AND slot_role_id = 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0.15ms] localhost: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 407
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [ContentHandler] Registered handler for wikitext: MediaWiki\Content\WikitextContentHandler
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.233ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'magicWords' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] SqlBagOStuff::modifyTableSpecificBlobsForSet [0.159ms] localhost: REPLACE INTO `objectcache` (keyname,value,exptime) VALUES ('u730917019_wikih:messages:en','��M��0�D�\n����B��I\r�.B��=\"����I����]��e�L��?�Q0�a��uc-Ė#��)Ͻ]vp�$CQ߻�̏���������r52x��᜔U��!6L� ��m��R��lU@D�bskt�q��\"����\rR�v�!��Yy�?/�$(���pD��?','99991231235959')
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] SqlBagOStuff::doUnlock [0.061ms] localhost: SELECT RELEASE_LOCK('u730917019_wikih:messages:en') AS released
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [MessageCache] MessageCache::loadUnguarded: Loading en... local cache is empty, global cache is expired/volatile, loading from DB
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.127ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:difference-title' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [SQLBagOStuff] MainObjectStash using store SqlBagOStuff
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.162ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:group-user' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.124ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:grouppage-user' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.141ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'namespaceAliases' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::getRelativeRevision [0.214ms] localhost: SELECT rev_id FROM `revision` IGNORE INDEX (rev_timestamp) WHERE rev_page = 45 AND (rev_timestamp < '20231130124720' OR (rev_timestamp = '20231130124720' AND (rev_id < 675))) ORDER BY rev_timestamp DESC,rev_id DESC LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.225ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 89 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.123ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:previousdiff' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.134ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:recentchanges-label-minor' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.132ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:minoreditletter' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • Unstubbing $wgLang on call of $wgLang::getDatePreferenceMigrationMap from MediaWiki\Language\Language->internalUserTimeAndDate
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.141ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:november' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.132ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:revisionasof' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.123ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:viewsourceold' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Interwiki\ClassicInterwikiLookup::load [0.133ms] localhost: SELECT iw_prefix,iw_url,iw_api,iw_wikiid,iw_local,iw_trans FROM `interwiki` WHERE iw_prefix = 'en' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:interwiki:en): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Cache\LinkBatch::doQuery (for MediaWiki\CommentFormatter\CommentParser::addPageLink) [0.131ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_latest,page_touched,page_len,page_content_model FROM `page` WHERE ((page_namespace = 0 AND page_title = 'En:Module:Unicode_data'))
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Interwiki\ClassicInterwikiLookup::load [0.117ms] localhost: SELECT iw_prefix,iw_url,iw_api,iw_wikiid,iw_local,iw_trans FROM `interwiki` WHERE iw_prefix = 'en' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:interwiki:en): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.125ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:red-link-title' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Interwiki\ClassicInterwikiLookup::load [0.112ms] localhost: SELECT iw_prefix,iw_url,iw_api,iw_wikiid,iw_local,iw_trans FROM `interwiki` WHERE iw_prefix = 'h' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:interwiki:h): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.122ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:nextdiff' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.121ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:december' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.169ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 2 AND page_title = 'Sourav' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.133ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:talkpagelinktext' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.126ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 3 AND page_title = 'Sourav' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.127ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'specialPageAliases' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.12ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:contribslink' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.129ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pipe-separator' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.115ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:parentheses' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\User\UserGroupManager::getUserGroupMemberships [0.138ms] localhost: SELECT ug_user,ug_group,ug_expiry FROM `user_groups` WHERE ug_user = 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.118ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:group-bureaucrat' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.113ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:grouppage-bureaucrat' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.145ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 4 AND page_title = 'Bureaucrats' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.116ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:group-interface-admin' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.114ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:grouppage-interface-admin' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.128ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 4 AND page_title = 'Interface_administrators' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.116ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:group-sysop' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.113ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:grouppage-sysop' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.128ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 4 AND page_title = 'Administrators' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\User\UserEditTracker::getUserEditCount [0.123ms] localhost: SELECT user_editcount FROM `user` WHERE user_id = 1 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.124ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:diff-user-edits' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.158ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:formatnum-nan' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.127ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'compiledPluralRules' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb [0.234ms] localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 90
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::loadSlotRecordsFromDb [0.179ms] localhost: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `slots` JOIN `content` ON ((slot_content_id = content_id)) WHERE slot_revision_id = 675
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0.143ms] localhost: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 306
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:u730917019_wikih:tt%3A306): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0.138ms] localhost: SELECT old_id,old_text,old_flags FROM `text` WHERE old_id = 46
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:u730917019_wikih:tt%3A46): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • DifferenceEngine old '0' new '0' rcid '0'
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.135ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:lineno' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::getRevisionIdsBetween [0.254ms] localhost: SELECT rev_id AS `value` FROM `revision` WHERE rev_page = 45 AND ((rev_deleted & 1) = 0) AND (rev_timestamp > '20231130124720' OR (rev_timestamp = '20231130124720' AND (rev_id > 675))) AND (rev_timestamp < '20241225055826' OR (rev_timestamp = '20241225055826' AND (rev_id < 90))) LIMIT 1001
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(u730917019_wikih:page-content-model:676): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(u730917019_wikih:page-content-model:676): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [ParserCache] Creating ParserCache instance for pcache
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(u730917019_wikih:page-content-model:676): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.139ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:scribunto-doc-page-name' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.133ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 828 AND page_title = 'Unicode_data/doc' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:828:a04a5d968de60220137d8587d13cc152bd3518de): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.118ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:scribunto-doc-page-does-not-exist' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [Scribunto] MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::__construct: creating interpreter: 'exec' '/bin/sh' '/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaStandalone/lua_ulimit.sh' '7' '8' '51200' ''\''/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaStandalone/binaries/lua5_1_5_linux_64_generic/lua'\'' '\''/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaStandalone/mw_main.lua'\'' '\''/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes'\'' '\''0'\'' '\''8'\'''
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [gitinfo] Candidate cacheFile=/home/u730917019/domains/soutar36.com/public_html/gitinfo.json for /home/u730917019/domains/soutar36.com/public_html
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [gitinfo] Cache incomplete for /home/u730917019/domains/soutar36.com/public_html
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.16ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:blanknamespace' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • MediaWiki\SiteStats\SiteStats::loadAndLazyInit: reading site_stats from replica DB
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\SiteStats\SiteStats::doLoadFromDB [0.139ms] localhost: SELECT ss_total_edits,ss_good_articles,ss_total_pages,ss_users,ss_active_users,ss_images FROM `site_stats`
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\SiteStats\SiteStats::numberingroup [0.176ms] localhost: SELECT COUNT(*) FROM `user_groups` WHERE ug_group = 'sysop' AND ((ug_expiry IS NULL OR ug_expiry >= '20250316002501')) LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:SiteStats:groupcounts:sysop): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.15ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:and' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.155ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:ellipsis' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [exec] Creating base path /home/u730917019/domains/soutar36.com/public_html/images/temp/shellbox-7c0b16634f2d3890
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [exec] Executing: /bin/bash '/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/limit.sh' ''\''/home/u730917019/domains/soutar36.com/public_html/extensions/SyntaxHighlight_GeSHi/includes/../pygments/pygmentize'\'' '\''-l'\'' '\''lua'\'' '\''-f'\'' '\''html'\'' '\''-O'\'' '\''cssclass=mw-highlight,encoding=utf-8,linenos=inline,linespans=L'\'' '\''file'\''' 'SB_INCLUDE_STDERR=;SB_CPU_LIMIT=180; SB_CGROUP='\'''\''; SB_MEM_LIMIT=314572800; SB_FILE_SIZE_LIMIT=104857600; SB_WALL_CLOCK_LIMIT=180; SB_USE_LOG_PIPE=yes'
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [exec] Removed file "/home/u730917019/domains/soutar36.com/public_html/images/temp/shellbox-7c0b16634f2d3890/file"
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [exec] Removed directory "/home/u730917019/domains/soutar36.com/public_html/images/temp/shellbox-7c0b16634f2d3890"
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:highlight:936d8594331b022581d15748470d3fff): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(global:rdbms-server-readonly:localhost): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Permissions\RestrictionStore::loadRestrictions [0.516ms] localhost: SELECT pr_type,pr_expiry,pr_level,pr_cascade FROM `page_restrictions` WHERE pr_page = 45
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page-restrictions:v1:45:676): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageProps::getProperties [0.259ms] localhost: SELECT pp_page,pp_propname,pp_value FROM `page_props` WHERE pp_page = 45 AND pp_propname = 'templatedata'
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.369ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 675 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::getRelativeRevision [0.305ms] localhost: SELECT rev_id FROM `revision` IGNORE INDEX (rev_timestamp) WHERE rev_page = 45 AND (rev_timestamp > '20231130124720' OR (rev_timestamp = '20231130124720' AND (rev_id > 675))) ORDER BY rev_timestamp ASC,rev_id ASC LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.274ms] localhost: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,rev_actor,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `revision` JOIN `actor` `actor_rev_user` ON ((actor_rev_user.actor_id = rev_actor)) JOIN `comment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = rev_comment_id)) JOIN `page` ON ((page_id = rev_page)) LEFT JOIN `user` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 90 LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(global:rdbms-server-readonly:localhost): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(global:rdbms-server-readonly:localhost): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.222ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:helppage-top-gethelp' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\MediaWikiEntryPoint::commitMainTransaction [0.062ms] localhost: COMMIT
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • MediaWiki\MediaWikiEntryPoint::commitMainTransaction: primary transaction round committed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [DeferredUpdates] DeferredUpdates::run: started MediaWiki\Deferred\MWCallableUpdate_WikiPage->doViewUpdates #1107
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [DeferredUpdates] DeferredUpdates::run: ended MediaWiki\Deferred\MWCallableUpdate_WikiPage->doViewUpdates #1107, processing time: 0.00014400482177734
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • MediaWiki\MediaWikiEntryPoint::commitMainTransaction: pre-send deferred updates completed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • MediaWiki\MediaWikiEntryPoint::commitMainTransaction: session changes committed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::getAnyOpenConnection: found 'round' connection to #0.
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Cannot use ChronologyProtector with EmptyBagOStuff
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LBFactory::shutdown: finished ChronologyProtector shutdown
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LBFactory shutdown completed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • MediaWiki\Output\OutputPage::haveCacheVaryCookies: no cache-varying cookies found
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] getWithSetCallback(global:rdbms-server-readonly:localhost): process cache hit
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\Database::beginIfImplied (MediaWiki\Cache\LinkBatch::doQuery (for Skin::preloadExistence)) [0.048ms] localhost: BEGIN
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Cache\LinkBatch::doQuery (for Skin::preloadExistence) [0.221ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_latest,page_touched,page_len,page_content_model FROM `page` WHERE ((page_namespace = 829 AND page_title = 'Unicode_data'))
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.254ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-info' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.229ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-info' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:e9a5ae1c8c14bbc49a89895e7bf7a1e87f3b4a45): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-footer-info): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.168ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:footer-info' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.157ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Footer-info' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:1c1cc4e608f675b94b51380fbe902d9fdd571be8): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Footer-info): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.144ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-places' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.174ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-places' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:7a4fa4f552247124e5865f44c2e43a02086610b0): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-footer-places): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.163ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-places-privacy' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.183ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-places-privacy' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:734c4078759c2292be9e9795c7a74ef87d074779): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-footer-places-privacy): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.151ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-footer-places-privacy' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.172ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-footer-places-privacy' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:3864a0b0b2a1fc783bea1bd0e914723d5aff38d4): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Accesskey-footer-places-privacy): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.148ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-places-about' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.152ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-places-about' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:5eb3e91a5322a3d53da9855ca4156afc735f1427): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-footer-places-about): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.141ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-footer-places-about' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.182ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-footer-places-about' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:9bcd402c7633c2cfe82486d8d4d8d6e8ed30731d): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Accesskey-footer-places-about): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.155ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-places-disclaimers' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.185ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-places-disclaimers' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:51b1aadd5a7b5330bc5634704893b47aa8c62780): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-footer-places-disclaimers): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.161ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-footer-places-disclaimers' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.183ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-footer-places-disclaimers' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:ccad5b2df7a19fe5198c6859b9f78206905cbe11): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Accesskey-footer-places-disclaimers): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.157ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:footer-places' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.191ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Footer-places' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:bbc89cc33a3921f2442aea81be6c21aaab524797): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Footer-places): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.142ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-footer-icons' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.119ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-footer-icons' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:a22833dd52ee6cc8a01cb69d745018b36897d9ac): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-footer-icons): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.108ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:footer-icons' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.114ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Footer-icons' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:8cfd80862e4b8e189c23a54d71d2ad28022f3dac): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Footer-icons): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.155ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pt-login' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.143ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pt-createaccount' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.131ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:nstab-module' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.117ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:nstab-module_talk' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.129ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Nstab-module_talk' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:d286763027108d864f3e1bdbe6b0fcbb3216c34b): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Nstab-module_talk): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.16ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:view-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.148ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'View-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:bed9db6016ee14f1ae7f119f7924d1dd4c35531f): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:View-view): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.137ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-2022-view-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.139ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Vector-2022-view-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:8d5dfb1dbb0f384a3a71dc46670164be2c153df5): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Vector-2022-view-view): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.142ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:skin-view-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.131ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-2022-action-viewsource' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.141ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Vector-2022-action-viewsource' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:90c8acca5452fbb172d3fc205475e361ba6f14ac): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Vector-2022-action-viewsource): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.136ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:skin-action-viewsource' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.08ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-2022-view-history' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.088ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Vector-2022-view-history' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:b07de43e7e57a5d27593a2d785756087fb56d2a2): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Vector-2022-view-history): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.077ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:skin-view-history' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.123ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:help-mediawiki' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.134ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:pageinfo-toolboxlink' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.125ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-navigation' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.1ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-n-help-mediawiki' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.102ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-n-help-mediawiki' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.082ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-tb' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.077ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-lang' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.098ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:otherlanguages' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.078ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-user-interface-preferences' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.073ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:user-interface-preferences' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.157ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'User-interface-preferences' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:cc55e312a5aa3b8484b6bc564e3edba47c592500): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:User-interface-preferences): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.111ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-user-page' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.095ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:user-page' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.136ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'User-page' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:c70b5a4895ac1b24b96a7e32d0a18d0d4cbe9bdc): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:User-page): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.091ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-personal' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.078ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-notifications' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.087ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-notifications' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:5e89b9c18080b9e1a98fafc0da774d0eec80a023): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-p-notifications): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.137ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:notifications' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.119ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Notifications' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:753a22b2eb617204efee4644795034b8ace1ee14): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Notifications): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.091ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-associated-pages' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.092ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-associated-pages' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:ef738cc53166fcf45692d0ade99df069e848dfb2): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-p-associated-pages): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.144ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-nstab-module' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.111ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-nstab-module' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.101ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-ca-nstab-module' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:c867e5c30a08645b4bac0b20fb1a9da1dd0258d8): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Accesskey-ca-nstab-module): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.169ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-nstab' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.095ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:associated-pages' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.121ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Associated-pages' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:cb7b37d2da1ced2fadc11aa3317c1a8efcf39648): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Associated-pages): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.127ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-namespaces' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.143ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-views' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.098ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.103ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.148ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-cactions' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.107ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:cactions' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.08ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-variants' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.131ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-user-menu-anon-editor' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.162ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-user-menu-anon-editor' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:784e6581f9ba253d258a1e0f939da5b85058f542): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-p-user-menu-anon-editor): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.137ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:user-menu-anon-editor' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.126ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'User-menu-anon-editor' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:a7fd2e3f68ab0aacb481df88aa5d8f5668433ccd): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:User-menu-anon-editor): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.153ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-p-views-overflow' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.182ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-p-views-overflow' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:f055c2110fc07b3a656c5c3cafcc4b6c94bb48af): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-p-views-overflow): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.125ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-more-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.136ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-ca-more-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:1bf634fc2f6cde582ce7a23b99fec41111400523): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-ca-more-view): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.088ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-more-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.091ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-ca-more-view' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:72600fc5c4aba46a6af1159b0f2af156aeee825e): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Accesskey-ca-more-view): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.143ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-more-viewsource' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.152ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-ca-more-viewsource' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:98f4595715000daa4ed760b8ea9d25a0db11520d): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-ca-more-viewsource): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.124ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-more-viewsource' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.146ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-ca-more-viewsource' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:2939f1e32282128cc032eb939bfe4e6dcded5740): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Accesskey-ca-more-viewsource): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.139ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-ca-more-history' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.111ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Tooltip-ca-more-history' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:a505b38913ffd378a36a9aac2fda9898dd0b14e8): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Tooltip-ca-more-history): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.095ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:accesskey-ca-more-history' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.096ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Accesskey-ca-more-history' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:6b60ac5009ccbede7cc878a0e103eba6364b3d21): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Accesskey-ca-more-history): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.151ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:views-overflow' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.138ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Views-overflow' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:7c6e666dd6029fe6c93284ac7d8c00a46b68e75f): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Views-overflow): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.119ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:namespacenotice-828' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.121ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Namespacenotice-828' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:299834854f976d975af25418bb82bd7c51898312): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Namespacenotice-828): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.13ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-opt-out-tooltip' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.121ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-opt-out' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.109ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-action-toggle-sidebar' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.109ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-main-menu-tooltip' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.102ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-jumptosearch' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.101ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-jumptocontent' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.103ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-toc-beginning' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.103ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-toc-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.099ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-toc-menu-tooltip' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.112ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-toc-collapsible-button-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.128ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-pin-element-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.108ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-unpin-element-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.111ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-site-nav-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.116ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:sitesubtitle' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.11ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:sitetitle' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.117ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-page-tools-nav-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.121ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:empty-language-selector-body' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.104ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-appearance-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.132ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-no-language-button-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.099ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-no-language-button-aria-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.103ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-language-variant-switcher-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.115ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-main-menu-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.108ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-appearance-tooltip' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.132ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:variantname-en' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\Page\PageStore::getPageByNameViaLinkCache [0.147ms] localhost: SELECT page_id,page_namespace,page_title,page_is_redirect,page_is_new,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `page` WHERE page_namespace = 8 AND page_title = 'Variantname-en' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:page:8:2065ff0b4b26c26fa83f8ad4a9907bb9ded198d0): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(u730917019_wikih:messages-big:3d64222811cbc7571961283f076f912d:Variantname-en): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.131ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:tooltip-vector-anon-user-menu-title' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.144ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-page-tools-actions-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.131ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-page-tools-general-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] SqlBagOStuff::fetchBlobs [0.224ms] localhost: SELECT keyname,value,exptime FROM `objectcache` WHERE keyname = 'u730917019_wikih:lightncandy-compiled:2.2.0:1310722:/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/templates:skin' AND (exptime >= '20250316002501')
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [SQLBagOStuff] SqlBagOStuff debug: SqlBagOStuff::fetchBlobs: retrieved u730917019_wikih:lightncandy-compiled:2.2.0:1310722:/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/templates:skin; expiry time is 20250320125637
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.186ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:vector-page-tools-label' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] MediaWiki\ResourceLoader\WikiModule::preloadTitleInfo [0.239ms] localhost: SELECT page_namespace,page_title,page_touched,page_len,page_latest FROM `page` WHERE ((page_namespace = 8 AND page_title IN ('Common.css','Noscript.css','Print.css','Vector-2022.css') ))
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:resourceloader-titleinfo:u730917019_wikih:6135137813eeac57c4466720d89737d8343704df): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [objectcache] fetchOrRegenerate(global:resourceloader-titleinfo:u730917019_wikih:da39a3ee5e6b4b0d3255bfef95601890afd80709): miss, new value computed
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • MediaWiki\Output\OutputPage::getContentLangForJS has to guess ParserOutput language
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.155ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:january' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.112ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:february' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.11ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:march' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.109ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:april' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.109ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:may_long' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.108ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:june' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.099ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:july' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.104ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:august' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.107ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:september' LIMIT 1
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] Wikimedia\Rdbms\LoadBalancer::reuseOrOpenConnectionForNewRef: reusing connection for 0/u730917019_wikih
  • [silenced-error] [bfeb8be94d6f392a2fa0e3b8] /index.php?diff=next&oldid=675&title=Module%3AUnicode_data PHP Warning: file_put_contents(/path/to/logfile.log): Failed to open stream: No such file or directory
  • [rdbms] LCStoreDB::get [0.103ms] localhost: SELECT lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'messages:october' LIMIT 1
GET /index.php?diff=next&oldid=675&title=Module%3AUnicode_data

Headers

KeyValue
HOSTsoutar36.com
PRAGMAno-cache
CACHE-CONTROLno-cache
SEC-CH-UA"HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"
SEC-CH-UA-MOBILE?0
SEC-CH-UA-PLATFORM"Windows"
UPGRADE-INSECURE-REQUESTS1
USER-AGENTMozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
ACCEPTtext/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
SEC-FETCH-SITEnone
SEC-FETCH-MODEnavigate
SEC-FETCH-USER?1
SEC-FETCH-DESTdocument
ACCEPT-ENCODINGgzip, deflate, br, zstd
PRIORITYu=0, i
COOKIEls_smartpush=1; VEE=wikitext

Parameters

KeyValue
diffnext
oldid675
titleModule:Unicode_data
/home/u730917019/domains/soutar36.com/public_html/index.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/PHPVersionCheck.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/WebStart.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/BootstrapHelperFunctions.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Setup.php23 KB
/home/u730917019/domains/soutar36.com/public_html/includes/AutoLoader.php10 KB
/home/u730917019/domains/soutar36.com/public_html/autoload.php344 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/autoload.php756 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/autoload_real.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/platform_check.php925 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/ClassLoader.php16 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/include_paths.php428 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/autoload_static.php241 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/ralouphie/getallheaders/src/getallheaders.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/symfony/deprecation-contracts/function.php1,008 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/base-convert/src/Functions.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/symfony/polyfill-php81/bootstrap.php738 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/guzzlehttp/guzzle/src/functions_include.php160 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/guzzlehttp/guzzle/src/functions.php6 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/symfony/polyfill-php80/bootstrap.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/timestamp/src/defines.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/symfony/polyfill-php82/bootstrap.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/symfony/polyfill-php83/bootstrap.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/symfony/polyfill-php83/bootstrap81.php954 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Defines.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/mime/defines.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/defines.php852 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/IDatabase.php47 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/IReadableDatabase.php27 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/platform/ISQLPlatform.php25 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/DbQuoter.php371 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/IDatabaseFlags.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/loadbalancer/ILoadBalancer.php22 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/psr/log/Psr/Log/LoggerInterface.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/config/SiteConfiguration.php18 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/SettingsBuilder.php26 KB
/home/u730917019/domains/soutar36.com/public_html/includes/registration/ExtensionRegistry.php19 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Config/GlobalConfigBuilder.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Config/ConfigBuilderBase.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Config/ConfigBuilder.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Config/PhpIniSink.php794 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/normalized-exception/src/NormalizedExceptionTrait.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Config/ConfigSchemaAggregator.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Source/JsonSchemaTrait.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Config/ConfigSchema.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/MainConfigNames.php140 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Source/PhpSettingsSource.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Source/SettingsSource.php621 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Source/SettingsIncludeLocator.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/GlobalFunctions.php66 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Request/HeaderCallback.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Request/WebRequest.php45 KB
/home/u730917019/domains/soutar36.com/public_html/includes/http/Telemetry.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/http/TelemetryHeadersInterface.php292 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Source/ArraySource.php420 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/at-ease/src/AtEase.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/config-schema.php82 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/Config/MergeStrategy.php3 KB
/home/u730917019/domains/soutar36.com/public_html/LocalSettings.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/config/GlobalVarConfig.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/config/Config.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Settings/DynamicDefaultValues.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/MainConfigSchema.php389 KB
/home/u730917019/domains/soutar36.com/public_html/includes/SetupDynamicConfig.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/title/NamespaceInfo.php18 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LanguageCode.php14 KB
/home/u730917019/domains/soutar36.com/public_html/includes/WikiMap/WikiMap.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/domain/DatabaseDomain.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/objectcache/ObjectCacheFactory.php15 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/EmptyBagOStuff.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/MediumSpecificBagOStuff.php37 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/BagOStuff.php28 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/utils/ExpirationAwareness.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/utils/StorageAwareness.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/IStoreKeyEncoder.php676 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/psr/log/Psr/Log/LoggerAwareInterface.php297 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/StatsFactory.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/StatsCache.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Emitters/NullEmitter.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Emitters/EmitterInterface.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/psr/log/Psr/Log/NullLogger.php707 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/psr/log/Psr/Log/AbstractLogger.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/StatsUtils.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/shell/Shell.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/serialized/SerializedValueContainer.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/registration/ExtensionProcessor.php29 KB
/home/u730917019/domains/soutar36.com/public_html/includes/registration/Processor.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/exception/ShellDisabledError.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/registration/VersionChecker.php11 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/semver/src/VersionParser.php22 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/semver/src/Constraint/Constraint.php12 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/semver/src/Constraint/ConstraintInterface.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/composer/semver/src/Constraint/MultiConstraint.php9 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateStyles/vendor/autoload.php178 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateStyles/vendor/composer/autoload_real.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateStyles/vendor/composer/autoload_static.php1 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Hooks.php14 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SoftwareInfoHook.php636 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserFirstCallInitHook.php595 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserLimitReportPrepareHook.php873 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserLimitReportFormatHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserClearStateHook.php570 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserClonedHook.php548 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPage__showStandardInputs_optionsHook.php864 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPage__showReadOnlyForm_initialHook.php831 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageBeforeEditButtonsHook.php806 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditFilterMergedContentHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleViewHeaderHook.php947 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/Hook/ContentHandlerDefaultModelForHook.php778 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/Hooks.php44 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/TextSlotDiffRendererTablePrefixHook.php960 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/BeforeInitializeHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/BeforePageDisplayHook.php710 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/Hook/ChangeTagsListActiveHook.php609 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/CustomEditorHook.php701 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineViewHeaderHook.php585 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPage__showEditForm_fieldsHook.php778 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/preferences/Hook/GetPreferencesHook.php675 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/Hook/ListDefinedTagsHook.php535 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/MakeGlobalVariablesScriptHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/OutputPageBodyAttributesHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ParserTestGlobalsHook.php664 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/preferences/Hook/PreferencesFormPreSaveHook.php921 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/RecentChange_saveHook.php611 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/RedirectSpecialArticleRedirectParamsHook.php780 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Hook/ResourceLoaderGetConfigVarsHook.php1,010 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Hook/ResourceLoaderRegisterModulesHook.php732 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinEditSectionLinksHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinTemplateNavigation__UniversalHook.php848 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/UserLoggedInHook.php551 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateStyles/includes/Hooks.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/debug/MWDebug.php23 KB
/home/u730917019/domains/soutar36.com/public_html/includes/MediaWikiServices.php55 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/services/src/ServiceContainer.php15 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/psr/container/src/ContainerInterface.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/services/src/DestructibleService.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/NonSerializableTrait.php375 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/exception/MWExceptionRenderer.php14 KB
/home/u730917019/domains/soutar36.com/public_html/includes/exception/MWExceptionHandler.php25 KB
/home/u730917019/domains/soutar36.com/public_html/includes/profiler/Profiler.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/profiler/ProfilerStub.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/TransactionProfiler.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/debug/logger/LoggerFactory.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/object-factory/src/ObjectFactory.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/debug/logger/LegacySpi.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/debug/logger/Spi.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/debug/logger/LegacyLogger.php15 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/psr/log/Psr/Log/LogLevel.php336 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/HookContainer/FauxGlobalHookArray.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/MinervaNeue/includes/ServiceWiring.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/ServiceWiring.php1 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Nuke/includes/ServiceWiring.php592 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/ServiceWiring.php499 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/VisualEditorParsoidClientFactory.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ServiceWiring.php97 KB
/home/u730917019/domains/soutar36.com/public_html/includes/HookContainer/HookRunner.php122 KB
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/GetActionNameHook.php548 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/AuthManagerFilterProvidersHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/AuthManagerLoginAuthenticateAuditHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/AuthManagerVerifyAuthenticationHook.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/AuthPreserveQueryParamsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/ExemptFromAccountCreationThrottleHook.php597 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/LocalUserCreatedHook.php814 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/ResetPasswordExpirationHook.php681 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Hook/SecuritySensitiveOperationStatusHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/Hook/AbortAutoblockHook.php663 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/block/Hook/GetAllBlockActionsHook.php983 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/block/Hook/GetUserBlockHook.php989 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/block/Hook/PerformRetroactiveAutoblockHook.php730 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/block/Hook/SpreadAnyEditBlockHook.php736 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/cache/Hook/BacklinkCacheGetConditionsHook.php748 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/cache/Hook/BacklinkCacheGetPrefixHook.php588 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/cache/Hook/HtmlCacheUpdaterAppendUrlsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/cache/Hook/HtmlCacheUpdaterVaryUrlsHook.php828 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/cache/Hook/HTMLFileCache__useFileCacheHook.php752 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/MessageCacheFetchOverridesHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/MessageCacheReplaceHook.php634 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/MessageCache__getHook.php843 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/MessagesPreLoadHook.php651 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TitleSquidURLsHook.php661 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/Hook/ChangeTagAfterDeleteHook.php899 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/Hook/ChangeTagCanCreateHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/Hook/ChangeTagCanDeleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/Hook/ChangeTagsAfterUpdateTagsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/Hook/ChangeTagsAllowedAddHook.php930 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/ContentAlterParserOutputHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/ContentGetParserOutputHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/ContentHandlerForModelIDHook.php939 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/ContentModelCanBeUsedOnHook.php969 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/ConvertContentHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/GetContentModelsHook.php621 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/GetDifferenceEngineHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/GetSlotDiffRendererHook.php894 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/JsonValidateSaveHook.php940 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/PageContentLanguageHook.php787 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/PlaceNewSectionHook.php917 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/SearchDataForIndexHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/Hook/SearchDataForIndex2Hook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Contribute/Hook/ContributeCardsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/AbortDiffCacheHook.php543 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/ArticleContentOnDiffHook.php729 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineAfterLoadNewTextHook.php782 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineLoadTextAfterNewContentIsLoadedHook.php903 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineMarkPatrolledLinkHook.php930 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineMarkPatrolledRCIDHook.php990 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineNewHeaderHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineOldHeaderHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineOldHeaderNoOldRevHook.php631 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineRenderRevisionAddParserOutputHook.php919 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineRenderRevisionShowFinalPatrolLinkHook.php691 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineShowDiffHook.php629 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineShowDiffPageHook.php624 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineShowDiffPageMaybeShowMissingRevisionHook.php856 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DifferenceEngineShowEmptyOldContentHook.php719 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/DiffToolsHook.php861 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/Hook/NewDifferenceEngineHook.php864 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/AbortEmailNotificationHook.php752 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/AbortTalkPageEmailNotificationHook.php760 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/ActionBeforeFormDisplayHook.php668 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/ActionModifyFormFieldsHook.php752 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/AddNewAccountHook.php734 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/AfterBuildFeedLinksHook.php877 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/AfterFinalPageOutputHook.php982 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/import/Hook/AfterImportPageHook.php954 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/AfterParserFetchFileAndTitleHook.php876 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/AlternateEditHook.php643 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/AlternateEditPreviewHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/AlternateUserMailerHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/AncientPagesQueryHook.php683 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ApiBeforeMainHook.php548 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ArticleMergeCompleteHook.php636 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/revisiondelete/Hook/ArticleRevisionVisibilitySetHook.php998 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ArticleUpdateBeforeRedirectHook.php815 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/BadImageHook.php702 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/BeforePageRedirectHook.php970 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/BeforeParserFetchFileAndTitleHook.php979 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/BeforeParserFetchTemplateRevisionRecordHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/BeforeWelcomeCreationHook.php832 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/media/Hook/BitmapHandlerCheckImageAreaHook.php846 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/media/Hook/BitmapHandlerTransformHook.php846 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/BlockIpCompleteHook.php801 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/BlockIpHook.php780 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/BookInformationHook.php646 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/title/Hook/CanonicalNamespacesHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/CategoryViewer__doCategoryQueryHook.php881 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/CategoryViewer__generateLinkHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/ChangesListInitRowsHook.php680 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/ChangesListInsertArticleLinkHook.php977 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ChangeUserGroupsHook.php968 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/collation/Hook/Collation__factoryHook.php831 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ContentSecurityPolicyDefaultSourceHook.php1,010 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ContentSecurityPolicyDirectivesHook.php933 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ContentSecurityPolicyScriptSourceHook.php966 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ContribsPager__getQueryInfoHook.php772 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ContribsPager__reallyDoQueryHook.php1,004 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ContributionsLineEndingHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ContributionsToolLinksHook.php988 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/DeletedContribsPager__reallyDoQueryHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/DeletedContributionsLineEndingHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/DeleteUnknownPreferencesHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditFilterHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditFormInitialTextHook.php572 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditFormPreloadTextHook.php624 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageBeforeConflictDiffHook.php871 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageBeforeEditToolbarHook.php704 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageCopyrightWarningHook.php838 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageGetCheckboxesDefinitionHook.php809 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageGetDiffContentHook.php834 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageGetPreviewContentHook.php834 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageNoSuchSectionHook.php674 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPageTosSummaryHook.php768 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPage__attemptSaveHook.php698 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPage__attemptSave_afterHook.php831 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPage__importFormDataHook.php719 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/EditPage__showEditForm_initialHook.php741 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/EmailUserCCHook.php749 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/EmailUserCompleteHook.php753 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/EmailUserFormHook.php560 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/EmailUserHook.php997 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/EmailUserPermissionsErrorsHook.php868 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/EmailUserAuthorizeSendHook.php745 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/EmailUserSendEmailHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/EnhancedChangesListModifyBlockLineDataHook.php862 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/EnhancedChangesListModifyLineDataHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/EnhancedChangesList__getLogTextHook.php919 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ExtensionTypesHook.php837 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/FetchChangesListHook.php972 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/FileDeleteCompleteHook.php961 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/filerepo/Hook/FileTransformedHook.php817 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/FileUndeleteCompleteHook.php813 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/filerepo/Hook/FileUploadHook.php846 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/FormatAutocommentsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/gallery/Hook/GalleryGetModesHook.php704 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetBlockErrorMessageKeyHook.php677 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/GetCacheVaryCookiesHook.php845 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetCanonicalURLHook.php756 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetDefaultSortkeyHook.php643 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetDoubleUnderscoreIDsHook.php751 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/media/Hook/GetExtendedMetadataHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetFullURLHook.php737 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/GetHumanTimestampHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetInternalURLHook.php744 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetIPHook.php512 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/GetLangPreferredVariantHook.php803 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/GetLinkColoursHook.php833 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetLocalURLHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetLocalURL__ArticleHook.php772 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetLocalURL__InternalHook.php800 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/GetLogTypesOnUserHook.php544 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetMagicVariableIDsHook.php675 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/media/Hook/GetMetadataVersionHook.php937 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/GetNewMessagesAlertHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GetRelativeTimestampHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/GitViewersHook.php610 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/HistoryPageToolLinksHook.php772 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/HistoryToolsHook.php906 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ImageBeforeProduceHTMLHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ImgAuthBeforeStreamHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ImgAuthModifyHeadersHook.php927 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/import/Hook/ImportHandleContentXMLTagHook.php640 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/import/Hook/ImportHandleLogItemXMLTagHook.php660 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/import/Hook/ImportHandlePageXMLTagHook.php651 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/import/Hook/ImportHandleRevisionXMLTagHook.php754 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/import/Hook/ImportHandleToplevelXMLTagHook.php601 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ImportHandleUnknownUserHook.php589 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/import/Hook/ImportHandleUploadXMLTagHook.php670 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ImportLogInterwikiLinkHook.php712 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ImportSourcesHook.php714 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/InfoActionHook.php779 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/InitializeArticleMaybeRedirectHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/InternalParseBeforeLinksHook.php828 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/RCFeed/Hook/IRCLineURLHook.php761 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/IsTrustedProxyHook.php639 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/upload/Hook/IsUploadAllowedFromUrlHook.php643 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/IsValidEmailAddrHook.php737 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/LanguageGetNamespacesHook.php688 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/LanguageLinksHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/LanguageSelectorHook.php660 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/LinkerMakeExternalImageHook.php684 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/LinkerMakeExternalLinkHook.php802 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/LinkerMakeMediaLinkFileHook.php886 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/Hook/LinksUpdateCompleteHook.php759 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/Hook/LinksUpdateHook.php604 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/filerepo/Hook/LocalFilePurgeThumbnailsHook.php762 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/filerepo/Hook/LocalFile__getHistoryHook.php839 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/LocalisationCacheRecacheFallbackHook.php818 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/LocalisationCacheRecacheHook.php771 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/logging/Hook/LogEventsListGetExtraInputsHook.php874 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/logging/Hook/LogEventsListLineEndingHook.php1,011 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/logging/Hook/LogEventsListShowLogExtractHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/exception/Hook/LogExceptionHook.php764 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/LoginFormValidErrorMessagesHook.php807 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/logging/Hook/LogLineHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/LonelyPagesQueryHook.php679 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MagicWordwgVariableIDsHook.php583 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MaintenanceRefreshLinksInitHook.php604 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MaintenanceShellStartHook.php366 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MaintenanceUpdateAddParamsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/logging/Hook/ManualLogEntryBeforePublishHook.php596 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/MarkPatrolledCompleteHook.php769 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/MarkPatrolledHook.php831 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MediaWikiPerformActionHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MediaWikiServicesHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MimeMagicGuessFromContentHook.php881 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MimeMagicImproveFromExtensionHook.php728 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MimeMagicInitHook.php945 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/export/Hook/ModifyExportQueryHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MovePageCheckPermissionsHook.php906 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/MovePageIsValidMoveHook.php750 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/title/Hook/NamespaceIsMovableHook.php795 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/NewPagesLineEndingHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/Hook/OldChangesListRecentChangesLineHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/OpenSearchUrlsHook.php659 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/OtherAutoblockLogLinkHook.php709 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/OtherBlockLogLinkHook.php805 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/OutputPageAfterGetHeadLinksArrayHook.php940 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/OutputPageBeforeHTMLHook.php877 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/OutputPageCheckLastModifiedHook.php904 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/OutputPageMakeCategoryLinksHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/OutputPageParserOutputHook.php858 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Output/Hook/OutputPageRenderCategoryLinkHook.php930 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/PageHistoryBeforeListHook.php688 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/PageHistoryLineEndingHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/PageHistoryPager__doBatchLookupsHook.php930 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/PageHistoryPager__getQueryInfoHook.php736 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/PageMoveCompleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/PageMoveCompletingHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/PageRenderingHashHook.php902 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserAfterParseHook.php734 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserAfterTidyHook.php622 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserBeforeInternalParseHook.php736 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserBeforePreprocessHook.php710 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserCacheSaveCompleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserFetchTemplateDataHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserGetVariableValueSwitchHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserGetVariableValueTsHook.php707 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserLogLinterDataHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserMakeImageParamsHook.php906 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserModifyImageHTMLHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserOptionsRegisterHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserOutputPostCacheTransformHook.php814 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/ParserPreSaveTransformCompleteHook.php776 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/password/Hook/PasswordPoliciesForUserHook.php703 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/PostLoginRedirectHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/PreferencesGetIconHook.php840 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/PreferencesGetLayoutHook.php1,000 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/PreferencesGetLegendHook.php809 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/PrefsEmailAuditHook.php701 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ProtectionForm__buildFormHook.php770 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ProtectionForm__saveHook.php861 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ProtectionForm__showLogExtractHook.php730 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/ProtectionFormAddFormFieldsHook.php526 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/RandomPageQueryHook.php732 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/RawPageViewBeforeOutputHook.php632 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/jobqueue/jobs/Hook/RecentChangesPurgeRowsHook.php732 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Hook/RejectParserCacheValueHook.php970 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/context/Hook/RequestContextCreateSkinHook.php924 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/SelfLinkBeginHook.php874 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/SendWatchlistEmailNotificationHook.php833 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/SetupAfterCacheHook.php481 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/ShortPagesQueryHook.php735 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SidebarBeforeOutputHook.php841 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SiteNoticeAfterHook.php668 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SiteNoticeBeforeHook.php760 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinAddFooterLinksHook.php911 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinAfterBottomScriptsHook.php741 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinAfterContentHook.php716 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinBuildSidebarHook.php612 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinCopyrightFooterHook.php999 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinCopyrightFooterMessageHook.php997 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinPreloadExistenceHook.php647 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinSubPageSubtitleHook.php865 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinTemplateGetLanguageLinkHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialBlockModifyFormFieldsHook.php670 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialContributionsBeforeMainOutputHook.php970 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialContributions__formatRow__flagsHook.php865 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialCreateAccountBenefitsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialExportGetExtraPagesHook.php701 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialContributions__getForm__filtersHook.php944 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialListusersDefaultQueryHook.php691 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialListusersFormatRowHook.php688 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialListusersHeaderFormHook.php676 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialListusersHeaderHook.php663 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialListusersQueryInfoHook.php678 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialLogAddLogSearchRelationsHook.php781 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialMovepageAfterMoveHook.php678 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialMuteModifyFormFieldsHook.php693 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialNewpagesConditionsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialNewPagesFiltersHook.php833 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialPrefixIndexGetFormFiltersHook.php722 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialPrefixIndexQueryHook.php680 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialRandomGetRandomTitleHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialRecentChangesPanelHook.php704 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialResetTokensTokensHook.php712 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialSearchCreateLinkHook.php712 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialSearchGoResultHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialSearchNogomatchHook.php810 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialSearchProfilesHook.php550 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialSearchResultsAppendHook.php847 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialSearchResultsHook.php732 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialSearchResultsPrependHook.php930 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialSearchSetupEngineHook.php705 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialStatsAddExtraHook.php1,001 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialTrackingCategories__generateCatLinkHook.php920 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialTrackingCategories__preprocessHook.php855 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialUploadCompleteHook.php590 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialVersionVersionUrlHook.php655 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialWatchlistGetNonRevisionTypesHook.php813 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/SpecialWhatLinksHereQueryHook.php929 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TestCanonicalRedirectHook.php922 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/media/Hook/ThumbnailBeforeProduceHTMLHook.php767 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TempUserCreatedRedirectHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TitleExistsHook.php622 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TitleGetEditNoticesHook.php794 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TitleGetRestrictionTypesHook.php663 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TitleIsAlwaysKnownHook.php879 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TitleIsMovableHook.php906 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TitleMoveHook.php874 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/TitleMoveStartingHook.php706 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UnblockUserCompleteHook.php725 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UnblockUserHook.php801 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UndeleteForm__showHistoryHook.php779 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UndeleteForm__showRevisionHook.php781 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/UndeletePageToolLinksHook.php807 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/UnitTestsAfterDatabaseSetupHook.php776 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/UnitTestsBeforeDatabaseTeardownHook.php573 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/UnitTestsListHook.php697 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/UnwatchArticleCompleteHook.php654 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/UnwatchArticleHook.php776 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/UpdateUserMailerFormattedPageStatusHook.php628 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/upload/Hook/UploadCompleteHook.php625 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/upload/Hook/UploadCreateFromRequestHook.php658 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UploadFormInitDescriptorHook.php601 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UploadFormSourceDescriptorsHook.php761 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UploadForm_BeforeProcessingHook.php918 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UploadForm_getInitialPageTextHook.php822 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UploadForm_initialHook.php788 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/upload/Hook/UploadStashFileHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/upload/Hook/UploadVerifyFileHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/upload/Hook/UploadVerifyUploadHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/Hook/UserEditCountUpdateHook.php571 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/context/Hook/UserGetLanguageObjectHook.php729 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UserLoginCompleteHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UserLogoutCompleteHook.php765 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/UserMailerChangeReturnPathHook.php735 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/UserMailerSplitToHook.php669 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/UserMailerTransformContentHook.php888 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/mail/Hook/UserMailerTransformMessageHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/UsersPagerDoBatchLookupsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/UserToolLinksEditHook.php740 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/media/Hook/ValidateExtendedMetadataCacheHook.php743 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/WantedPages__getQueryInfoHook.php806 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/WatchArticleCompleteHook.php635 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Hook/WatchArticleHook.php881 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/watchlist/Hook/WatchedItemQueryServiceExtensionsHook.php789 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/WatchlistEditorBeforeFormRenderHook.php762 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/WatchlistEditorBuildRemoveLineHook.php822 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/WebRequestPathInfoRouterHook.php601 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Hook/WebResponseSetCookieHook.php856 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specials/Hook/WhatLinksHerePropsHook.php830 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/export/Hook/WikiExporter__dumpStableQueryHook.php837 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/export/Hook/XmlDumpWriterOpenPageHook.php785 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/export/Hook/XmlDumpWriterWriteRevisionHook.php967 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/installer/Hook/LoadExtensionSchemaUpdatesHook.php847 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/interwiki/Hook/InterwikiLoadPrefixHook.php941 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/LanguageGetTranslatedLanguageNamesHook.php684 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Hook/Language__getMessagesFileNameHook.php784 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/linker/Hook/LinkerGenerateRollbackLinkHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/Hook/HtmlPageLinkRendererBeginHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/Hook/HtmlPageLinkRendererEndHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleConfirmDeleteHook.php740 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleDeleteAfterSuccessHook.php742 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleDeleteCompleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleDeleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleFromTitleHook.php800 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticlePageDataAfterHook.php683 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticlePageDataBeforeHook.php830 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleParserOptionsHook.php794 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleProtectCompleteHook.php775 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleProtectHook.php747 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticlePurgeHook.php542 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleRevisionViewCustomHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleShowPatrolFooterHook.php654 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleUndeleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleViewFooterHook.php646 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ArticleViewRedirectHook.php602 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/Article__MissingArticleConditionsHook.php930 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/BeforeDisplayNoArticleTextHook.php644 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/CategoryAfterPageAddedHook.php687 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/CategoryAfterPageRemovedHook.php775 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/CategoryPageViewHook.php561 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/DisplayOldSubtitleHook.php648 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ImageOpenShowImageInlineBeforeHook.php700 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ImagePageAfterImageLinksHook.php674 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ImagePageFileHistoryLineHook.php817 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ImagePageFindFileHook.php761 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ImagePageShowTOCHook.php602 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/IsFileCacheableHook.php565 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/OpportunisticLinksUpdateHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/PageDeleteCompleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/PageDeleteHook.php1,006 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/PageDeletionDataUpdatesHook.php986 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/PageUndeleteCompleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/PageUndeleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/PageViewUpdatesHook.php743 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/RevisionFromEditCompleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/RevisionUndeletedHook.php699 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/RollbackCompleteHook.php929 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/ShowMissingArticleHook.php590 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/WikiPageDeletionUpdatesHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Hook/WikiPageFactoryHook.php654 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/PermissionErrorAuditHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/GetUserPermissionsErrorsExpensiveHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/GetUserPermissionsErrorsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/TitleQuickPermissionsHook.php1,006 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/TitleReadWhitelistHook.php853 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/UserCanHook.php1,007 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/UserGetAllRightsHook.php581 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/UserGetRightsHook.php620 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/UserGetRightsRemoveHook.php886 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/UserIsBlockedFromHook.php977 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Hook/UserIsEveryoneAllowedHook.php642 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/RenameUser/Hook/RenameUserAbortHook.php710 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/RenameUser/Hook/RenameUserCompleteHook.php697 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/RenameUser/Hook/RenameUserPreRenameHook.php700 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/RenameUser/Hook/RenameUserSQLHook.php702 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/RenameUser/Hook/RenameUserWarningHook.php955 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Rest/Hook/SearchResultProvideDescriptionHook.php1,006 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/Hook/RevisionRecordInsertedHook.php658 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/PrefixSearchBackendHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/PrefixSearchExtractNamespaceHook.php850 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchableNamespacesHook.php583 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchAfterNoDirectMatchHook.php782 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchGetNearMatchBeforeHook.php761 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchGetNearMatchCompleteHook.php695 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchGetNearMatchHook.php687 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchIndexFieldsHook.php718 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchResultInitFromTitleHook.php722 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchResultProvideThumbnailHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SearchResultsAugmentHook.php939 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/ShowSearchHitHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/ShowSearchHitTitleHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SpecialSearchPowerBoxHook.php863 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/search/Hook/SpecialSearchProfileFormHook.php821 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/session/Hook/SessionCheckInfoHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/Hook/SessionMetadataHook.php875 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/shell/Hook/WfShellWikiCmdHook.php798 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinAfterPortletHook.php646 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Hook/SkinPageReadyConfigHook.php663 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/AuthChangeFormFieldsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/ChangeAuthenticationDataAuditHook.php825 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/ChangesListSpecialPageQueryHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/ChangesListSpecialPageStructuredFiltersHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/SpecialPageAfterExecuteHook.php678 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/SpecialPageBeforeExecuteHook.php694 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/SpecialPageBeforeFormDisplayHook.php650 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/SpecialPage_initListHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/Hook/WgQueryPagesHook.php771 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/Hook/ArticleEditUpdateNewTalkHook.php724 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/Hook/ArticlePrepareTextForEditHook.php716 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/Hook/BeforeRevertedTagUpdateHook.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/Hook/MultiContentSaveHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/Hook/PageContentSaveHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/Hook/PageSaveCompleteHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/Hook/ParserOutputStashForEditHook.php1,001 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/Hook/RevisionDataUpdatesHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/AutopromoteConditionHook.php711 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/ConfirmEmailCompleteHook.php603 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/EmailConfirmedHook.php821 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/GetAutoPromoteGroupsHook.php667 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/InvalidateEmailCompleteHook.php616 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/IsValidPasswordHook.php818 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/PingLimiterHook.php896 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/SpecialPasswordResetOnSubmitHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserAddGroupHook.php803 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserArrayFromResultHook.php776 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserCanSendEmailHook.php781 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserClearNewTalkNotificationHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserEffectiveGroupsHook.php644 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserGetDefaultOptionsHook.php905 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserGetEmailAuthenticationTimestampHook.php736 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserGetEmailHook.php603 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserGetReservedNamesHook.php575 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserGroupsChangedHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserIsBlockedGloballyHook.php833 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserIsBotHook.php597 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserIsLockedHook.php633 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserLoadAfterLoadFromSessionHook.php673 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserLoadDefaultsHook.php571 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserLogoutHook.php547 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserPrivilegedGroupsHook.php748 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserRemoveGroupHook.php680 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserSaveSettingsHook.php752 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserSendConfirmationMailHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserSetEmailAuthenticationTimestampHook.php745 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/UserSetEmailHook.php611 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Hook/User__mailPasswordInternalHook.php821 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Options/Hook/LoadUserOptionsHook.php668 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Options/Hook/SaveUserOptionsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Options/Hook/ConditionalDefaultOptionsAddConditionHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateStyles/vendor/wikimedia/scoped-callback/src/ScopedCallback.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/HookContainer/StaticHookRegistry.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/HookContainer/HookRegistry.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/HookContainer/DeprecatedHooks.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/HookContainer/HookContainer.php23 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/services/src/SalvageableService.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/config/ConfigFactory.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/utils/UrlUtils.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/context/RequestContext.php23 KB
/home/u730917019/domains/soutar36.com/public_html/includes/context/IContextSource.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LocalizationContext.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/MessageLocalizer.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/CsrfTokenSetProvider.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/context/MutableContext.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/ip-utils/src/IPUtils.php26 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateStyles/vendor/wikimedia/utfnormal/src/Validator.php23 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateStyles/vendor/wikimedia/utfnormal/src/Constants.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/PHPSessionHandler.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/SessionManager.php37 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/SessionManagerInterface.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/config/ServiceOptions.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/OutputFormats.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Formatters/NullFormatter.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Formatters/FormatterInterface.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/BufferingStatsdDataFactory.php6 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/liuggio/statsd-php-client/src/Liuggio/StatsdClient/Factory/StatsdDataFactory.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/liuggio/statsd-php-client/src/Liuggio/StatsdClient/Factory/StatsdDataFactoryInterface.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/IBufferingStatsdDataFactory.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/objectcache/SqlBagOStuff.php61 KB
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/DeferredUpdates.php18 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/CachedBagOStuff.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/HashBagOStuff.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Message/MessageFormatterFactory.php1,016 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Message/IMessageFormatterFactory.php393 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Message/Message.php46 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Message/MessageSpecifier.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserNameUtils.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserRigorOptions.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LanguageFactory.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LocalisationCache.php41 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LCStoreDB.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LCStore.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LanguageNameUtils.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LanguageFallback.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LanguageConverterFactory.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/MapCacheLRU.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/title/MediaWikiTitleCodec.php20 KB
/home/u730917019/domains/soutar36.com/public_html/includes/title/TitleFormatter.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/title/TitleParser.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/title/Title.php116 KB
/home/u730917019/domains/soutar36.com/public_html/includes/dao/WikiAwareEntityTrait.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Core/LinkTargetTrait.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/LinkTarget.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Core/LinkTarget.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageIdentity.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageReference.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/dao/WikiAwareEntity.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/languages/LanguageEn.php915 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/language/Language.php149 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/DebugInfo/DebugInfoTrait.php344 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/bcp-47-code/src/Bcp47Code.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/assert/src/Assert.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/objectcache/WANObjectCache.php130 KB
/home/u730917019/domains/soutar36.com/public_html/includes/db/MWLBFactory.php16 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/ConfiguredReadOnlyMode.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/ChronologyProtector.php25 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/request-timeout/src/RequestTimeout.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/request-timeout/src/Detail/BasicRequestTimeout.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/request-timeout/src/CriticalSectionProvider.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/lbfactory/LBFactorySimple.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/lbfactory/LBFactory.php22 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/lbfactory/ILBFactory.php19 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/lbfactory/IConnectionProvider.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/cache/GenderCache.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Options/DefaultOptionsLookup.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Options/UserOptionsLookup.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Options/ConditionalDefaultsLookup.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Registration/UserRegistrationLookup.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Registration/LocalUserRegistrationProvider.php666 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/Registration/IUserRegistrationProvider.php452 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserIdentityUtils.php933 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/user/TempUser/RealTempUserConfig.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/TempUser/TempUserConfig.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/TempUser/Pattern.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/interwiki/ClassicInterwikiLookup.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/interwiki/InterwikiLookup.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Message/TextFormatter.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Message/ITextFormatter.php948 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/php-session-serializer/src/PhpSessionSerializer.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/CookieSessionProvider.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/SessionProvider.php27 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/SessionProviderInterface.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/SessionInfo.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/GrantsInfo.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/BotPasswordSessionProvider.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/ImmutableSessionProviderWithCookie.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/utils/MWCryptRand.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/SessionId.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/SessionBackend.php25 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserFactory.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/loadbalancer/LoadBalancer.php68 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/loadbalancer/ILoadBalancerForOwner.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/ServerInfo.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/DatabaseFactory.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/loadmonitor/LoadMonitor.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/loadmonitor/ILoadMonitor.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/StatsdAwareInterface.php574 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/NullStatsdDataFactory.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/User.php101 KB
/home/u730917019/domains/soutar36.com/public_html/includes/HookContainer/ProtectedHookAccessorTrait.php926 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/Authority.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserIdentity.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/mail/UserEmailContact.php646 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/IDBAccessObject.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/Session.php18 KB
/home/u730917019/domains/soutar36.com/public_html/includes/utils/MWTimestamp.php5 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/timestamp/src/ConvertibleTimestamp.php15 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Request/WebResponse.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/session/Token.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/StubObject/StubGlobalUser.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/StubObject/StubObject.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/StubObject/StubUserLang.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Output/OutputPage.php160 KB
/home/u730917019/domains/soutar36.com/public_html/includes/context/ContextSource.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/debug/DeprecationHelper.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Module.php36 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserOutput.php111 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/CacheTime.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/GhostFieldAccessTrait.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/json/JsonDeserializableTrait.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserCacheMetadata.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/json/JsonDeserializable.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Core/ContentMetadataCollectorCompat.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Core/ContentMetadataCollector.php19 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Request/ContentSecurityPolicy.php19 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedVideoHooks.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/MWCallableUpdate.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/DeferrableUpdate.php426 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/DeferrableCallback.php365 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/TransactionRoundAwareUpdate.php758 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/DeferredUpdatesScopeMediaWikiStack.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/DeferredUpdatesScopeStack.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/DeferredUpdatesScope.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Request/ProxyLookup.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/actions/ActionEntryPoint.php26 KB
/home/u730917019/domains/soutar36.com/public_html/includes/MediaWikiEntryPoint.php40 KB
/home/u730917019/domains/soutar36.com/public_html/includes/EntryPointEnvironment.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/title/TitleValue.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/TrivialLanguageConverter.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/ILanguageConverter.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionStoreFactory.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/BlobStoreFactory.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/externalstore/ExternalStoreAccess.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/externalstore/ExternalStoreFactory.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/NameTableStoreFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/SlotRoleRegistry.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/NameTableStore.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/ContentHandlerFactory.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/IContentHandlerFactory.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/title/TitleFactory.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/SlotRecord.php20 KB
/home/u730917019/domains/soutar36.com/public_html/includes/CommentStore/CommentStore.php14 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/ActorStoreFactory.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/HideUserUtils.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageStoreFactory.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageStore.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageLookup.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/cache/LinkCache.php18 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/ActorStore.php25 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserIdentityLookup.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/ActorNormalization.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/ActorCache.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionStore.php109 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/LegacyArticleIdAccess.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionFactory.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionLookup.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/SqlBlobStore.php25 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Storage/BlobStore.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/DBConnRef.php27 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/IMaintainableDatabase.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/IDatabaseForOwner.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionSelectQueryBuilder.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/querybuilder/SelectQueryBuilder.php27 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/querybuilder/JoinGroupBase.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/expression/Expression.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/expression/IExpression.php559 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/Database.php109 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/DatabaseMySQL.php26 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/TransactionManager.php32 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/DatabaseFlags.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/platform/SQLPlatform.php62 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/platform/MySQLPlatform.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/replication/MysqlReplicationReporter.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/replication/ReplicationReporter.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/Query.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/request-timeout/src/CriticalSectionScope.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/utils/CriticalSessionInfo.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/utils/GeneralizedSql.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/utils/QueryStatus.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/resultwrapper/MysqliResultWrapper.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/resultwrapper/ResultWrapper.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/resultwrapper/IResultWrapper.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Metrics/BaseMetric.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Metrics/BaseMetricInterface.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Metrics/TimingMetric.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Metrics/MetricTrait.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Metrics/MetricInterface.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/liuggio/statsd-php-client/src/Liuggio/StatsdClient/Entity/StatsdDataInterface.php726 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Sample.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/database/utils/TransactionIdentifier.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageIdentityValue.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageReferenceValue.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/ProperPageIdentity.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/ExternalUserNames.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserIdentityValue.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/CommentStore/CommentStoreComment.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/RawMessage.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Message/ListType.php582 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Message/ScalarParam.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Message/MessageParam.php869 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Message/ParamType.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionSlots.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionStoreRecord.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionRecord.php19 KB
/home/u730917019/domains/soutar36.com/public_html/includes/cache/HTMLFileCache.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/cache/FileCacheBase.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Options/UserOptionsManager.php23 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LanguageConverter.php36 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/Skin.php81 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/SkinFactory.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/Options/UserOptionsCacheEntry.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/PermissionStatus.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/StatusValue.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/UserAuthority.php14 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/PermissionManager.php63 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/SpecialPageFactory.php47 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/GroupPermissionsLookup.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserGroupManagerFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserGroupManager.php41 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/ReadOnlyMode.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserEditTracker.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/jobqueue/JobQueueGroupFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/uuid/GlobalIdGenerator.php27 KB
/home/u730917019/domains/soutar36.com/public_html/includes/jobqueue/JobQueueGroup.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/BlockManager.php29 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/DatabaseBlockStoreFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/DatabaseBlockStore.php51 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/BlockRestrictionStoreFactory.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/BlockUtilsFactory.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/BlockUtils.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/AutoblockExemptionList.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/DatabaseBlock.php22 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/AbstractBlock.php15 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/Block.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/BlockRestrictionStore.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/BlockCache.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/FormatterFactory.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/MessageCache.php57 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Parser.php209 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserFactory.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/MagicWordFactory.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/LinkRendererFactory.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/File/BadFileLookup.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/filerepo/RepoGroup.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/mime/MimeAnalyzer.php35 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/mime/MimeMap.php19 KB
/home/u730917019/domains/soutar36.com/public_html/includes/tidy/RemexDriver.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/tidy/TidyDriverBase.php708 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/http/HttpRequestFactory.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Category/TrackingCategories.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/preferences/SignatureValidatorFactory.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/preferences/SignatureValidator.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/LazyLocalizationContext.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/block/BlockErrorFormatter.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/RedirectStore.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/RedirectLookup.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/RestrictionStore.php22 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/LinksMigration.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/LinkTargetStore.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/LinkTargetLookup.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/actions/ActionFactory.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Permissions/RateLimiter.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/WRStats/WRStatsFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/WRStats/BagOStuffStatsStore.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/WRStats/StatsStore.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/CentralId/CentralIdLookupFactory.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/CentralId/LocalIdLookup.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/CentralId/CentralIdLookup.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/dependency/FileDependency.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/dependency/CacheDependency.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/dependency/MainConfigDependency.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/language/dependency/ConstantDependency.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/WikiPageFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/WikiPage.php102 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Page.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageRecord.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/Article.php67 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/LinkRenderer.php20 KB
/home/u730917019/domains/soutar36.com/public_html/includes/CommentFormatter/CommentFormatter.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/CommentFormatter/CommentParserFactory.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/cache/LinkBatchFactory.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/ArchivedRevisionLookup.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageStoreRecord.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/ExistingPageRecord.php520 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Sanitizer.php58 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/ScribuntoContentHandler.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/CodeContentHandler.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/TextContentHandler.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/ContentHandler.php59 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Scribunto.php4 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/LuaEngine.php29 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/ScribuntoEngineBase.php9 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaSandbox/LuaSandboxInterpreter.php5 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/LuaInterpreter.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/LuaInterpreterNotFoundError.php139 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaStandalone/LuaStandaloneEngine.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/actions/ViewAction.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/actions/FormlessAction.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/actions/Action.php14 KB
/home/u730917019/domains/soutar36.com/public_html/includes/profiler/ProfilingContext.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Status/Status.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/DifferenceEngine.php74 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/TextDiffer/ManifoldTextDiffer.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/TextDiffer/TextDiffer.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/TextDiffer/Wikidiff2TextDiffer.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/TextDiffer/BaseTextDiffer.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/TextDiffer/PhpTextDiffer.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/MinervaNeue/includes/SkinOptions.php7 KB
/home/u730917019/domains/soutar36.com/public_html/skins/MinervaNeue/includes/Skins/SkinUserPageHelper.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/MinervaNeue/includes/Hooks.php10 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/FeatureManagerFactory.php8 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/SkinVector22.php18 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/SkinMustache.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/SkinTemplate.php56 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentRegistry.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentRegistryContext.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/ComponentRegistryContext.php1 KB
/home/u730917019/domains/soutar36.com/public_html/languages/messages/MessagesEn.php27 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/OOUIFileModule.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/FileModule.php49 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/OOUIModule.php6 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/oojs/oojs-ui/php/Theme.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/oojs/oojs-ui/php/themes/WikimediaUITheme.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/oojs/oojs-ui/php/Element.php8 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/oojs/oojs-ui/php/Tag.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Stats/Metrics/CounterMetric.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/expression/LikeValue.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/encasing/LikeMatch.php587 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/DBAccessObjectUtils.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Parsoid/ParsoidParserFactory.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Parsoid/Config/SiteConfig.php27 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Config/SiteConfig.php51 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Ext/JSON/JSON.php9 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Core/ContentModelHandler.php695 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Ext/ExtensionModule.php751 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Ext/Nowiki/Nowiki.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Ext/ExtensionTagHandler.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Ext/Pre/Pre.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Ext/Gallery/Gallery.php13 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Ext/Indicator/Indicator.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Ext/LST/LST.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/SyntaxHighlight_GeSHi/includes/ParsoidExt.php975 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Parsoid/Config/DataAccess.php16 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Config/DataAccess.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/Transform/ContentTransformer.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Parsoid/Config/PageConfigFactory.php7 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Config/PageConfigFactory.php395 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/WikitextContentHandler.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/WikitextContent.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/TextContent.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/AbstractContent.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/Content.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/MagicWord.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/querybuilder/ReplaceQueryBuilder.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/ChangedTablesTracker.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateStyles/vendor/wikimedia/utfnormal/src/UtfNormalData.inc114 KB
/home/u730917019/domains/soutar36.com/public_html/includes/tidy/RemexCompatFormatter.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Serializer/HtmlFormatter.php7 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Serializer/Formatter.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/DOM/DOMFormatter.php504 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/HTMLData.php117 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Serializer/Serializer.php10 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/PropGuard.php531 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Serializer/AbstractSerializer.php266 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/TreeHandler.php7 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/TreeBuilder.php28 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/ActiveFormattingElements.php9 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/CachingStack.php13 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/Stack.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/Dispatcher.php12 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Tokenizer/TokenHandler.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/TemplateModeStack.php985 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/RemexRemoveTagHandler.php5 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Tokenizer/RelayTokenHandler.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Tokenizer/Tokenizer.php53 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/Initial.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InsertionMode.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/BeforeHtml.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/BeforeHead.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InHead.php5 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InHeadNoscript.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/AfterHead.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InBody.php18 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/Text.php1,009 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InTable.php5 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InTableText.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InCaption.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InColumnGroup.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InTableBody.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InRow.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InCell.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InSelect.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InSelectInTable.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InTemplate.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/AfterBody.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InFrameset.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/AfterFrameset.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/AfterAfterBody.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/AfterAfterFrameset.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InForeignContent.php6 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InPre.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/InTextarea.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Serializer/SerializerNode.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Tokenizer/PlainAttributes.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Tokenizer/Attributes.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/Element.php5 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/TreeBuilder/FormattingElement.php167 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/RemexStripTagHandler.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Tokenizer/NullTokenHandler.php929 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Preprocessor.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Preprocessor_Hash.php26 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/CoreParserFunctions.php54 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/CoreTagHooks.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/MagicWordArray.php9 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/ParserFunctions/includes/Hooks.php4 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/ParserFunctions/includes/ParserFunctions.php29 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/SyntaxHighlight_GeSHi/includes/SyntaxHighlight.php21 KB
/home/u730917019/domains/soutar36.com/public_html/includes/api/Hook/ApiFormatHighlightHook.php791 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/TemplateData/includes/Hooks.php12 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedVideo.php16 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/EmbedServiceFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/ArchiveOrg.php940 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/AbstractEmbedService.php11 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Bandcamp.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Bilibili.php1 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Ccc.php754 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/DailyMotion.php820 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/ExternalVideo.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/KakaoTV.php870 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Loom.php750 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/NaverTV.php820 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Niconico.php804 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/SharePoint.php819 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/SoundCloud.php1 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Spotify/SpotifyAlbum.php1 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Spotify/SpotifyArtist.php414 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Spotify/SpotifyShow.php396 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Spotify/SpotifyEpisode.php405 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Spotify/SpotifyTrack.php411 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Twitch/Twitch.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Twitch/TwitchClip.php566 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Twitch/TwitchVod.php410 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/VideoLink.php282 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Vimeo.php885 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/Wistia.php776 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/YouTube/YouTube.php1 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/YouTube/YouTubeOEmbed.php590 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/OEmbedServiceInterface.php385 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/YouTube/YouTubePlaylist.php408 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/EmbedVideo/includes/EmbedService/YouTube/YouTubeVideoList.php275 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserOptions.php46 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/TempUser/TempUserCreator.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/AuthManager.php104 KB
/home/u730917019/domains/soutar36.com/public_html/includes/watchlist/WatchlistManager.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/RecentChange.php45 KB
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/Taggable.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/TalkPageNotificationManager.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/watchlist/WatchedItemStore.php54 KB
/home/u730917019/domains/soutar36.com/public_html/includes/watchlist/WatchedItemStoreInterface.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/BotPasswordStore.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/Throttler.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/LinkHolderArray.php15 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/StripState.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/profiler/SectionProfiler.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPFrame_Hash.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPFrame.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPDStack_Hash.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPDStackElement_Hash.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPDPart_Hash.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPNode_Hash_Tree.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPNode.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPNode_Hash_Array.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/CoreMagicVariables.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserGroupMembership.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Message/ListParam.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Request/PathRouter.php14 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Html/Html.php39 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/HtmlArmor.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/recentchanges/ChangesList.php32 KB
/home/u730917019/domains/soutar36.com/public_html/includes/linker/Linker.php72 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/UserTimeCorrection.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/changetags/ChangeTags.php49 KB
/home/u730917019/domains/soutar36.com/public_html/includes/CommentFormatter/CommentParser.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/cache/LinkBatch.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/StringUtils.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/cache/CacheKeyHelper.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageSelectQueryBuilder.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specialpage/SpecialPage.php36 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/cldr-plural-rule-parser/src/Evaluator.php5 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/cldr-plural-rule-parser/src/Range.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Core/TOCData.php10 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/json-codec/src/JsonCodecableTrait.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/json-codec/src/JsonCodecable.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/PPNode_Hash_Text.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Utils/DOMUtils.php27 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/DOM/DOMBuilder.php14 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/Utils/DOMCompat.php17 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/Document.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/Node.php145 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/Attr.php119 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/Comment.php140 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/CharacterData.php163 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/DocumentFragment.php143 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/DocumentType.php135 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/Element.php125 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/ProcessingInstruction.php153 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/parsoid/src/DOM/Text.php134 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/parser/BlockLevelPass.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/tidy/RemexCompatMunger.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/tidy/RemexCompatBuilder.php985 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/tidy/RemexMungerData.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/DefaultOutputPipelineFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/OutputTransformPipeline.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/ExtractBody.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/ContentTextTransformStage.php819 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/OutputTransformStage.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/AddRedirectHeader.php612 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/RenderDebugInfo.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/ParsoidLocalization.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/ContentDOMTransformStage.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/ExecutePostCacheTransformHooks.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/AddWrapperDivClass.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/HandleSectionLinks.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/HandleParsoidSectionLinks.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/HandleTOCMarkers.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/DeduplicateStyles.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/ExpandToAbsoluteUrls.php652 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/OutputTransform/Stages/HydrateHeaderPlaceholders.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserOutputFlags.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/Parsoid/PageBundleParserOutputConverter.php4 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/ScribuntoContent.php789 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/diff/TextSlotDiffRenderer.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/diff/SlotDiffRenderer.php5 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/ApiVisualEditor.php20 KB
/home/u730917019/domains/soutar36.com/public_html/includes/api/ApiBase.php69 KB
/home/u730917019/domains/soutar36.com/public_html/includes/api/ApiBlockInfoTrait.php5 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/ApiParsoidTrait.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/poolcounter/PoolCounterWorkViaCallback.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/poolcounter/PoolCounterWork.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/poolcounter/PoolCounterFactory.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/poolcounter/PoolCounterNull.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/poolcounter/PoolCounter.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Diff/Diff.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Diff/DiffEngine.php22 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Diff/DiffOpCopy.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Diff/DiffOp.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Diff/DiffOpDelete.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Diff/DiffOpAdd.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Diff/TableDiffFormatter.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/Diff/DiffFormatter.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/ParserOutputAccess.php21 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserCacheFactory.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/json/JsonCodec.php11 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/json-codec/src/JsonCodec.php20 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/json-codec/src/JsonCodecInterface.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/json/JsonDeserializer.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/json/JsonSerializer.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/json-codec/src/JsonStdClassCodec.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/json-codec/src/JsonClassCodec.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RevisionRenderer.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/content/Renderer/ContentRenderer.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserCache.php23 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserCacheFilter.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/RenderedRevision.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/SlotRenderingProvider.php702 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/content/Renderer/ContentParseParams.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/MainSlotRoleHandler.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Revision/SlotRoleHandler.php6 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/bcp-47-code/src/Bcp47CodeValue.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/remex-html/src/Tokenizer/LazyAttributes.php3 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/LuaModule.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/ScribuntoModuleBase.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaStandalone/LuaStandaloneInterpreter.php18 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Shellbox.php9 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaStandalone/LuaStandaloneInterpreterFunction.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Hooks/HookRunner.php892 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Hooks/ScribuntoExternalLibrariesHook.php552 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Hooks/ScribuntoExternalLibraryPathsHook.php567 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/ParserFunctions/includes/ScribuntoHooks.php738 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/SiteLibrary.php8 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/LibraryBase.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/specials/SpecialVersion.php45 KB
/home/u730917019/domains/soutar36.com/public_html/includes/utils/GitInfo.php13 KB
/home/u730917019/domains/soutar36.com/public_html/includes/SiteStats/SiteStats.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/expression/OrExpressionGroup.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/libs/rdbms/expression/ExpressionGroup.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/UriLibrary.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/UstringLibrary.php26 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/LanguageLibrary.php13 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/MessageLibrary.php3 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/TitleLibrary.php16 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/TextLibrary.php6 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/HtmlLibrary.php332 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/Scribunto/includes/Engines/LuaCommon/HashLibrary.php920 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/ParserFunctions/includes/LuaLibrary.php717 bytes
/home/u730917019/domains/soutar36.com/public_html/extensions/SyntaxHighlight_GeSHi/includes/Pygmentize.php11 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight.lexers.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/json/FormatJson.php10 KB
/home/u730917019/domains/soutar36.com/public_html/includes/shell/CommandFactory.php6 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/psr/log/Psr/Log/LoggerAwareTrait.php402 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/shell/ShellboxClientFactory.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/utils/ExecutableFinder.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/TempDirManager.php5 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/UnboxedExecutor.php13 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/BashWrapper.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/Wrapper.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/LocalBoxedExecutor.php15 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/BoxedExecutor.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/BoxedCommand.php14 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/Command.php15 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/InputFileFromString.php534 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/InputFileWithContents.php522 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/InputFile.php868 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/UserDataTrait.php617 bytes
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/FileUtils.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/BoxedResult.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/shellbox/src/Command/UnboxedResult.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/parser/ParserObserver.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/page/PageProps.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/deferred/TransactionRoundDefiningUpdate.php1 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/VisualEditorHookRunner.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/VisualEditorApiVisualEditorEditPreSaveHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/VisualEditorApiVisualEditorEditPostSaveHook.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/VisualEditorBeforeEditorHook.php630 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Html/TemplateParser.php10 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/zordius/lightncandy/src/LightnCandy.php6 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/zordius/lightncandy/src/Flags.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentCopyright.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponent.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentLastModified.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentLogo.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentTableOfContents.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentSearch.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentFooter.php12 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/SkinModule.php27 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/LessVarFileModule.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentMenu.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/context/DerivativeContext.php7 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentListItem.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentLink.php9 KB
/home/u730917019/domains/soutar36.com/public_html/includes/skins/components/SkinComponentUtils.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/ThrottlePreAuthenticationProvider.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/AbstractPreAuthenticationProvider.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/AbstractAuthenticationProvider.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/AuthenticationProvider.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/PreAuthenticationProvider.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/TemporaryPasswordPrimaryAuthenticationProvider.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/AbstractTemporaryPasswordPrimaryAuthenticationProvider.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/AbstractPasswordPrimaryAuthenticationProvider.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/AbstractPrimaryAuthenticationProvider.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/PrimaryAuthenticationProvider.php17 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/LocalPasswordPrimaryAuthenticationProvider.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/CheckBlocksSecondaryAuthenticationProvider.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/AbstractSecondaryAuthenticationProvider.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/SecondaryAuthenticationProvider.php11 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/ResetPasswordSecondaryAuthenticationProvider.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/auth/EmailNotificationSecondaryAuthenticationProvider.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/MonoBook/includes/Hooks.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Hooks.php21 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Constants.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/upload/UploadBase.php72 KB
/home/u730917019/domains/soutar36.com/public_html/includes/xml/Xml.php28 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/FeatureManager.php12 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/Requirements/DynamicConfigRequirement.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/Requirement.php1 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/Requirements/OverridableConfigRequirement.php5 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/Requirements/OverrideableRequirementHelper.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/Requirements/SimpleRequirement.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/Requirements/LoggedInRequirement.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/Requirements/UserPreferenceRequirement.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/FeatureManagement/Requirements/LimitedWidthContentRequirement.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentPageTools.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponent.php268 bytes
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentVariants.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentUserLinks.php11 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentSearchBox.php4 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentMainMenu.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentPinnableHeader.php2 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentDropdown.php1 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentAppearance.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/languages/data/Names.php28 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentMenu.php921 bytes
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentButton.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentPinnableContainer.php660 bytes
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/Components/VectorComponentPinnableElement.php418 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/utils/FileContentsHasher.php3 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/zordius/lightncandy/src/Runtime.php30 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/zordius/lightncandy/src/Encoder.php6 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/ResourceLoader.php77 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Context.php14 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/dependencystore/KeyValueDependencyStore.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/dependencystore/DependencyStore.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/MessageBlobStore.php8 KB
/home/u730917019/domains/soutar36.com/public_html/resources/Resources.php109 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/HookRunner.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Hook/ResourceLoaderExcludeUserOptionsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Hook/ResourceLoaderForeignApiModulesHook.php887 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Hook/ResourceLoaderModifyEmbeddedSourceUrlsHook.php1 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Hook/ResourceLoaderSiteModulePagesHook.php737 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Hook/ResourceLoaderSiteStylesModulePagesHook.php757 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/Hook/ResourceLoaderJqueryMsgModuleMagicWordsHook.php920 bytes
/home/u730917019/domains/soutar36.com/public_html/includes/Request/FauxRequest.php8 KB
/home/u730917019/domains/soutar36.com/public_html/includes/Request/FauxResponse.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/OOUIImageModule.php5 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/ImageModule.php15 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/FilePath.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/OOUIIconPackModule.php3 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/SyntaxHighlight_GeSHi/includes/ResourceLoaderPygmentsModule.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/CodexModule.php22 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/SiteStylesModule.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/WikiModule.php22 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/UserStylesModule.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/UserModule.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/ClientHtml.php16 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/SiteModule.php2 KB
/home/u730917019/domains/soutar36.com/public_html/extensions/VisualEditor/includes/VisualEditorDesktopArticleTargetInitModule.php2 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/UserOptionsModule.php3 KB
/home/u730917019/domains/soutar36.com/public_html/skins/Vector/includes/ConfigHelper.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/DerivativeContext.php7 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/minify/src/JavaScriptMinifier.php69 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/minify/src/IdentityMinifierState.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/minify/src/MinifierState.php4 KB
/home/u730917019/domains/soutar36.com/public_html/includes/user/LoggedOutEditToken.php2 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/minify/src/JavaScriptMinifierState.php1 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/wrappedstring/src/WrappedString.php4 KB
/home/u730917019/domains/soutar36.com/public_html/vendor/wikimedia/wrappedstring/src/WrappedStringList.php3 KB
/home/u730917019/domains/soutar36.com/public_html/includes/ResourceLoader/StartUpModule.php16 KB