Project:Support desk

Jump to navigation Jump to search

About this board

Welcome to MediaWiki.org's Support desk, where you can ask MediaWiki questions!

There are also other places where to ask :

Before you post

Post a new question

  1. To help us answer your questions, please always indicate which versions you are using (reported by your wiki's Special:Version page):
    • MediaWiki
    • PHP
    • Database
  2. Please include the URL of your wiki unless you absolutely can't. It's often a lot easier for us to identify the source of the problem if we can look for ourselves.
  3. To start a new thread, click "Start a new topic".
Previous page history was archived for backup purposes at Project:Support_desk/old on 2015-07-30.
Other languages: English  العربية čeština Esperanto français 日本語 中文
45.36.138.113 (talkcontribs)

Hello, I am using mediawiki and ecountered 2 issues.


The first: References simply are not working as they should (This link shows an example: https://i.imgur.com/lj9G91k.png )

The second: I want to use the political party infobox from Wikipedia, but when I type out the same text Wikipedia uses nothing happens (essentially the same thing as what happens with references happens)


Here is a link to my wiki: http://127.0.0.1/wiki/index.php/Main_Page


Thank you for any assistance you are able to give.

Malyacko (talkcontribs)

Is the Cite extension installed? Did you properly import the party infobox template to your wiki? The link to your wiki won't work because "127.0.0.1" means "my private computer" for everyone.

Reply to "ref and template issues on mediawiki"

Appearing logged out on random file pages and CSS/JS

8
Vishkujo (talkcontribs)

My wiki has a weird issue where I randomly appear logged out on random file pages where the image was replaced and after editing CSS or JS pages like MediaWiki:Common.css. If I purge the page by adding ?action=purge to the end of the url, it shows me logged in again. However, after I edit the page again and it takes me back to the page, I appear logged out again. Refreshing doesn't work and clicking log in does nothing when it's like this. I'm not the only user with the problem either.

I have these settings in LocalSettings.php:

$wgMainCacheType = CACHE_ACCEL;

$wgSessionCacheType = CACHE_DB;


Anyone know how to fix this? It's really annoying when editing CSS. Thanks.

Malyacko (talkcontribs)
Bawolff (talkcontribs)

this sounds lesslike a login problem and more like some sort of weird caching issue. Do you have file cache, varnish or any other sort of front end cache (some service providrrs may offer this as part of their package.)

This might be difficult, but if you could provide a HAR file demonstrating the issue, it could be useful for debugging.

Vishkujo (talkcontribs)

Checked the above link and the issue remains while in incognito and in a different browser (both Firefox and Chrome). Adblock is off, remember me unchecked and checked still had the issue. I have MW 1.33.1.

I think it is a caching issue like Bawolff said. I use Cloudflare which seems to make weird things happen with MediaWiki. Here's a HAR file: https://drive.google.com/open?id=1arqwNgD1jcSRqj1vLmZXutyK7Bm8wD6a Not sure if I did it properly but I hope it helps.

I got the issue when opening File:UJ Part 8 Announcement.jpg from Recent Changes. I had never even viewed that image before.

Ciencia Al Poder (talkcontribs)

At first glance, it seems the problem is in CloudFlare. The request to https://jojowiki.com/File:UJ_Part_8_Announcement.jpg includes session cookies, but the response headers indicate the page has been cached: cf-cache-status: HIT

Response headers include the vary: header that indicate cookies invalidate cache:

vary: Accept-Encoding
vary: Accept-Encoding, Accept-Language, Cookie

On the other hand, I can't say if this vary header was generated by MediaWiki or by CloudFlare. If it was generated by CloudFlare and not MediaWiki (I note the header appears 2 times), it may be that CF sends the vary by cookie, but MediaWiki doesn't, causing CloudFlare to send a request to MediaWiki with the last-modified header set, and MediaWiki is replying with a 302 Not Modified, causing CF to reply with a cached response. This is hard to tell and only reviewing access logs on the server could tell what the actual response was, or maybe disable CloudFlare and try again to see if the problem is reproducible.

Bawolff (talkcontribs)

Ah, maybe cloudflare see's the .jpg and .css at the end of url, and assumes its an image or css file regardless of the content-type header. - docs seem to support this: https://support.cloudflare.com/hc/en-us/articles/200172516#h_a01982d4-d5b6-4744-bb9b-a71da62c160a

However, cloudflare says it will respect web server caching headers, and mediawiki should send "Cache-Control: private, must-revalidate, max-age=0" (both for logged in and out), according to this should prevent cloudflare from caching.

Some things to check: Do you have $wgUseCdn or $wgUseSquid set to true in LocalSettings.php? (You definitely should not have them set to true without additional config to make sure that the wrong pages aren't cached). Is mediawiki setting correct headers (Do you have an error about headers already sent in your php error log)?

That said, I did some testing. I don't think you have the header setting issue, as I was able to get it to set headers in appropriate circumstances.

I think $wgUseSquid being set to true (Where it should not be) is the most likely possibility. The s-maxage cache control is being set on special:recentchanges to 10, which only happens when $wgUseSquid is set to true, and 10 is a really weird number, so its unlikely to be cloud-flare overriding mediawiki.

Bawolff (talkcontribs)

As an addendum, its possible to make cloud-flare caching work with MediaWiki (I think), but you do need to ensure that it vary's on cookies (Or at least, vary's on session cookies), which only their enterprise tier supports.

Vishkujo (talkcontribs)

I don't know if it's fixed for sure but I just removed the $wgUseSquid = true line and now it doesn't log me out when clicking that UJ_Part_8_Announcement file. Thanks so much.

Reply to "Appearing logged out on random file pages and CSS/JS"
AlgorithmGG (talkcontribs)

Hi I have been working on a MW project for sometime now and it would appear I need a custom server with apache 2.4 to run the relevant dependences such as LAU. Does anyone have a service they could recommend or advice on building my own server please or maybe there is an alternative available?


Kind Regards

Malyacko (talkcontribs)
AlgorithmGG (talkcontribs)

Awesome, Thanks, looks like a selections of decent services.

Bawolff (talkcontribs)

please note, you do not require a specific version of apache (or even apache as your webserver at all) in order to have lua support via extension:Scribunto

AlgorithmGG (talkcontribs)

Is this so? looks like i have solved the Apache issue but still currently without LAU, what would you suggest?

AlgorithmGG (talkcontribs)

Will i run into problems with version higher than 5.1.5?

Bawolff (talkcontribs)

if you mean using lua as a templating language in mediawiki, just install extension:scribunto which comes bundled with appropriate lua version.


If you mean using Lua (im assuming you are just misspelling lua as LAU? I have no idea what lau is) for something else, you will have to be more specific as to what you are doing

AlgorithmGG (talkcontribs)

@Bawolff As far as i am aware the Lua language has to be installed on apache like php etc just installing extention:scribunto doesn't work. i am planning to do update MW, which version would you suggest? do you know anyone who has a mysql database set up and uses structured discussions and templates successfully?

Reply to "Meidawiki Server"

There seems to be a problem with your login session; This action has been canceled as a precaution against session hijacking. Please resubmit the form.

11
Guilherme bangemann (talkcontribs)

I'm getting this error when I try to Login in my account on my Wiki.

On my LocalSettings.php :

$wgMainCacheType = CACHE_ACCEL;

$wgMemCachedServers = [];

$wgSessionCacheType = CACHE_DB;


I want to bind with my LDAP. LDAP is set correclty. Works on anothers sites on my server.

I just need to use the Extension LDAP, and it doesn't works!


LocalSettings.php:

wfLoadExtensions( [
        'PluggableAuth',
        'Auth_remoteuser',
        'LDAPProvider',
        'LDAPAuthentication2',
        'LDAPAuthorization',
        'LDAPUserInfo'
] );

$LDAPAuthorizationAutoAuthRemoteUserStringParser = 'solis';
$LDAPAuthentication2UsernameNormalizer = 'solis';
$LDAPAuthentication2AllowLocalLogin = true;
$wgAuthRemoteuserAllowUserSwitch = true;
$wgPluggableAuth_EnableLocalLogin = true;

 

$wgCookieSecure = false;

$wgShowExceptionDetails = true;



/var/www/wiki/extensions/LDAPProvider/docs/ldapprovider.json

{

        "solis": {

                "connection": {

                        "server": "ldapslave.solis.com.br",

                        "user": "cn=read-only-admin,dc=solis,dc=coop,dc=br",

                        "pass": "password",

                        "options": {

                                "LDAP_OPT_DEREF": 1

                        },

                        "basedn": "dc=solis,dc=coop,dc=br",

                        "groupbasedn": "dc=solis,dc=coop,dc=br",

                        "userbasedn": "dc=solis,dc=coop,dc=br",

                        "searchattribute": "uid",

                        "searchstring": "uid=guilherme_bangemann,dc=solis,dc=coop,dc=br",

                        "usernameattribute": "uid",

                        "realnameattribute": "cn",

                        "emailattribute": "mail"

                },

                "userinfo": {

                        "attributes-map": {

                                "email": "mail",

                                "realname": "cn",

"nickname": "uid",

                                "language": "preferredlanguage"

                        }

                },

                "groupsync": {

                        "mapping": {

                                "mathematicians": "ou=mathematicians,dc=solis,dc=coop,dc=br",

                                "scientists": "ou=scientists,dc=solis,dc=coop,dc=br"

                        }

                }

        }

}

MarkAHershberger (talkcontribs)
Osnard (talkcontribs)

What is 'solis'? This does not look like a valid value for $LDAPAuthorizationAutoAuthRemoteUserStringParser and $LDAPAuthentication2UsernameNormalizer.

Can you please post the output of $wgDebugLogFile?

Guilherme bangemann (talkcontribs)

I fortgot:

And what's the directory for LogFile??

#$wgDebugLogFile = "/var/log/wiki/debug-{$wg}.log";

What I need to put on ".../debug-{???}.log"; ????

Guilherme bangemann (talkcontribs)
Guilherme bangemann (talkcontribs)

$wgDebugLogFile @Osnard

A1exP (talkcontribs)

Hello,


Getting the same with LDAP stack on MW 1.31.

Was there a solution found for this?


Thanks,

Alex

Osnard (talkcontribs)

Unfortunately the debug log file does not contain hints. Have you tried using $wgMainCacheType = CACHE_DB; ?

A1exP (talkcontribs)

Yes, I have the below set

$wgMainCacheType = CACHE_ACCEL;

$wgSessionCacheType = CACHE_DB;

$wgMemCachedServers = [];


and at the end of the LocalSettings.php file

$wgCookieSecure = false;


In the browser, in the Cookie request header I can find

my_wiki_test51a2e67c_session=i6c1i83p0usojiifinlsvenrgc8liq4p


Full value:

Cookie:

experimentation_subject_id=IjAyZGQ2NzllLTA2MDAtNDlkNS04MzRhLTA4NDZjZTdkNjJlYSI%3D--b5c89d226c39b439cbfa6e7dc145c14ae8a548a0; consent=1; RIDC=undefined; RIDFPF=undefined-undefined-undefined-undefined-undefined-undefined-undefined-undefined-undefined-undefined-undefined-undefined-undefined-undefined; RIDSCR=undefined; _ga=GA1.2.1907998560.1576060652; my_wiki_testUserName=Root; my_wiki_test51a2e67c_session=i6c1i83p0usojiifinlsvenrgc8liq4p; UseDC=master; UseCDNCache=false


While in the objectcache table I find the keyname column with value

my_wiki_test:MWSession:i6c1i83p0usojiifinlsvenrgc8liq4p


"my_wiki_test" is the DB name


Below is what I get in the log file for this session

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] Connection 40421 will be used for SqlBagOStuff

[CryptRand] 0 bytes of randomness leftover in the buffer.

[session] SessionBackend "i6c1i83p0usojiifinlsvenrgc8liq4p" is unsaved, marking dirty in constructor

[session] SessionBackend "i6c1i83p0usojiifinlsvenrgc8liq4p" save: dataDirty=1 metaDirty=1 forcePersist=0

[cookie] setcookie: "my_wiki_test51a2e67c_session", "", "1544864578", "/", "", "", "1"

[cookie] already deleted setcookie: "my_wiki_test51a2e67cUserID", "", "1544864578", "/", "", "", "1"

[cookie] already deleted setcookie: "my_wiki_test51a2e67cToken", "", "1544864578", "/", "", "", "1"

[cookie] already deleted setcookie: "forceHTTPS", "", "1544864578", "/", "", "", "1"

Unstubbing $wgParser on call of $wgParser::setHook from wfFileList

Parser: using preprocessor: Preprocessor_DOM

[MessageCache] MessageCache::load: Loading en... local cache is empty, got from global cache

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: connected to database 0 at 'localhost'.

[session] SessionBackend "i6c1i83p0usojiifinlsvenrgc8liq4p" force-persist due to persist()

[session] SessionBackend "i6c1i83p0usojiifinlsvenrgc8liq4p" save: dataDirty=0 metaDirty=1 forcePersist=1

[cookie] setcookie: "my_wiki_test51a2e67c_session", "i6c1i83p0usojiifinlsvenrgc8liq4p", "0", "/", "", "", "1"

[cookie] already deleted setcookie: "my_wiki_test51a2e67cRemoteToken", "", "1578992578", "/", "", "", "1"

[cookie] already deleted setcookie: "my_wiki_test51a2e67cUserID", "", "1544864578", "/", "", "", "1"

[cookie] already deleted setcookie: "my_wiki_test51a2e67cToken", "", "1544864578", "/", "", "", "1"

[cookie] already deleted setcookie: "forceHTTPS", "", "1544864578", "/", "", "", "1"

[session] SessionBackend "i6c1i83p0usojiifinlsvenrgc8liq4p" Taking over PHP session

[session] SessionBackend "i6c1i83p0usojiifinlsvenrgc8liq4p" save: dataDirty=0 metaDirty=1 forcePersist=1

[cookie] already set setcookie: "my_wiki_test51a2e67c_session", "i6c1i83p0usojiifinlsvenrgc8liq4p", "0", "/", "", "", "1"

[cookie] already deleted setcookie: "my_wiki_test51a2e67cRemoteToken", "", "1578992578", "/", "", "", "1"

[cookie] already deleted setcookie: "my_wiki_test51a2e67cUserID", "", "1544864578", "/", "", "", "1"

[cookie] already deleted setcookie: "my_wiki_test51a2e67cToken", "", "1544864578", "/", "", "", "1"

[cookie] already deleted setcookie: "forceHTTPS", "", "1544864578", "/", "", "", "1"

Unstubbing $wgLang on call of $wgLang::_unstub from ParserOptions->__construct

QuickTemplate::__construct was called with no Config instance passed to it

[CryptRand] 0 bytes of randomness leftover in the buffer.

[CryptRand] 0 bytes of randomness leftover in the buffer.

[session] SessionBackend "i6c1i83p0usojiifinlsvenrgc8liq4p" data dirty due to dirty(): LoginSignupSpecialPage->getFakeTemplate/SpecialUserLogin->getToken/MediaWiki\Session\Session->getToken/MediaWiki\Session\Session->set/MediaWiki\Session\SessionBackend->dirty

[GlobalTitleFail] MessageCache::parse called by array_map/AuthManagerSpecialPage::{closure}/Message->parse/Message->toString/Message->parseText/MessageCache->parse with no title set.

[GlobalTitleFail] MessageCache::parse called by array_map/AuthManagerSpecialPage::{closure}/Message->parse/Message->toString/Message->parseText/MessageCache->parse with no title set.

[session] SessionBackend "i6c1i83p0usojiifinlsvenrgc8liq4p" save: dataDirty=1 metaDirty=0 forcePersist=0

User::getBlockedStatus: checking...

MediaWiki::preOutputCommit: primary transaction round committed

MediaWiki::preOutputCommit: pre-send deferred updates completed

[DBReplication] Wikimedia\Rdbms\ChronologyProtector::shutdownLB: DB 'localhost' touched

MediaWiki::preOutputCommit: LBFactory shutdown completed

[cookie] setcookie: "UseDC", "master", "1576400589", "/", "", "", "1"

[cookie] setcookie: "UseCDNCache", "false", "1576400589", "/", "", "", "1"

Parser: using preprocessor: Preprocessor_DOM

OutputPage::sendCacheControl: private caching;  **

[runJobs] smw.propertyStatisticsRebuild SMW\SQLStore\Installer rootJobIsSelf=1 rootJobSignature=db42ba0748fde875c7dd60ebc4ffd96d265c3390 rootJobTimestamp=20191214200302 waitOnCommandLine=5 requestId=51e637999976d512e0f49bae (id=43,timestamp=20191214200701) STARTING

[runJobs] smw.propertyStatisticsRebuild SMW\SQLStore\Installer rootJobIsSelf=1 rootJobSignature=db42ba0748fde875c7dd60ebc4ffd96d265c3390 rootJobTimestamp=20191214200302 waitOnCommandLine=6 requestId=51e637999976d512e0f49bae (id=43,timestamp=20191214200701) t=9 good

Request ended normally

[session] Saving all sessions on shutdown

[DBConnection] Wikimedia\Rdbms\{closure}: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\{closure}: closing connection to database 'localhost'.

[caches] cluster: APCBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: APCBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

    "IPAddress": "10.166.11.1",

    "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/79.0.3945.79 Safari\/537.36",

    "ChronologyProtection": false,

    "ChronologyPositionIndex": 0

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: connected to database 0 at 'localhost'.

[caches] cluster: APCBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: APCBagOStuff, session: SqlBagOStuff

[caches] cluster: APCBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: APCBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBConnection] Wikimedia\Rdbms\{closure}: closing connection to database 'localhost'.

