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 /
asiafood.bdcloud.fr /
build /
debian /
Delete
Unzip
Name
Size
Permission
Date
Action
apache
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
lighttpd
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
patches
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
po
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
source
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
README.Debian
502
B
-rwxr-xr-x
2021-01-30 17:40
README.howto
18.08
KB
-rwxr-xr-x
2021-01-30 17:40
changelog
216
B
-rwxr-xr-x
2021-01-30 17:40
compat
1
B
-rwxr-xr-x
2021-01-30 17:40
conf.php.install
7.24
KB
-rwxr-xr-x
2021-01-30 17:40
control
2.84
KB
-rwxr-xr-x
2021-01-30 17:40
copyright
17.76
KB
-rwxr-xr-x
2021-01-30 17:40
dolibarr.config
1.56
KB
-rwxr-xr-x
2021-01-30 17:40
dolibarr.desktop
1.04
KB
-rwxr-xr-x
2021-01-30 17:40
dolibarr.docs
10
B
-rwxr-xr-x
2021-01-30 17:40
dolibarr.install
467
B
-rwxr-xr-x
2021-01-30 17:40
dolibarr.lintian-overrides
682
B
-rwxr-xr-x
2021-01-30 17:40
dolibarr.postinst
7.74
KB
-rwxr-xr-x
2021-01-30 17:40
dolibarr.postrm
6.75
KB
-rwxr-xr-x
2021-01-30 17:40
dolibarr.templates
553
B
-rwxr-xr-x
2021-01-30 17:40
dolibarr.templates.futur
3.57
KB
-rwxr-xr-x
2021-01-30 17:40
dolibarr.xpm
4.7
KB
-rwxr-xr-x
2021-01-30 17:40
get-orig-source.sh
657
B
-rwxr-xr-x
2021-01-30 17:40
install.forced.php.install
1.86
KB
-rwxr-xr-x
2021-01-30 17:40
rules
3.96
KB
-rwxr-xr-x
2021-01-30 17:40
watch
178
B
-rwxr-xr-x
2021-01-30 17:40
Save
Rename
#!/bin/sh # Debian install package run: config, preinst, prerm, postinst, postrm # set -e . /usr/share/debconf/confmodule db_version 2.0 echo Run the dolibarr config script # Rotate old configuration #if [ "$1" = "reconfigure" ] ; then # config="/etc/dolibarr/apache.conf" # if [ -f $config ] ; then # for i in $(seq 8 -1 0) ; do # if [ -f ${config}.$i ] ; then # mv ${config}.$i ${config}.$(($i +1)) # fi # done # mv ${config} ${config}.0 # fi #fi # Rotate old configuration #if [ "$1" = "reconfigure" ] ; then # config="/etc/dolibarr/lighttpd.conf" # if [ -f $config ] ; then # for i in $(seq 8 -1 0) ; do # if [ -f ${config}.$i ] ; then # mv ${config}.$i ${config}.$(($i +1)) # fi # done # mv ${config} ${config}.0 # fi #fi db_capb backup db_title "dolibarr" || true # Ask if we must delete database echo "Ask for web server to setup" db_input critical dolibarr/reconfigure-webserver || true if db_go ; then okcancel="1" else okcancel="0" fi # Get the database administrator name and password. #db_beginblock # db_input critical "dolibarr/db/admin/name" || true # db_input critical "dolibarr/db/admin/password" || true #db_endblock # Ask for DB name. #db_input critical "dolibarr/db/name" || true # Get the DBMS account username #db_input critical "dolibarr/db/user/name" || true # Get the DBMS account password #db_input critical "dolibarr/db/user/password" || true # Ask for deleting all the database on package purge. #db_input critical "dolibarr/postrm" || true # Launch input screens #db_go || true onsuccess='finished="true"' db_stop exit 0