Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
docs /
Delete
Unzip
Name
Size
Permission
Date
Action
code-coverage
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
databases
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
html
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
kss
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
php-memcached
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
uidesign
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
.htaccess
197
B
-r--r--r--
2026-08-22 08:29
README
830
B
-rw-r--r--
2016-11-28 20:20
contenthandler.txt
10.8
KB
-rw-r--r--
2016-11-28 20:20
database.txt
8.62
KB
-rw-r--r--
2016-11-28 20:20
deferred.txt
1.63
KB
-rw-r--r--
2016-11-28 20:20
design.html
526
B
-rw-r--r--
2011-05-14 18:46
design.txt
5
KB
-rw-r--r--
2016-11-28 20:20
distributors.txt
11.28
KB
-rw-r--r--
2016-11-28 20:20
doxygen_first_page.php
480
B
-rw-r--r--
2016-11-28 20:20
export-0.1.xsd
2.28
KB
-rw-r--r--
2016-11-28 20:20
export-0.10.xsd
9.93
KB
-rw-r--r--
2016-11-28 20:20
export-0.2.xsd
3.05
KB
-rw-r--r--
2016-11-28 20:20
export-0.3.xsd
4.7
KB
-rw-r--r--
2016-11-28 20:20
export-0.4.xsd
7.21
KB
-rw-r--r--
2016-11-28 20:20
export-0.5.xsd
7.32
KB
-rw-r--r--
2016-11-28 20:20
export-0.6.xsd
7.59
KB
-rw-r--r--
2016-11-28 20:20
export-0.7.xsd
9.2
KB
-rw-r--r--
2016-11-28 20:20
export-0.8.xsd
9.73
KB
-rw-r--r--
2016-11-28 20:20
export-0.9.xsd
9.85
KB
-rw-r--r--
2016-11-28 20:20
export-demo.xml
6.22
KB
-rw-r--r--
2016-11-28 20:20
extension.schema.json
17.55
KB
-rw-r--r--
2016-11-28 20:20
globals.txt
2.14
KB
-rw-r--r--
2016-11-28 20:20
hooks.txt
164.15
KB
-rw-r--r--
2016-11-28 20:20
injection.txt
14.58
KB
-rw-r--r--
2016-11-28 20:20
language.txt
168
B
-rw-r--r--
2016-11-28 20:20
linkcache.txt
973
B
-rw-r--r--
2016-11-28 20:20
logger.txt
3.55
KB
-rw-r--r--
2016-11-28 20:20
magicword.txt
3.04
KB
-rw-r--r--
2016-11-28 20:20
maintenance.txt
1.65
KB
-rw-r--r--
2016-11-28 20:20
memcached.txt
7.73
KB
-rw-r--r--
2016-11-28 20:20
schema.txt
360
B
-rw-r--r--
2016-11-28 20:20
scripts.txt
2.21
KB
-rw-r--r--
2016-11-28 20:20
sitelist-1.0.xsd
2
KB
-rw-r--r--
2016-11-28 20:20
sitelist.txt
3.07
KB
-rw-r--r--
2016-11-28 20:20
sitescache.txt
1.02
KB
-rw-r--r--
2016-11-28 20:20
skin.txt
3.03
KB
-rw-r--r--
2016-11-28 20:20
title.txt
3.88
KB
-rw-r--r--
2016-11-28 20:20
upload.txt
135
B
-rw-r--r--
2009-08-26 19:05
wp-blog-header.php
2.74
KB
-r--r--r--
2026-08-22 08:29
wp-cron.php
2.74
KB
-rw-r--r--
2026-08-22 08:29
Save
Rename
deferred.txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user. For example, updating the view counts, updating the linked-to tables after a save, etc. PHP does not yet have any way to tell the server to actually return and disconnect while still running these updates (as a Java servelet could), but it might have such a feature in the future. We handle these by creating a deferred-update object and putting those objects on a global list, then executing the whole list after the page is displayed. We don't do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on it, if that, so it's not worth the trouble. Since 1.6 there is a 'job queue' in the jobs table, which is used to update link tables of transcluding pages after edits; this may be extended in the future to more general background tasks. Job queue items are fetched out of the queue and run either at a random rate during regular page views (by default) or by a batch process which can be run via maintenance/runJobs.php. Currently there are a few different types of jobs: refreshLinks Used to refresh the database tables that store the links between pages. When a page is changed, all pages using that page are also cleared by inserting a new job for all those pages. Each job refreshes only one page. htmlCacheUpdate Clear caches when a template is changed to ensure that changes can be seen. Each job clears $wgUpdateRowsPerJob pages (500 by default). enotifNotify Used to send mail using the job queue.