[caches] LocalisationCache: using store LCStoreDB

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

    "IPAddress": "10.166.11.1",

    "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/79.0.3945.79 Safari\/537.36",

    "ChronologyProtection": false,

    "ChronologyPositionIndex": 0

}

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

    "IPAddress": "10.166.11.1",

    "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/79.0.3945.79 Safari\/537.36",

    "ChronologyProtection": false,

    "ChronologyPositionIndex": 0

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: connected to database 0 at 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: connected to database 0 at 'localhost'.

[MessageCache] MessageCache::load: Loading en... local cache is empty, got from global cache

[DBConnection] Wikimedia\Rdbms\{closure}: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\{closure}: closing connection to database 'localhost'.

[caches] cluster: APCBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: APCBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

    "IPAddress": "10.166.11.1",

    "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/79.0.3945.79 Safari\/537.36",

    "ChronologyProtection": false,

    "ChronologyPositionIndex": 0

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: connected to database 0 at 'localhost'.

[DBConnection] Wikimedia\Rdbms\{closure}: closing connection to database 'localhost'.

Guilherme bangemann (talkcontribs)

@A1exP Try to see this situation:

https://www.mediawiki.org/w/index.php?title=Topic:V7i1eb6u4f779tpx&topic_showPostId=v7lpokzmvn7m2d2l&fromnotif=1#flow-post-v7lpokzmvn7m2d2l

