Home
last modified time | relevance | path

Searched +full:server -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 106) sorted by relevance

12345

/dokuwiki/inc/Remote/
H A DXmlRpcServer.php9 use IXR\Server\Server;
14 class XmlRpcServer extends Server
19 * Constructor. Register methods and run Server
33 throw new ServerException("XML-RPC server not enabled.", -32605);
38 [$contentType] = explode(';', $INPUT->server->str('CONTENT_TYPE'), 2); // ignore charset
41 throw new ServerException('XML-RPC server accepts XML requests only.', -32606);
58 return new Error(-32603, "server error. not authorized to call method $methodname");
61 return new Error(-32604, "server error. forbidden to call the method $methodname");
8 use IXR\Server\Server; global() alias
/dokuwiki/lib/exe/
H A Dxmlrpc.php14 $server = new XmlRpcServer(true);
16 $server->serve();
18 $server->error($e->getCode(), $e->getMessage());
13 $server = new XmlRpcServer(true); global() variable
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DClassServer.php2 namespace IXR\Server;
7 * Extension of the {@link Server} class to easily wrap objects.
9 * Class is designed to extend the existing XML-RPC server to allow the
11 * XML-RPC server.
20 class ClassServer extends Server
60 return new Error(-32601, 'server error. requested method ' . $methodname . ' does not exist.');
82 return new Error(-32601, 'server error. requested class method "' . $method . '" does not exist.');
90 return new Error(-32601, 'server error. requested function "' . $method . '" does not exist.');
H A DIntrospectionServer.php2 namespace IXR\Server;
14 class IntrospectionServer extends Server
38 'Returns a struct describing the XML-RPC specifications supported by this server'
44 'Returns an array of available methods on this server'
71 'server error. requested method "' . $this->message->methodName . '" not specified.');
79 return new Error(-32602, 'server error. wrong number of method parameters');
120 return new Error(-32602, 'server error. invalid method parameters');
130 return new Error(-32601, 'server error. requested method "' . $method . '" not specified.');
H A DServer.php3 namespace IXR\Server;
11 class Server class
34 throw new ServerException('XML-RPC server accepts POST requests only.');
44 $this->error(-32600, 'server error. invalid xml-rpc. not conforming to spec. Request must be a methodCall');
77 return new Error(-32601, 'server error. requested method ' . $methodname . ' does not exist.');
98 return new Error(-32601, "server error. requested callable '{$method}' does not exist.");
163 // methods are listed before server defined methods
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClient.php17 protected $server; variable in IXR\\Client\\Client
38 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) argument
42 $bits = parse_url($server);
43 $this->server = $bits['host'];
56 $this->server = $server;
76 $this->headers['Host'] = $this->server;
95 $fp = fsockopen($this->server, $this->port, $errno, $errstr, $this->timeout);
101 $fp = fsockopen($this->server, $this->port, $errno, $errstr);
H A DClientMulticall.php14 public function __construct($server, $path = false, $port = 80) argument
16 parent::__construct($server, $path, $port);
H A DClientSSL.php9 * Client for communicating with a XML-RPC Server over HTTPS.
52 * @param string $server URL of the Server to connect to
55 public function __construct($server, $path = false, $port = 443, $timeout = false, $timeout_io = null) argument
57 parent::__construct($server, $path, $port, $timeout, $timeout_io);
68 * Set the client side certificates to communicate with the server.
125 * Set the query to send to the XML-RPC Server
142 $curl = curl_init('https://' . $this->server . $this->path);
/dokuwiki/inc/Remote/IXR/
H A DClient.php24 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null)
26 parent::__construct($server, $path, $port, $timeout, $timeout_io);
29 $this->posturl = $server;
31 $this->posturl = 'http://' . $server . ':' . $port . $path;
25 __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) global() argument
/dokuwiki/lib/plugins/authldap/
H A Dplugin.info.txt6 desc Provides user authentication against an LDAP server
H A Dauth.php52 * to the LDAP server
81 ['user' => $user, 'server' => $this->getConf('server')]
87 ['user' => $user, 'server' => $this->getConf('server')]
192 $info['server'] = $this->getConf('server');
193 $this->debug('LDAP Server: ' . hsc($info['server']), 0, __LINE__, __FILE__);
534 * Opens a connection to the configured LDAP server an
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSCP.php
/dokuwiki/inc/Input/
H A DServer.php8 class Server extends Input class
/dokuwiki/inc/
H A Ddeprecated.php252 class ServerInput extends \dokuwiki\Input\Server {
259 dbg_deprecated(\dokuwiki\Input\Server::class);
583 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null)
586 parent::__construct($server, $path, $port, $timeout, $timeout_io);
598 public function __construct($server, $path = false, $port = 80)
601 parent::__construct($server, $path, $port);
605 * @deprecated since 2021-11-11 use \IXR\Server\Server instead!
607 class IXR_Server extends \IXR\Server\Server
581 __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) global() argument
596 __construct($server, $path = false, $port = 80) global() argument
[all...]
H A Dhttputils.php35 $if_modified_since = $INPUT->server->filter('stripslashes')->str('HTTP_IF_MODIFIED_SINCE', false);
36 $if_none_match = $INPUT->server->filter('stripslashes')->str('HTTP_IF_NONE_MATCH', false);
109 if (!$INPUT->server->has('HTTP_RANGE')) {
113 $t = explode('=', $INPUT->server->str('HTTP_RANGE'));
214 * HTTP headers. If a useable cache is present, it is passed to the web server
328 500 => 'Internal Server Error',
340 $server_protocol = $INPUT->server->str('SERVER_PROTOCOL', false);
/dokuwiki/inc/Cache/
H A DCacheParser.php31 parent::__construct($file . $INPUT->server->str('HTTP_HOST') . $INPUT->server->str('SERVER_PORT'), '.' . $mode);
/dokuwiki/inc/Action/
H A DAbstractUserAction.php21 if ($INPUT->server->str('REMOTE_USER') === '') {
H A DLogin.php28 if ($INPUT->server->has('REMOTE_USER')) {
/dokuwiki/inc/Menu/Item/
H A DResendpwd.php18 if ($INPUT->server->str('REMOTE_USER')) {
H A DProfile.php18 if (!$INPUT->server->str('REMOTE_USER')) {
H A DRegister.php18 if ($INPUT->server->str('REMOTE_USER')) {
H A DSubscribe.php18 if (!$INPUT->server->str('REMOTE_USER')) {
H A DRevert.php20 if (!$REV || !$INFO['writable'] || $INPUT->server->str('REMOTE_USER') === '') {
H A DLogin.php20 if ($INPUT->server->has('REMOTE_USER')) {
/dokuwiki/lib/scripts/
H A Dlocktimer.js53 * Add another field of the editform to be posted to the server when a draft is saved
62 * If the user types into the edit-area, then dw_locktimer will regularly send a post request to the DokuWiki server
66 * @param {function} callback the only param is the data returned by the server

12345