Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
btm2000.apps-dev.fr /
install /
Delete
Unzip
Name
Size
Permission
Date
Action
doctemplates
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
lib
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
medias
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
mssql
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
mysql
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
pgsql
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
sqlite3
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
check.php
24.98
KB
-rw-r--r--
2023-12-15 13:44
default.css
9.76
KB
-rw-r--r--
2023-12-15 13:44
fileconf.php
23.4
KB
-rw-r--r--
2023-12-15 13:44
inc.php
27.3
KB
-rw-r--r--
2023-12-15 13:44
index.php
2.34
KB
-rw-r--r--
2023-12-15 13:44
install.forced.sample.php
2.86
KB
-rw-r--r--
2023-12-15 13:44
phpinfo.php
887
B
-rw-r--r--
2023-12-15 13:44
repair.php
57.53
KB
-rw-r--r--
2023-12-15 13:44
robots.txt
25
B
-rw-r--r--
2023-12-15 13:44
step1.php
38.7
KB
-rw-r--r--
2023-12-15 13:44
step2.php
21.17
KB
-rw-r--r--
2023-12-15 13:44
step4.php
4.22
KB
-rw-r--r--
2023-12-15 13:44
step5.php
23.33
KB
-rw-r--r--
2023-12-15 13:44
upgrade.php
17.15
KB
-rw-r--r--
2023-12-15 13:44
upgrade2.php
149.67
KB
-rw-r--r--
2023-12-15 13:44
Save
Rename
<?php /* Copyright (C) 2016 Raphaƫl Doursenaud <rdoursenaud@gpcsolutions.fr> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ /** @var boolean $force_install_nophpinfo Hide PHP informations */ $force_install_nophpinfo = true; /** @var int $force_install_noedit 1 = Lock and hide environment variables, 2 = Lock all set variables */ $force_install_noedit = 2; /** @var string $force_install_message Information message */ $force_install_message = 'Welcome to your Dolibarr install'; /** @var string $force_install_main_data_root Data root absolute path (documents folder) */ $force_install_main_data_root = null; /** @var boolean $force_install_mainforcehttps Force HTTPS */ $force_install_mainforcehttps = true; /** @var string $force_install_database Database name */ $force_install_database = 'dolibarr'; /** @var string $force_install_type Database driver (mysql|mysqli|pgsql|mssql|sqlite|sqlite3) */ $force_install_type = 'mysqli'; /** @var string $force_install_dbserver Database server host */ $force_install_dbserver = 'localhost'; /** @var int $force_install_port Database server port */ $force_install_port = 3306; /** @var string $force_install_prefix Database tables prefix */ $force_install_prefix = 'llx_'; /** @var bool $force_install_createdatabase Force database creation */ $force_install_createdatabase = true; /** @var string $force_install_databaselogin Database username */ $force_install_databaselogin = 'root'; /** @var string $force_install_databasepass Database password */ $force_install_databasepass = ''; /** @var bool $force_install_createuser Force database user creation */ $force_install_createuser = false; /** @var string $force_install_databaserootlogin Database root username */ $force_install_databaserootlogin = 'root'; /** @var string $force_install_databaserootpass Database root password */ $force_install_databaserootpass = ''; /** @var string $force_install_dolibarrlogin Dolibarr super-administrator username */ $force_install_dolibarrlogin = 'admin'; /** @var bool $force_install_lockinstall Force install locking */ $force_install_lockinstall = true; /** @var string $force_install_module Enable module(s) (Comma separated class names list) */ $force_install_module = 'modSociete,modFournisseur,modFacture';