https://www.mediawiki.org/w/index.php?title=Topic:V7fstm646jz6rjt5&topic_showPostId=v7lqcjha6pgxmymi&fromnotif=1#flow-post-v7lqcjha6pgxmymi


It worked for me.


Maybe try executing this code:

sudo php extensions/LDAPProvider/maintenance/ShowUserInfo.php --domain (YOUR-DOMAIN) --username (YOUR-USER-TEST)

sudo php extensions/LDAPProvider/maintenance/ShowUserGroups.php --domain (YOUR-DOMAIN) --username (YOUR-USER-TEST)

sudo php extensions/LDAPProvider/maintenance/CheckLogin.php --domain (YOUR-DOMAIN) --username (YOUR-USER-TEST)


EXAMPLE:

sudo php extensions/LDAPProvider/maintenance/CheckLogin.php --domain solis --username guilherme_bangemann

A1exP (talkcontribs)

Hello,


The authentication is working.

[root@lnx-mediawiki kb-test.ipsosinteractive.com]# scl enable rh-php70 'php /opt/rh/httpd24/root/var/www/html/kb-test.ipsosinteractive.com/extensions/LDAPProvider/maintenance/CheckLogin.php --domain "*********" --username "*********"'

Password:*********

OK

[root@lnx-mediawiki kb-test.ipsosinteractive.com]#


My issue is that that portion of code doesn't seem to get executed due to the session error "There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Please resubmit the form."


Thanks,

Alex

Reply to "There seems to be a problem with your login session; This action has been canceled as a precaution against session hijacking. Please resubmit the form."

Unable to auto login after SSO authentication

7
Rallison11 (talkcontribs)

I am trying to get my wiki to allow auto logins after being authenticated by SSO (siteminder). I am trying to use the extension Auth_remoteuser, and has added wfLoadExtension( 'Auth_remoteuser' ); to the LocalSettings.php file. But each time I access the wiki site, it shows that I am not logged in. Can anyone help with a correct set up to allow auto logins?

The configuration consists of the following:

Apache 2.4

mediawiki 1.32.2

PHP 7.1

MySQL 5.7

Running on servers with Solaris 11.3  


MarkAHershberger (talkcontribs)

How have you configured Auth_remoteuser?

Rallison11 (talkcontribs)

I have added the following to LocalSettings.php. but it's not working to auto login to the wiki site


wfLoadExtension( 'Auth_remoteuser' );

$wgAuthRemoteuserUserName = getenv( 'REMOTE_USER' );

Rallison11 (talkcontribs)

I would like to follow up to see if anyone can help point me in the right direction to get auto login to work after authenticating via SSO. Thanks in advance!

MarkAHershberger (talkcontribs)

Have you enabled the debug log and looked at it for problems?

Rallison11 (talkcontribs)

Mark, Yes, I had enabled the following debug log in LocalSettings.php

$wgDebugLogFile = "/var/apache2/2.4/logs/mw_debug.log";


I am not really sure what to look for in the debug output. I have pasted the output (some sensitive info replaced with xxx, company or domain) from when I logged in via SSO. I always get to my wiki page, but I am not logged into the wiki.


Could you review the out and see if you can determine if there are any errors in the output that could be preventing the auto login to work?


Once other thing, is this mediawiki site is being rebuilt on newer Solaris server hardware from a previous site running older versions of mediawiki and mysql. Could there be an issue with the user names existing in the wikidb imported from the previous wiki site?


IP: 10.xx.xxx.xxx

Start request GET /wiki/Main_Page

HTTP HEADERS:

HOST: osswiki.company.com

CONNECTION: keep-alive

CACHE-CONTROL: max-age=0

UPGRADE-INSECURE-REQUESTS: 1

USER-AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36

SEC-FETCH-USER: ?1

ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3

SEC-FETCH-SITE: cross-site

SEC-FETCH-MODE: navigate

REFERER: https://logindev.ebiz.company.com/onesso/login.jsp?TYPE=33554433&REALMOID=06-527c6c29-addf-1070-9023-85114dc6fd5f&GUID=&SMAUTHREASON=0&METHOD=GET&SMAGENTNAME=$SM$YAGo%2bTm3X%2bxRSAx4LRFCBnyXNBzu%2b9oyRxqxU0vhKyCtCikXn9KzPpZbbJqMoDpg&TARGET=$SM$HTTPS%3a%2f%2fosswiki%2etdc%2edomain%2ecom%2fwiki%2fMain_Page

ACCEPT-ENCODING: gzip, deflate, br

ACCEPT-LANGUAGE: en-US,en;q=0.9

