Submit
Path:
~
/
home
/
getwphos
/
www
/
preferredexotics
/
wp-content
/
plugins
/
updraftplus
/
includes
/
File Content:
class-http-error-descriptions.php
<?php if (!defined('ABSPATH')) die('No direct access.'); class UpdraftPlus_HTTP_Error_Descriptions { /** * Get HTTP response code description * * @param String $http_error_code The http error code * * @return String */ public static function get_http_status_code_description($http_error_code) { $http_error_code_descriptions = array( /* 3xx redirection This class of status code indicates the client must take additional action to complete the request. Many of these status codes are used in URL redirection. A user agent may carry out the additional action with no user interaction only if the method used in the second request is GET or HEAD. A user agent may automatically redirect a request. A user agent should detect and intervene to prevent cyclical redirects. */ 300 => __('Multiple Choices.', 'updraftplus').' '.__('Indicates multiple options for the resource from which the client may choose (via agent-driven content negotiation).', 'updraftplus'), 301 => __('Moved Permanently.', 'updraftplus').' '.__('This and all future requests should be directed to the given URI.', 'updraftplus'), 302 => __('Found (Previously "Moved temporarily").', 'updraftplus').' '.__('Tells the client to look at (browse to) another URL.', 'updraftplus'), 303 => __('See Other.', 'updraftplus').' '.__('The response to the request can be found under another URI using the GET method.', 'updraftplus').' '.__('When received in response to a POST (or PUT/DELETE), the client should presume that the server has received the data and should issue a new GET request to the given URI', 'updraftplus'), 304 => __('Not Modified.', 'updraftplus').' '.__('Indicates that the resource has not been modified since the version specified by the request headers If-Modified-Since or If-None-Match.', 'updraftplus'), 305 => __('Use Proxy.', 'updraftplus').' '.__('The requested resource is available only through a proxy, the address for which is provided in the response.', 'updraftplus'), 307 => __('Temporary Redirect.', 'updraftplus').' '.__('In this case, the request should be repeated with another URI; however, future requests should still use the original URI.', 'updraftplus'), 308 => __('Permanent Redirect.', 'updraftplus').' '.__('This and all future requests should be directed to the given URI.', 'updraftplus'), /* 4xx client errors This class of status code is intended for situations in which the error seems to have been caused by the client. Except when responding to a HEAD request, the server should include an entity containing an explanation of the error situation, and whether it is a temporary or permanent condition. These status codes are applicable to any request method. User agents should display any included entity to the user. */ 400 => __('Bad Request.', 'updraftplus').' '.__('The server cannot or will not process the request due to an apparent client error (e.g., malformed request syntax, size too large, invalid request message framing, or deceptive request routing).', 'updraftplus'), 401 => __('Unauthorized.', 'updraftplus').' '.__('Authentication is required and has failed or has not yet been provided.', 'updraftplus'), 403 => __('Forbidden.', 'updraftplus').' '.__('The request contained valid data and was understood by the server, but the server is refusing action.', 'updraftplus').' '.__('This may be due to the user not having the necessary permissions for a resource or needing an account of some sort, or attempting a prohibited action (e.g. creating a duplicate record where only one is allowed).', 'updraftplus'), 404 => __('Not Found.', 'updraftplus').' '.__('The requested resource could not be found but may be available in the future', 'updraftplus').' '.__('Subsequent requests by the client are permissible.', 'updraftplus'), 405 => __('Method Not Allowed', 'updraftplus').' '.__('A request method is not supported for the requested resource; for example, a GET request on a form that requires data to be presented via POST, or a PUT request on a read-only resource.', 'updraftplus'), 406 => __('Not Acceptable', 'updraftplus').' '.__('The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.', 'updraftplus'), 407 => __('Proxy Authentication Required', 'updraftplus').' '.__('The client must first authenticate itself with the proxy.', 'updraftplus'), 408 => __('Request Timeout', 'updraftplus').' '.__('The server timed out waiting for the request', 'updraftplus').' '.__('The client MAY repeat the request without modifications at any later time.', 'updraftplus'), 409 => __('Conflict', 'updraftplus').' '.__('Indicates that the request could not be processed because of conflict in the current state of the resource, such as an edit conflict between multiple simultaneous updates.', 'updraftplus'), 410 => __('Gone', 'updraftplus').' '.__('Indicates that the resource requested is no longer available and will not be available again.', 'updraftplus'), 411 => __('Length Required', 'updraftplus').' '.__('The request did not specify the length of its content, which is required by the requested resource.', 'updraftplus'), 412 => __('Precondition Failed', 'updraftplus').' '.__('The server does not meet one of the preconditions that the requester put on the request header fields.', 'updraftplus'), 413 => __('Payload Too Large', 'updraftplus').' '.__('The request is larger than the server is willing or able to process', 'updraftplus').' '.__('Previously called "Request Entity Too Large".', 'updraftplus'), 414 => __('URI Too Long', 'updraftplus').' '.__('The URI provided was too long for the server to process', 'updraftplus').' '.__('Often the result of too much data being encoded as a query-string of a GET request, in which it should be converted to a POST request.', 'updraftplus'), 415 => __('Unsupported Media Type', 'updraftplus').' '.__('The request entity has a media type which the server or resource does not support', 'updraftplus').' '.__('For example, the client uploads an image as image/svg+xml, but the server requires that images use a different format.', 'updraftplus'), 416 => __('Range Not Satisfiable', 'updraftplus').' '.__('The client has asked for a portion of the file (byte serving), but the server cannot supply that portion', 'updraftplus').' '.__('For example, if the client asked for a part of the file that lies beyond the end of the file.', 'updraftplus'), 417 => __('Expectation Failed', 'updraftplus').' '.__('The server cannot meet the requirements of the Expect request-header field.', 'updraftplus'), 421 => __('Misdirected Request', 'updraftplus').' '.__('The request was directed at a server that is not able to produce a response (for example because of connection reuse).', 'updraftplus'), 422 => __('Unprocessable Entity', 'updraftplus').' '.__('The request was well-formed but was unable to be followed due to semantic errors.', 'updraftplus'), 423 => __('Locked', 'updraftplus').' '.__('The resource that is being accessed is locked.', 'updraftplus'), 424 => __('Failed Dependency', 'updraftplus').' '.__('The request failed because it depended on another request and that request failed (e.g., a PROPPATCH).', 'updraftplus'), 425 => __('Too Early', 'updraftplus').' '.__('Indicates that the server is unwilling to risk processing a request that might be replayed.', 'updraftplus'), 426 => __('Upgrade Required', 'updraftplus').' '.__('The client should switch to a different protocol such as TLS/1.3, given in the Upgrade header field.', 'updraftplus'), 428 => __('Precondition Required', 'updraftplus').' '.__('The origin server requires the request to be conditional', 'updraftplus').' '.__('Intended to prevent the \'lost update\' problem, where a client GETs a resource\'s state, modifies it, and PUTs it back to the server, when meanwhile a third party has modified the state on the server, leading to a conflict.', 'updraftplus'), 429 => __('Too Many Requests', 'updraftplus').' '.__('The user has sent too many requests in a given amount of time', 'updraftplus').' '.__('Intended for use with rate-limiting schemes.', 'updraftplus'), 431 => __('Request Header Fields Too Large', 'updraftplus').' '.__('The server is unwilling to process the request because either an individual header field, or all the header fields collectively, are too large.', 'updraftplus'), 451 => __('Unavailable For Legal Reasons', 'updraftplus').' '.__('A server operator has received a legal demand to deny access to a resource or to a set of resources that includes the requested resource.', 'updraftplus'), /* 5xx server errors Response status codes beginning with the digit "5" indicate cases in which the server is aware that it has encountered an error or is otherwise incapable of performing the request. Except when responding to a HEAD request, the server should include an entity containing an explanation of the error situation, and indicate whether it is a temporary or permanent condition. Likewise, user agents should display any included entity to the user. These response codes are applicable to any request method. */ 500 => __('Internal Server Error', 'updraftplus').' '.__('A generic error message, given when an unexpected condition was encountered and no more specific message is suitable.', 'updraftplus'), 501 => __('Not Implemented', 'updraftplus').' '.__('The server either does not recognize the request method, or it lacks the ability to fulfil the request', 'updraftplus').' '.__('Usually this implies future availability (e.g., a new feature of a web-service API).', 'updraftplus'), 502 => __('Bad Gateway', 'updraftplus').' '.__('The server was acting as a gateway or proxy and received an invalid response from the upstream server.', 'updraftplus'), 503 => __('Service Unavailable', 'updraftplus').' '.__('The server cannot handle the request (because it is overloaded or down for maintenance)', 'updraftplus').' '.__('Generally, this is a temporary state.', 'updraftplus'), 504 => __('Gateway Timeout', 'updraftplus').' '.__('The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.', 'updraftplus'), 505 => __('HTTP Version Not Supported', 'updraftplus').' '.__('The server does not support the HTTP protocol version used in the request.', 'updraftplus'), 506 => __('Variant Also Negotiates', 'updraftplus').' '.__('Transparent content negotiation for the request results in a circular reference.', 'updraftplus'), 507 => __('Insufficient Storage', 'updraftplus').' '.__('The server is unable to store the representation needed to complete the request.', 'updraftplus'), 508 => __('Loop Detected', 'updraftplus').' '.__('The server detected an infinite loop while processing the request.', 'updraftplus'), 510 => __('Not Extended', 'updraftplus').' '.__('Further extensions to the request are required for the server to fulfil it.', 'updraftplus'), 511 => __('Network Authentication Required', 'updraftplus').' '.__('The client needs to authenticate to gain network access', 'updraftplus').' '.__('Intended for use by intercepting proxies used to control access to the network (e.g., "captive portals" used to require agreement to Terms of Service before granting full Internet access via a Wi-Fi hotspot).', 'updraftplus'), ); if (isset($http_error_code_descriptions[$http_error_code])) { return $http_error_code.' ('.$http_error_code_descriptions[$http_error_code].')'; } else { return $http_error_code; } } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
Dropbox2
---
0755
Google
---
0755
blockui
---
0755
checkout-embed
---
0755
cloudfiles
---
0755
handlebars
---
0755
images
---
0755
jquery-ui.dialog.extended
---
0755
jquery.serializeJSON
---
0755
jstree
---
0755
labelauty
---
0755
pcloud
---
0755
select2
---
0755
tether
---
0755
tether-shepherd
---
0755
updraftclone
---
0755
S3.php
78483 bytes
0644
S3compat.php
31581 bytes
0644
cacert.pem
221470 bytes
0644
class-backup-history.php
40508 bytes
0644
class-commands.php
49966 bytes
0644
class-database-utility.php
37569 bytes
0644
class-filesystem-functions.php
41611 bytes
0644
class-http-error-descriptions.php
11669 bytes
0644
class-job-scheduler.php
10552 bytes
0644
class-manipulation-functions.php
17139 bytes
0644
class-partialfileservlet.php
7558 bytes
0644
class-remote-send.php
32760 bytes
0644
class-search-replace.php
20570 bytes
0644
class-semaphore.php
6757 bytes
0644
class-storage-methods-interface.php
18664 bytes
0644
class-updraft-dashboard-news.php
8242 bytes
0644
class-updraft-semaphore.php
7693 bytes
0644
class-updraftcentral-updraftplus-commands.php
1857 bytes
0644
class-updraftplus-encryption.php
14031 bytes
0644
class-wpadmin-commands.php
39447 bytes
0644
class-zip.php
18336 bytes
0644
ftp.class.php
6769 bytes
0644
get-cpanel-quota-usage.pl
408 bytes
0644
google-extensions.php
9497 bytes
0644
jquery-ui.custom-v1.11.4-1-25-7.min.css
38751 bytes
0644
jquery-ui.custom-v1.11.4-1-25-7.min.css.map
58374 bytes
0644
jquery-ui.custom-v1.11.4.css
43193 bytes
0644
jquery-ui.custom-v1.12.1-1-25-7.min.css
40497 bytes
0644
jquery-ui.custom-v1.12.1-1-25-7.min.css.map
60839 bytes
0644
jquery-ui.custom-v1.12.1.css
45090 bytes
0644
migrator-lite.php
53735 bytes
0644
updraft-admin-common-1-25-7.min.js
158895 bytes
0644
updraft-admin-common.js
263234 bytes
0644
updraft-restorer-skin-compatibility.php
452 bytes
0644
updraft-restorer-skin.php
1723 bytes
0644
updraftcentral.php
3464 bytes
0644
updraftplus-clone.php
7237 bytes
0644
updraftplus-login.php
4368 bytes
0644
updraftplus-notices.php
18842 bytes
0644
updraftplus-tour.php
13521 bytes
0644
updraftvault.php
2040 bytes
0644
N4ST4R_ID | Naxtarrr