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.152
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 /
theme /
Delete
Unzip
Name
Size
Permission
Date
Action
common
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
eldy
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
md
[ DIR ]
drwxr-xr-x
2023-12-15 13:44
custom.css.php
1.91
KB
-rw-r--r--
2023-12-15 13:44
dolibarr.png
1.42
KB
-rw-r--r--
2023-12-15 13:44
dolibarr_256x256_color.png
3.38
KB
-rw-r--r--
2023-12-15 13:44
dolibarr_512x512_white.png
8.91
KB
-rw-r--r--
2023-12-15 13:44
dolibarr_logo.jpg
18.34
KB
-rw-r--r--
2023-12-15 13:44
dolibarr_logo.png
10.07
KB
-rw-r--r--
2023-12-15 13:44
dolibarr_logo.svg
12.99
KB
-rw-r--r--
2023-12-15 13:44
dolibarr_logo_bw.png
581
B
-rw-r--r--
2023-12-15 13:44
dolibarr_preferred_partner.png
8.18
KB
-rw-r--r--
2023-12-15 13:44
dolistore_logo.jpg
14.5
KB
-rw-r--r--
2023-12-15 13:44
dolistore_logo.png
9.44
KB
-rw-r--r--
2023-12-15 13:44
dolistore_logo.svg
7.27
KB
-rwxr-xr-x
2023-12-15 13:44
Save
Rename
<?php /** * custom.css.php * * Copyright (c) 2023 Eric Seigne <eric.seigne@cap-rel.fr> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ if (!defined('NOREQUIRESOC')) { define('NOREQUIRESOC', '1'); } //if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled because need to do translations if (!defined('NOCSRFCHECK')) { define('NOCSRFCHECK', 1); } if (!defined('NOTOKENRENEWAL')) { define('NOTOKENRENEWAL', 1); } if (!defined('NOLOGIN')) { define('NOLOGIN', 1); // File must be accessed by logon page so without login. } if (!defined('NOREQUIREHTML')) { define('NOREQUIREHTML', 1); } if (!defined('NOREQUIREAJAX')) { define('NOREQUIREAJAX', '1'); } session_cache_limiter('public'); require_once __DIR__.'/../main.inc.php'; // __DIR__ allow this script to be included in custom themes require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; // Define css type top_httphead('text/css'); // Important: Following code is to avoid page request by browser and PHP CPU at each Dolibarr page access. if (empty($dolibarr_nocache)) { header('Cache-Control: max-age=10800, public, must-revalidate'); } else { header('Cache-Control: no-cache'); } print '/* Here, the content of the common custom CSS defined into Home - Setup - Display - CSS'."*/\n"; print getDolGlobalString('MAIN_IHM_CUSTOM_CSS');