COOKIE: SMSESSION=D4C3GEVV9IHcEv09NyNQK20dJWl2Yadc4NboQMqDfHQDTiLlaAOezpANfgp1nhcBL0IFcg5OgyRFZnKdeG8TJjEC2lZ0+FcNVMLxftIobGNbutVA+h4o8Y+AZYW8Uj00t5ldDQs682ZxicLEvCYMhIPctvnvZYxDPEH4CKWLXRGAtjynNbQAhDjCNC2Jd9C5ZqF7RSbgEJY3HT9MVXy3vyryPCAciPx6Bk1x65sUWLVJcoWMx5g3Q4bEKa/oVwdTyBKRHTK9kNUoeP9xNEvr/+IOKVZ0ySXM7SCDLEEhOQwEFq6tO4jxqgKpkqPu8xwO8p6FbKthCyp43zoUTfRG+ITZvAyy5wyL+MDgijI3d5zuBPZZeY41Kic+y3RXNyZtLbWAyQVzLCe62B1ikB5MZEx5x6vPl1s7iHDOVHTsVg4vXCgiTGiaM+GAFxyG4jN/dU0hNu5DPHBaZZwOS8PDt8T3b+IpjCxkgVfmXv5kk7YvsUrtRwh7qf176y8BTTxBwqV5AIiR0jvg7wPmqWcFv/aYw5feaDwLNYEEFgxlikMm690O6Ns2iFOMsdKR3bYm1oGlZ4Rl4NkDDcclvraIq9GRcz2UpkvG98ohLTGtJfkOvRE3rxwf9KPzBkuTxrkAxB5NblzJkUySobEt5F7c8ou3wGgRh82fvdpJrbNy438DnWMB8V+BdxVkyxz56Jubpvf/qMvRgQXpL5PCR/UorS5p6tRuRTqUqJJR62CZZNkYE9IJWWo0GDF+U7u5ZSmSiREsfqnFf4DnRNtVWn/8BsDln84VQEwpmO8bCQmMD58UzHY4GBgiziPC5LR16CjsWYjE5goLwkYlj1KwxF5GifwVQfWGx3j2H0iVAqHqW8Ts883cWI+v6XqY4VclFzt6KpcMvYF7lrfAkMC3qh8RDuDkfdvYUO4VWvy4afXk5UDPWEC+bdZ4SS/OCfju4ma0r/UR0kwNmkIIqF3Jw5GhBDqwzyVtMKO8qOcObrReQIHDEhx4YWl8/VZmrvwPn4EWz2pj6O8K9HhRecfznAuEIDXBeE4MuSXPx2Ud1VoJA2Fq6LNnKo3KGIVn6EvtXQlTnzH4/0shClRXr3w5X/2+JRq0/ctJMgqvB0LmfV/32/y7Cb7g+y1ux24BAoY36P9yFXbZcpcwVnyGeMrnxNJ+s/LiWBluNKRm

SM_TRANSACTIONID: 0000000000000000000000000a901826-078d-5de6e3ab-0001-316064a7

SM_SDOMAIN: .domain.com

SM_REALM: Root

SM_REALMOID: 06-527c6c29-addf-1070-9023-85114dc6fd5f

SM_AUTHTYPE: Form

SM_AUTHREASON: 0

SM_UNIVERSALID: 5896176581

SM_AUTHDIROID: 0e-d407abee-b2e6-105c-b646-85114dc60000

SM_AUTHDIRNAME: Prod AD

SM_AUTHDIRSERVER: QTWINLB.company.com:636,QTWINLB.company.com:636,QTWINLB.company.com:636,QTWINLB.company.com:636

SM_AUTHDIRNAMESPACE: LDAP:

SM_USER: allisra

SM_USERDN: CN=allisra,OU=SO,OU=Dev,OU=Accts,DC=qtwin,DC=qad,DC=domain,DC=com

SM_SERVERSESSIONID: XqDZ1LrSt/fmoFXpxnzH+SZIqjg=

SM_SERVERSESSIONSPEC: /mPxQ8vJMBcLjuFkP9Xt9VveCwgpOi9vyE6/mPjnuEZC+bnFHZZLh+NlL44nsLCSnJmJIcZaloO8mcoF0+5YRfs0JAFXIg3PUfnw+ob2qfnQlQyGymR9LfQnWnNZOoyjmnFGccXPRijZ9ddHEVGepxqFiHTAHHXqb94UiFHANY1/JwoyZI9X5gga9zY46NGJgW5cpCetfaPE8RHZcY7h1JqHFYzcWmZ3882Lme92wS1WJYUEBKHC3H0tzrTwG8lGY/UncEyfvZRmH6WAGvmtkGQwiS+8bUzKYfuU6FtwfaJSj1oUMytYA3i33aQwpDh5zP3eZ12Zza/FE6BrI63EyQAJdAhUjNT0NnUqJeIqXD/glXmGZ57PjR5y8smc7VHDRLNzoEqA7zor29jrw+bYkWSvQESl1eI/ffgrXZ1OkRu8TrVoJN1/kOvAoq8MCa1F3zjBKmak+r8KMAMagUtH1rizoaSlzg+t

SM_TIMETOEXPIRE: 35991

SM_SERVERIDENTITYSPEC:

EID: 5896176581

EMAIL: rance.lastname@company.com

FIRSTNAME: Rance

LASTNAME: Lastname

OFFICEPHONENUMBER: 678-xxx-xxxx

REMOTE_USER: allisra

VZID: V170450

[caches] cluster: EmptyBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: SqlBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBReplication] Cannot use ChronologyProtector with EmptyBagOStuff.

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

  "IPAddress": "10.xx.xxx.xxx",
  "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/78.0.3904.97 Safari\/537.36",
  "ChronologyProtection": false,
  "ChronologyPositionIndex": 0,
  "ChronologyClientId": null

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] Connection 6870 will be used for SqlBagOStuff

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[session] SessionBackend "5t3l8ojqoc00hbjic5qka2rr78984rf9" is unsaved, marking dirty in constructor

[session] SessionBackend "5t3l8ojqoc00hbjic5qka2rr78984rf9" save: dataDirty=1 metaDirty=1 forcePersist=0

[cookie] already deleted setcookie: "wikidb_vzwiki__session", "", "1543876653", "/", "", "1", "1"

[cookie] already deleted setcookie: "wikidb_vzwiki_UserID", "", "1543876653", "/", "", "1", "1"

[cookie] already deleted setcookie: "wikidb_vzwiki_Token", "", "1543876653", "/", "", "1", "1"

[cookie] already deleted setcookie: "forceHTTPS", "", "1543876653", "/", "", "", "1"

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

Title::getRestrictionTypes: applicable restrictions to Main Page are {edit,move}

[ContentHandler] Created handler for wikitext: WikitextContentHandler

OutputPage::checkLastModified: client did not send If-Modified-Since header

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2038-01-19 03:14:07

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[MessageCache] MessageCache::load: Loading en... local cache is empty, global cache is expired, loading from database

Unstubbing $wgParser on call of $wgParser::firstCallInit from MessageCache->transform

Parser: using preprocessor: Preprocessor_DOM

Unstubbing $wgLang on call of $wgLang::_unstub from ParserOptions->__construct

[caches] parser: SqlBagOStuff

Article::view using parser cache: yes

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-02 19:00:38

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

Article::view: doing uncached parse

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-02 19:00:38

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[Preprocessor] Cached preprocessor output (key: wikidb-vzwiki_:preprocess-xml:d63d12039fb041e3530d2ccbf28fb636:0)

SiteStats::loadAndLazyInit: reading site_stats from replica DB

[Preprocessor] Cached preprocessor output (key: wikidb-vzwiki_:preprocess-xml:087fe8b59415ccad0899929d13cb0c94:1)

[Mime] MimeAnalyzer::loadFiles: loading mime types from /var/apache2/2.4/htdocs/mediawiki-1.32.2/includes/libs/mime/mime.types

[Mime] MimeAnalyzer::loadFiles: loading mime info from /var/apache2/2.4/htdocs/mediawiki-1.32.2/includes/libs/mime/mime.info

File::transform: Doing stat for mwstore://local-backend/local-thumb/1/19/Vzwlogo2015-0903.png/163px-Vzwlogo2015-0903.png

[FileOperation] FileBackendStore::getFileStat: File mwstore://local-backend/local-thumb/1/19/Vzwlogo2015-0903.png/163px-Vzwlogo2015-0903.png does not exist

TransformationalImageHandler::doTransform: creating 163x37 thumbnail at /var/tmp//transform_748abc5167c7.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/1/19/Vzwlogo2015-0903.png/163px-Vzwlogo2015-0903.png

TransformationalImageHandler::doTransform: creating 163x37 thumbnail at /var/tmp//transform_bee56ddf7c59.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/1/19/Vzwlogo2015-0903.png/163px-Vzwlogo2015-0903.png

TransformationalImageHandler::doTransform: creating 163x37 thumbnail at /var/tmp//transform_84a1e9aafedd.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/b/b2/Documentation_icon.png/80px-Documentation_icon.png

[FileOperation] FileBackendStore::getFileStat: File mwstore://local-backend/local-thumb/b/b2/Documentation_icon.png/80px-Documentation_icon.png does not exist

TransformationalImageHandler::doTransform: creating 80x80 thumbnail at /var/tmp//transform_41b37130bf05.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/b/b2/Documentation_icon.png/80px-Documentation_icon.png

TransformationalImageHandler::doTransform: creating 80x80 thumbnail at /var/tmp//transform_116d8de68b70.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/b/b2/Documentation_icon.png/80px-Documentation_icon.png

TransformationalImageHandler::doTransform: creating 80x80 thumbnail at /var/tmp//transform_a2f5702a8ca8.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/3/31/320px-RedHat_svg.png/320px-320px-RedHat_svg.png

[FileOperation] FileBackendStore::getFileStat: File mwstore://local-backend/local-thumb/3/31/320px-RedHat_svg.png/320px-320px-RedHat_svg.png does not exist

TransformationalImageHandler::doTransform: creating 320x103 thumbnail at /var/tmp//transform_da051bce1f08.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/3/31/320px-RedHat_svg.png/320px-320px-RedHat_svg.png

TransformationalImageHandler::doTransform: creating 320x103 thumbnail at /var/tmp//transform_7758e3ff33c2.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/3/31/320px-RedHat_svg.png/320px-320px-RedHat_svg.png

TransformationalImageHandler::doTransform: creating 320x103 thumbnail at /var/tmp//transform_d1e7d1e50127.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/e/e7/320px-Centos-logo-light_svg.png/320px-320px-Centos-logo-light_svg.png

[FileOperation] FileBackendStore::getFileStat: File mwstore://local-backend/local-thumb/e/e7/320px-Centos-logo-light_svg.png/320px-320px-Centos-logo-light_svg.png does not exist

TransformationalImageHandler::doTransform: creating 320x108 thumbnail at /var/tmp//transform_92ec2a3fff71.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/e/e7/320px-Centos-logo-light_svg.png/320px-320px-Centos-logo-light_svg.png

TransformationalImageHandler::doTransform: creating 320x108 thumbnail at /var/tmp//transform_b768911755a9.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/e/e7/320px-Centos-logo-light_svg.png/320px-320px-Centos-logo-light_svg.png

TransformationalImageHandler::doTransform: creating 320x108 thumbnail at /var/tmp//transform_0b68fce1d385.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/e/ee/Aktualne_logo_Oracle_Solaris_OS_OSos.png/252px-Aktualne_logo_Oracle_Solaris_OS_OSos.png

[FileOperation] FileBackendStore::getFileStat: File mwstore://local-backend/local-thumb/e/ee/Aktualne_logo_Oracle_Solaris_OS_OSos.png/252px-Aktualne_logo_Oracle_Solaris_OS_OSos.png does not exist

TransformationalImageHandler::doTransform: creating 252x122 thumbnail at /var/tmp//transform_4444b2a9a4ce.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/e/ee/Aktualne_logo_Oracle_Solaris_OS_OSos.png/252px-Aktualne_logo_Oracle_Solaris_OS_OSos.png

TransformationalImageHandler::doTransform: creating 252x122 thumbnail at /var/tmp//transform_737f81b7cb95.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

File::transform: Doing stat for mwstore://local-backend/local-thumb/e/ee/Aktualne_logo_Oracle_Solaris_OS_OSos.png/252px-Aktualne_logo_Oracle_Solaris_OS_OSos.png

TransformationalImageHandler::doTransform: creating 252x122 thumbnail at /var/tmp//transform_ecdf6c6a9f4e.png using scaler client

TransformationalImageHandler::doTransform: returning unscaled image

[Preprocessor] Cached preprocessor output (key: wikidb-vzwiki_:preprocess-xml:d63d12039fb041e3530d2ccbf28fb636:0)

Saved in parser cache with key wikidb-vzwiki_:pcache:idhash:1-0!canonical and timestamp 20191203223734 and revision id 79909

MediaWiki::preOutputCommit: primary transaction round committed

MediaWiki::preOutputCommit: pre-send deferred updates completed

MediaWiki::preOutputCommit: LBFactory shutdown completed

Title::getRestrictionTypes: applicable restrictions to Main Page are {edit,move}

OutputPage::sendCacheControl: private caching; Tue, 03 Dec 2019 22:33:21 GMT **

[SQLBagOStuff] Duplicate get(): "wikidb-vzwiki_:pcache:idoptions:1" fetched 2 times

Request ended normally

[session] Saving all sessions on shutdown

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[caches] cluster: EmptyBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: SqlBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBReplication] Cannot use ChronologyProtector with EmptyBagOStuff.

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

  "IPAddress": "10.xxx.xxx.xxx",
  "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/78.0.3904.97 Safari\/537.36",
  "ChronologyProtection": false,
  "ChronologyPositionIndex": 0,
  "ChronologyClientId": null

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] Connection 6873 will be used for SqlBagOStuff

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[caches] cluster: EmptyBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: SqlBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBReplication] Cannot use ChronologyProtector with EmptyBagOStuff.

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

  "IPAddress": "10.xx.xxx.xxx",
  "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/78.0.3904.97 Safari\/537.36",
  "ChronologyProtection": false,
  "ChronologyPositionIndex": 0,
  "ChronologyClientId": null

}

[caches] cluster: EmptyBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: SqlBagOStuff, session: SqlBagOStuff

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[caches] LocalisationCache: using store LCStoreDB

[DBReplication] Cannot use ChronologyProtector with EmptyBagOStuff.

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

  "IPAddress": "10.xx.xxx.xxx",
  "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/78.0.3904.97 Safari\/537.36",
  "ChronologyProtection": false,
  "ChronologyPositionIndex": 0,
  "ChronologyClientId": null

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] Connection 6875 will be used for SqlBagOStuff

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2038-01-19 03:14:07

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[MessageCache] MessageCache::load: Loading en... local cache is empty, global cache is expired/volatile, loading from database

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[ContentHandler] Created handler for css: CssContentHandler

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] Connection 6877 will be used for SqlBagOStuff

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:54

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 17:50:57

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[caches] cluster: EmptyBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: SqlBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBReplication] Cannot use ChronologyProtector with EmptyBagOStuff.

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

  "IPAddress": "10.xx.xxx.xxx",
  "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/78.0.3904.97 Safari\/537.36",
  "ChronologyProtection": false,
  "ChronologyPositionIndex": 0,

    "ChronologyClientId": null

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] Connection 6879 will be used for SqlBagOStuff

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2038-01-19 03:14:07

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[MessageCache] MessageCache::load: Loading en... local cache is empty, global cache is expired/volatile, loading from database

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 15:04:58

[SQLBagOStuff] SqlBagOStuff debug: get: key has expired

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

IP: 10.xx.xxx.xxx

Start request GET /favicon.ico

HTTP HEADERS:

HOST: osswiki.company.com

CONNECTION: keep-alive

USER-AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36

ACCEPT: image/webp,image/apng,image/*,*/*;q=0.8

SEC-FETCH-SITE: same-origin

SEC-FETCH-MODE: no-cors

REFERER: https://osswiki.company.com/wiki/Main_Page

ACCEPT-ENCODING: gzip, deflate, br

ACCEPT-LANGUAGE: en-US,en;q=0.9

COOKIE: SMSESSION=D4C3GEVV9IHcEv09NyNQK20dJWl2Yadc4NboQMqDfHQDTiLlaAOezpANfgp1nhcBL0IFcg5OgyRFZnKdeG8TJjEC2lZ0+FcNVMLxftIobGNbutVA+h4o8Y+AZYW8Uj00t5ldDQs682ZxicLEvCYMhIPctvnvZYxDPEH4CKWLXRGAtjynNbQAhDjCNC2Jd9C5ZqF7RSbgEJY3HT9MVXy3vyryPCAciPx6Bk1x65sUWLVJcoWMx5g3Q4bEKa/oVwdTyBKRHTK9kNUoeP9xNEvr/+IOKVZ0ySXM7SCDLEEhOQwEFq6tO4jxqgKpkqPu8xwO8p6FbKthCyp43zoUTfRG+ITZvAyy5wyL+MDgijI3d5zuBPZZeY41Kic+y3RXNyZtLbWAyQVzLCe62B1ikB5MZEx5x6vPl1s7iHDOVHTsVg4vXCgiTGiaM+GAFxyG4jN/dU0hNu5DPHBaZZwOS8PDt8T3b+IpjCxkgVfmXv5kk7YvsUrtRwh7qf176y8BTTxBwqV5AIiR0jvg7wPmqWcFv/aYw5feaDwLNYEEFgxlikMm690O6Ns2iFOMsdKR3bYm1oGlZ4Rl4NkDDcclvraIq9GRcz2UpkvG98ohLTGtJfkOvRE3rxwf9KPzBkuTxrkAxB5NblzJkUySobEt5F7c8ou3wGgRh82fvdpJrbNy438DnWMB8V+BdxVkyxz56Jubpvf/qMvRgQXpL5PCR/UorS5p6tRuRTqUqJJR62CZZNkYE9IJWWo0GDF+U7u5ZSmSiREsfqnFf4DnRNtVWn/8BsDln84VQEwpmO8bCQmMD58UzHY4GBgiziPC5LR16CjsWYjE5goLwkYlj1KwxF5GifwVQfWGx3j2H0iVAqHqW8Ts883cWI+v6XqY4VclFzt6KpcMvYF7lrfAkMC3qh8RDuDkfdvYUO4VWvy4afXk5UDPWEC+bdZ4SS/OCfju4ma0r/UR0kwNmkIIqF3Jw5GhBDqwzyVtMKO8qOcObrReQIHDEhx4YWl8/VZmrvwPn4EWz2pj6O8K9HhRecfznAuEIDXBeE4MuSXPx2Ud1VoJA2Fq6LNnKo3KGIVn6EvtXQlTnzH4/0shClRXr3w5X/2+JRq0/ctJMgqvB0LmfV/32/y7Cb7g+y1ux24BAoY36P9yFXbZcpcwVnyGeMrnxNJ+s/LiWBluNKRm

SM_TRANSACTIONID: 0000000000000000000000000a901826-078e-5de6e3b8-0001-02773545

SM_SDOMAIN: .domain.com

SM_REALM: Root

SM_REALMOID: 06-527c6c29-addf-1070-9023-85114dc6fd5f

SM_AUTHTYPE: Form

SM_AUTHREASON: 0

SM_UNIVERSALID: 5896176581

SM_AUTHDIROID: 0e-d407abee-b2e6-105c-b646-85114dc60000

SM_AUTHDIRNAME: Prod AD

SM_AUTHDIRSERVER: QTWINLB.company.com:636,QTWINLB.company.com:636,QTWINLB.company.com:636,QTWINLB.company.com:636

SM_AUTHDIRNAMESPACE: LDAP:

SM_USER: allisra

SM_USERDN: CN=allisra,OU=SO,OU=Dev,OU=Accts,DC=qtwin,DC=qad,DC=domain,DC=com

SM_SERVERSESSIONID: XqDZ1LrSt/fmoFXpxnzH+SZIqjg=

SM_SERVERSESSIONSPEC: /mPxQ8vJMBcLjuFkP9Xt9VveCwgpOi9vyE6/mPjnuEZC+bnFHZZLh+NlL44nsLCSnJmJIcZaloO8mcoF0+5YRfs0JAFXIg3PUfnw+ob2qfnQlQyGymR9LfQnWnNZOoyjmnFGccXPRijZ9ddHEVGepxqFiHTAHHXqb94UiFHANY1/JwoyZI9X5gga9zY46NGJgW5cpCetfaPE8RHZcY7h1JqHFYzcWmZ3882Lme92wS1WJYUEBKHC3H0tzrTwG8lGY/UncEyfvZRmH6WAGvmtkGQwiS+8bUzKYfuU6FtwfaJSj1oUMytYA3i33aQwpDh5zP3eZ12Zza/FE6BrI63EyQAJdAhUjNT0NnUqJeIqXD/glXmGZ57PjR5y8smc7VHDRLNzoEqA7zor29jrw+bYkWSvQESl1eI/ffgrXZ1OkRu8TrVoJN1/kOvAoq8MCa1F3zjBKmak+r8KMAMagUtH1rizoaSlzg+t

SM_TIMETOEXPIRE: 35978

SM_SERVERIDENTITYSPEC:

EID: 5896176581

EMAIL: rance.lastname@company.com

FIRSTNAME: Rance

LASTNAME: Lastname

OFFICEPHONENUMBER: 678-xxx-xxxx

REMOTE_USER: allisra

VZID: V170450

[caches] cluster: EmptyBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: SqlBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBReplication] Cannot use ChronologyProtector with EmptyBagOStuff.

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

  "IPAddress": "10.xx.xxx.xxx",
  "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/78.0.3904.97 Safari\/537.36",
  "ChronologyProtection": false,
  "ChronologyPositionIndex": 0,
   "ChronologyClientId": null

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] Connection 6880 will be used for SqlBagOStuff

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[session] SessionBackend "i8u8h87fsb59ilg7kck9t5n69pgk5m52" is unsaved, marking dirty in constructor

[session] SessionBackend "i8u8h87fsb59ilg7kck9t5n69pgk5m52" save: dataDirty=1 metaDirty=1 forcePersist=0

[cookie] already deleted setcookie: "wikidb_vzwiki__session", "", "1543876664", "/", "", "1", "1"

[cookie] already deleted setcookie: "wikidb_vzwiki_UserID", "", "1543876664", "/", "", "1", "1"

[cookie] already deleted setcookie: "wikidb_vzwiki_Token", "", "1543876664", "/", "", "1", "1"

[cookie] already deleted setcookie: "forceHTTPS", "", "1543876664", "/", "", "", "1"

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2038-01-19 03:14:07

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[MessageCache] MessageCache::load: Loading en... local cache is empty, global cache is expired/volatile, loading from database

Title::getRestrictionTypes: applicable restrictions to Main Page are {edit,move}

[ContentHandler] Created handler for wikitext: WikitextContentHandler

MediaWiki::preOutputCommit: primary transaction round committed

MediaWiki::preOutputCommit: pre-send deferred updates completed

MediaWiki::preOutputCommit: LBFactory shutdown completed

OutputPage::sendCacheControl: private caching; Tue, 03 Dec 2019 22:37:44 GMT **

Request ended normally

[session] Saving all sessions on shutdown

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

IP: 10.xx.xxx.xxx

Start request GET /wiki/Main_Page

HTTP HEADERS:

HOST: osswiki.company.com

CONNECTION: keep-alive

USER-AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36

ACCEPT: image/webp,image/apng,image/*,*/*;q=0.8

SEC-FETCH-SITE: same-origin

SEC-FETCH-MODE: no-cors

REFERER: https://osswiki.company.com/wiki/Main_Page

ACCEPT-ENCODING: gzip, deflate, br

ACCEPT-LANGUAGE: en-US,en;q=0.9

COOKIE: SMSESSION=D4C3GEVV9IHcEv09NyNQK20dJWl2Yadc4NboQMqDfHQDTiLlaAOezpANfgp1nhcBL0IFcg5OgyRFZnKdeG8TJjEC2lZ0+FcNVMLxftIobGNbutVA+h4o8Y+AZYW8Uj00t5ldDQs682ZxicLEvCYMhIPctvnvZYxDPEH4CKWLXRGAtjynNbQAhDjCNC2Jd9C5ZqF7RSbgEJY3HT9MVXy3vyryPCAciPx6Bk1x65sUWLVJcoWMx5g3Q4bEKa/oVwdTyBKRHTK9kNUoeP9xNEvr/+IOKVZ0ySXM7SCDLEEhOQwEFq6tO4jxqgKpkqPu8xwO8p6FbKthCyp43zoUTfRG+ITZvAyy5wyL+MDgijI3d5zuBPZZeY41Kic+y3RXNyZtLbWAyQVzLCe62B1ikB5MZEx5x6vPl1s7iHDOVHTsVg4vXCgiTGiaM+GAFxyG4jN/dU0hNu5DPHBaZZwOS8PDt8T3b+IpjCxkgVfmXv5kk7YvsUrtRwh7qf176y8BTTxBwqV5AIiR0jvg7wPmqWcFv/aYw5feaDwLNYEEFgxlikMm690O6Ns2iFOMsdKR3bYm1oGlZ4Rl4NkDDcclvraIq9GRcz2UpkvG98ohLTGtJfkOvRE3rxwf9KPzBkuTxrkAxB5NblzJkUySobEt5F7c8ou3wGgRh82fvdpJrbNy438DnWMB8V+BdxVkyxz56Jubpvf/qMvRgQXpL5PCR/UorS5p6tRuRTqUqJJR62CZZNkYE9IJWWo0GDF+U7u5ZSmSiREsfqnFf4DnRNtVWn/8BsDln84VQEwpmO8bCQmMD58UzHY4GBgiziPC5LR16CjsWYjE5goLwkYlj1KwxF5GifwVQfWGx3j2H0iVAqHqW8Ts883cWI+v6XqY4VclFzt6KpcMvYF7lrfAkMC3qh8RDuDkfdvYUO4VWvy4afXk5UDPWEC+bdZ4SS/OCfju4ma0r/UR0kwNmkIIqF3Jw5GhBDqwzyVtMKO8qOcObrReQIHDEhx4YWl8/VZmrvwPn4EWz2pj6O8K9HhRecfznAuEIDXBeE4MuSXPx2Ud1VoJA2Fq6LNnKo3KGIVn6EvtXQlTnzH4/0shClRXr3w5X/2+JRq0/ctJMgqvB0LmfV/32/y7Cb7g+y1ux24BAoY36P9yFXbZcpcwVnyGeMrnxNJ+s/LiWBluNKRm

SM_TRANSACTIONID: 0000000000000000000000000a901826-078e-5de6e3b8-0001-04fa4f61

SM_SDOMAIN: .domain.com

SM_REALM: Root

SM_REALMOID: 06-527c6c29-addf-1070-9023-85114dc6fd5f

SM_AUTHTYPE: Form

SM_AUTHREASON: 0

SM_UNIVERSALID: 5896176581

SM_AUTHDIROID: 0e-d407abee-b2e6-105c-b646-85114dc60000

SM_AUTHDIRNAME: Prod AD

SM_AUTHDIRSERVER: QTWINLB.company.com:636,QTWINLB.company.com:636,QTWINLB.company.com:636,QTWINLB.company.com:636

SM_AUTHDIRNAMESPACE: LDAP:

SM_USER: allisra

SM_USERDN: CN=allisra,OU=SO,OU=Dev,OU=Accts,DC=qtwin,DC=qad,DC=domain,DC=com

SM_SERVERSESSIONID: XqDZ1LrSt/fmoFXpxnzH+SZIqjg=

SM_SERVERSESSIONSPEC: /mPxQ8vJMBcLjuFkP9Xt9VveCwgpOi9vyE6/mPjnuEZC+bnFHZZLh+NlL44nsLCSnJmJIcZaloO8mcoF0+5YRfs0JAFXIg3PUfnw+ob2qfnQlQyGymR9LfQnWnNZOoyjmnFGccXPRijZ9ddHEVGepxqFiHTAHHXqb94UiFHANY1/JwoyZI9X5gga9zY46NGJgW5cpCetfaPE8RHZcY7h1JqHFYzcWmZ3882Lme92wS1WJYUEBKHC3H0tzrTwG8lGY/UncEyfvZRmH6WAGvmtkGQwiS+8bUzKYfuU6FtwfaJSj1oUMytYA3i33aQwpDh5zP3eZ12Zza/FE6BrI63EyQAJdAhUjNT0NnUqJeIqXD/glXmGZ57PjR5y8smc7VHDRLNzoEqA7zor29jrw+bYkWSvQESl1eI/ffgrXZ1OkRu8TrVoJN1/kOvAoq8MCa1F3zjBKmak+r8KMAMagUtH1rizoaSlzg+t

SM_TIMETOEXPIRE: 35978

SM_SERVERIDENTITYSPEC:

EID: 5896176581

EMAIL: rance.lastname@company.com

FIRSTNAME: Rance

LASTNAME: Lastname

OFFICEPHONENUMBER: 678-xxx-xxxx

REMOTE_USER: allisra

VZID: V170450

[caches] cluster: EmptyBagOStuff, WAN: mediawiki-main-default, stash: db-replicated, message: SqlBagOStuff, session: SqlBagOStuff

[caches] LocalisationCache: using store LCStoreDB

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openConnection: calling initLB() before first connection.

[DBReplication] Cannot use ChronologyProtector with EmptyBagOStuff.

[DBReplication] Wikimedia\Rdbms\LBFactory::getChronologyProtector: using request info {

  "IPAddress": "10.xx.xxx.xxx",
  "UserAgent": "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/78.0.3904.97 Safari\/537.36",
  "ChronologyProtection": false,
  "ChronologyPositionIndex": 0,
  "ChronologyClientId": null

}

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

[SQLBagOStuff] Connection 6882 will be used for SqlBagOStuff

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[session] SessionBackend "k0rglovea38evq8ogj33j20juef4a3tf" is unsaved, marking dirty in constructor

[session] SessionBackend "k0rglovea38evq8ogj33j20juef4a3tf" save: dataDirty=1 metaDirty=1 forcePersist=0

[cookie] already deleted setcookie: "wikidb_vzwiki__session", "", "1543876664", "/", "", "1", "1"

[cookie] already deleted setcookie: "wikidb_vzwiki_UserID", "", "1543876664", "/", "", "1", "1"

[cookie] already deleted setcookie: "wikidb_vzwiki_Token", "", "1543876664", "/", "", "1", "1"

[cookie] already deleted setcookie: "forceHTTPS", "", "1543876664", "/", "", "", "1"

[DBConnection] Wikimedia\Rdbms\LoadBalancer::openLocalConnection: connected to database 0 at 'localhost'.

Title::getRestrictionTypes: applicable restrictions to Main Page are {edit,move}

[ContentHandler] Created handler for wikitext: WikitextContentHandler

OutputPage::checkLastModified: client did not send If-Modified-Since header

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2038-01-19 03:14:07

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[SQLBagOStuff] SqlBagOStuff debug: get: no matching rows

[MessageCache] MessageCache::load: Loading en... local cache is empty, global cache is expired/volatile, loading from database

Unstubbing $wgParser on call of $wgParser::firstCallInit from MessageCache->transform

Parser: using preprocessor: Preprocessor_DOM

Unstubbing $wgLang on call of $wgLang::_unstub from ParserOptions->__construct

[caches] parser: SqlBagOStuff

Article::view using parser cache: yes

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 23:37:35

Parser cache options found.

[SQLBagOStuff] SqlBagOStuff debug: get: retrieved data; expiry time is 2019-12-03 23:37:35

ParserOutput cache found.

Article::view: showing parser cache contents

MediaWiki::preOutputCommit: primary transaction round committed

MediaWiki::preOutputCommit: pre-send deferred updates completed

MediaWiki::preOutputCommit: LBFactory shutdown completed

Title::getRestrictionTypes: applicable restrictions to Main Page are {edit,move}

OutputPage::sendCacheControl: private caching; Tue, 03 Dec 2019 22:33:21 GMT **

Request ended normally

[session] Saving all sessions on shutdown

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

[DBConnection] Wikimedia\Rdbms\LoadBalancer::closeAll: closing connection to database 'localhost'.

Rallison11 (talkcontribs)

Hello, Can anyone help me out with this? Thanks in advance!

Reply to "Unable to auto login after SSO authentication"

Error while accessing data from aws url

5
SumanGadhawal (talkcontribs)

Error: URL hostname is not whitelisted

while I am trying to get data from aws url in graph

like - : https://........execute-api.ap-south-1.amazonaws.com/

can someone help me out here how I can access data from url

Bawolff (talkcontribs)
SumanGadhawal (talkcontribs)

@Bawolff yeah I allowed domain $wgGraphAllowedDomains in Local setting file


Bawolff (talkcontribs)

Please post the config you are using

103.19.140.73 (talkcontribs)

@Bawolff Thanks ..I resolved it we can not use RESTAPI .

Reply to "Error while accessing data from aws url"
213.205.192.0 (talkcontribs)

Since running update.php, I am now finding that editing a page returns an internal error. This traces back to /vendor/oojs/oojs-ui/php/widgets/CheckboxInputWidget.php line 34, where class IconWidget apparently can't be found.

If I comment out this section (lines 34-37), the internal error goes away, and the only issue that I know of is that the two checkboxes can't be seen.

Where should I start with resolving this one properly? Restoring the last working backup didn't seem to work. Thank you.

Bawolff (talkcontribs)

are you using a git checkout? If so maybe try running

composer update --no-dev

More generally, it sounds like version mismatch in vendor or multiple versions mixed up. If you download from tarball , try getting a new version and making sure you extract in empty directory so no old files are there

212.129.79.93 (talkcontribs)

Running composer update didn't work, but replacing the entire Vendor directory with a backup did. I had previously only tried replacing the /oojs/ directory, which may have done more harm than good.

Strange, but thanks for your help. Apologies for the simple query!

Brickscrap (talkcontribs)

Hi,

I noticed my wiki wasn't running jobs (2000 at the moment), so manually tried running runJobs.php and get the following:

[481947e9f5c761909198e8df] [no req]   InvalidArgumentException from line 538 of /var/www/html/w/includes/libs/rdbms/database/Database.php: Wikimedia\Rdbms\Database::getClass no viable database extension found for type 'mysql'

Backtrace:

#0 /var/www/html/w/includes/libs/rdbms/database/Database.php(427): Wikimedia\Rdbms\Database::getClass(string, NULL)

#1 /var/www/html/w/includes/libs/rdbms/loadbalancer/LoadBalancer.php(1152): Wikimedia\Rdbms\Database::factory(string, array)

#2 /var/www/html/w/includes/libs/rdbms/loadbalancer/LoadBalancer.php(942): Wikimedia\Rdbms\LoadBalancer->reallyOpenConnection(array, Wikimedia\Rdbms\DatabaseDomain)

#3 /var/www/html/w/includes/libs/rdbms/loadbalancer/LoadBalancer.php(890): Wikimedia\Rdbms\LoadBalancer->openLocalConnection(integer, integer)

#4 /var/www/html/w/includes/libs/rdbms/loadbalancer/LoadBalancer.php(766): Wikimedia\Rdbms\LoadBalancer->openConnection(integer, boolean, integer)

#5 /var/www/html/w/includes/libs/rdbms/loadbalancer/LoadBalancer.php(1735): Wikimedia\Rdbms\LoadBalancer->getConnection(integer, array, boolean)

#6 /var/www/html/w/includes/libs/objectcache/WANObjectCache.php(1277): Wikimedia\Rdbms\LoadBalancer->Wikimedia\Rdbms\{closure}(boolean, integer, array, NULL)

#7 /var/www/html/w/includes/libs/objectcache/WANObjectCache.php(1150): WANObjectCache->doGetWithSetCallback(string, integer, Closure, array)

#8 /var/www/html/w/includes/libs/rdbms/loadbalancer/LoadBalancer.php(1746): WANObjectCache->getWithSetCallback(string, integer, Closure, array)

#9 /var/www/html/w/includes/libs/rdbms/loadbalancer/LoadBalancer.php(1713): Wikimedia\Rdbms\LoadBalancer->masterRunningReadOnly(boolean, NULL)

#10 /var/www/html/w/includes/ReadOnlyMode.php(45): Wikimedia\Rdbms\LoadBalancer->getReadOnlyReason()

#11 /var/www/html/w/includes/ReadOnlyMode.php(29): ReadOnlyMode->getReason()

#12 /var/www/html/w/includes/GlobalFunctions.php(1239): ReadOnlyMode->isReadOnly()

#13 /var/www/html/w/includes/jobqueue/JobRunner.php(123): wfReadOnly()

#14 /var/www/html/w/maintenance/runJobs.php(89): JobRunner->run(array)

#15 /var/www/html/w/maintenance/doMaintenance.php(94): RunJobs->execute()

#16 /var/www/html/w/maintenance/runJobs.php(122): require_once(string)

#17 {main}


Can anyone help? I'm stuck. I most recently installed Upload Wizard extension, and initially tried to run runJobs.php where it told me I needed to install xml and mbstring for php 7.3, but the wiki is running 7.2, and both are installed. So I installed mbstring and xml for PHP 7.3, and now get the above error...

I've disabled php 7.3 using dismod, and ensured 7.2 is enabled, but still having the issue

Ciencia Al Poder (talkcontribs)

This may be caused by the php.ini for php-cli does not have the mysql extension installed, while the php-ini used by apache does it have enabled. Review the php.ini and enable the missing modules.

2601:5CD:C200:9BE0:5C5F:C11:9C4B:F263 (talkcontribs)

Here's what I did on Ubuntu. Type php -v to find out your PHP version; then if it's, say, PHP 7.3, do apt install php7.3-mysql.

Error while running update.php script.

4
155.98.19.11 (talkcontribs)

I am trying to upgrade a wiki from 1.25.1 to 1.33.1. It initially failed immediately before processing the database at all, however, after reading a similar issue on this forum I found I could get it to partially process by commenting the line in LocalSettings.php that sets $wgDBmwschema. Now it will start to process however it fails midway with the following error (local server info removed):

Creating bot_passwords table ...done.

Adding wl_id field to table watchlist ...[8f9df94af0f870769ab16ed5] [no req]   Wikimedia\Rdbms\DBQueryError from line 1587 of /includes/libs/rdbms/database/Database.php: A database query error has occurred. Did you forget to run your application's database schema updater after upgrading?

Query: ALTER TABLE `wiki_watchlist`

ADD COLUMN wl_id int unsigned NOT NULL AUTO_INCREMENT FIRST,

ADD PRIMARY KEY (wl_id)

Function: Wikimedia\Rdbms\Database::sourceFile( /maintenance/archives/patch-watchlist-wl_id.sql )

Error: 1068 Multiple primary key defined (servername)

Can you please suggest a fix for me?

Thanks, Erik

Bawolff (talkcontribs)

huh.

Whats the output of the sql command:

Describe wiki_watchlist;


(If you dont know how to send sql commands, use sql.php maintenance script. Other methods are fine too)

This post was hidden by 155.98.19.11 (history)
155.98.19.11 (talkcontribs)

Sorry that was a mess. This should be easier to read:

mysql> DESCRIBE wiki_watchlist;

+--------------------------+-----------------+------+-----+---------+-------+

| Field                    | Type            | Null | Key | Default | Extra |

+--------------------------+-----------------+------+-----+---------+-------+

| wl_user                  | int(5) unsigned | NO   | PRI | 0       |       |

| wl_namespace             | int(11)         | NO   | PRI | NULL    |       |

| wl_title                 | varchar(255)    | NO   | PRI |         |       |

| wl_notificationtimestamp | varchar(14)     | YES  |     | NULL    |       |

+--------------------------+-----------------+------+-----+---------+-------+

4 rows in set (0.01 sec)

Reply to "Error while running update.php script."

hi, i downloaded the application but get an error message.

1
Summary by 94rain

Off-topic. This is MediaWiki's Support desk.

Claudia67G (talkcontribs)