Current File : //var/www/tusveterinarios/wp-content/plugins/updraftplus/includes/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. Indicates multiple options for the resource from which the client may choose (via agent-driven content negotiation).', 'updraftplus'),
			301 => __('Moved Permanently. This and all future requests should be directed to the given URI.', 'updraftplus'),
			302 => __('Found (Previously "Moved temporarily"). Tells the client to look at (browse to) another URL.', 'updraftplus'),
			303 => __('See Other. The response to the request can be found under another URI using the GET method. 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. 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. The requested resource is available only through a proxy, the address for which is provided in the response.', 'updraftplus'),
			307 => __('Temporary Redirect. In this case, the request should be repeated with another URI; however, future requests should still use the original URI.', 'updraftplus'),
			308 => __('Permanent Redirect. 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. 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. Authentication is required and has failed or has not yet been provided.', 'updraftplus'),
			403 => __('Forbidden. The request contained valid data and was understood by the server, but the server is refusing action. 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. The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible.', 'updraftplus'),
			405 => __('Method Not Allowed. 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. 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. The client must first authenticate itself with the proxy.', 'updraftplus'),
			408 => __('Request Timeout. The server timed out waiting for the request. The client MAY repeat the request without modifications at any later time.', 'updraftplus'),
			409 => __('Conflict. 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. Indicates that the resource requested is no longer available and will not be available again.', 'updraftplus'),
			411 => __('Length Required. The request did not specify the length of its content, which is required by the requested resource.', 'updraftplus'),
			412 => __('Precondition Failed. The server does not meet one of the preconditions that the requester put on the request header fields.', 'updraftplus'),
			413 => __('Payload Too Large. The request is larger than the server is willing or able to process. Previously called "Request Entity Too Large".', 'updraftplus'),
			414 => __('URI Too Long. The URI provided was too long for the server to process. 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. The request entity has a media type which the server or resource does not support. 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. The client has asked for a portion of the file (byte serving), but the server cannot supply that portion. For example, if the client asked for a part of the file that lies beyond the end of the file.', 'updraftplus'),
			417 => __('Expectation Failed. The server cannot meet the requirements of the Expect request-header field.', 'updraftplus'),
			421 => __('Misdirected Request. 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. The request was well-formed but was unable to be followed due to semantic errors.', 'updraftplus'),
			423 => __('Locked. The resource that is being accessed is locked.', 'updraftplus'),
			424 => __('Failed Dependency. The request failed because it depended on another request and that request failed (e.g., a PROPPATCH).', 'updraftplus'),
			425 => __('Too Early. Indicates that the server is unwilling to risk processing a request that might be replayed.', 'updraftplus'),
			426 => __('Upgrade Required. The client should switch to a different protocol such as TLS/1.3, given in the Upgrade header field.', 'updraftplus'),
			428 => __('Precondition Required. The origin server requires the request to be conditional. 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. The user has sent too many requests in a given amount of time. Intended for use with rate-limiting schemes.', 'updraftplus'),
			431 => __('Request Header Fields Too Large. 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. 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. A generic error message, given when an unexpected condition was encountered and no more specific message is suitable.', 'updraftplus'),
			501 => __('Not Implemented. The server either does not recognize the request method, or it lacks the ability to fulfil the request. Usually this implies future availability (e.g., a new feature of a web-service API).', 'updraftplus'),
			502 => __('Bad Gateway. The server was acting as a gateway or proxy and received an invalid response from the upstream server.', 'updraftplus'),
			503 => __('Service Unavailable. The server cannot handle the request (because it is overloaded or down for maintenance). Generally, this is a temporary state.', 'updraftplus'),
			504 => __('Gateway Timeout. 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. The server does not support the HTTP protocol version used in the request.', 'updraftplus'),
			506 => __('Variant Also Negotiates. Transparent content negotiation for the request results in a circular reference.', 'updraftplus'),
			507 => __('Insufficient Storage. The server is unable to store the representation needed to complete the request.', 'updraftplus'),
			508 => __('Loop Detected. The server detected an infinite loop while processing the request.', 'updraftplus'),
			510 => __('Not Extended. Further extensions to the request are required for the server to fulfil it.', 'updraftplus'),
			511 => __('Network Authentication Required. The client needs to authenticate to gain network access. 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;
		}
	}
}
¿Qué es la limpieza dental de perros? - Clínica veterinaria


Es la eliminación del sarro y la placa adherida a la superficie de los dientes mediante un equipo de ultrasonidos que garantiza la integridad de las piezas dentales a la vez que elimina en profundidad cualquier resto de suciedad.

A continuación se procede al pulido de los dientes mediante una fresa especial que elimina la placa bacteriana y devuelve a los dientes el aspecto sano que deben tener.

Una vez terminado todo el proceso, se mantiene al perro en observación hasta que se despierta de la anestesia, bajo la atenta supervisión de un veterinario.

¿Cada cuánto tiempo tengo que hacerle una limpieza dental a mi perro?

A partir de cierta edad, los perros pueden necesitar una limpieza dental anual o bianual. Depende de cada caso. En líneas generales, puede decirse que los perros de razas pequeñas suelen acumular más sarro y suelen necesitar una atención mayor en cuanto a higiene dental.


Riesgos de una mala higiene


Los riesgos más evidentes de una mala higiene dental en los perros son los siguientes:

  • Cuando la acumulación de sarro no se trata, se puede producir una inflamación y retracción de las encías que puede descalzar el diente y provocar caídas.
  • Mal aliento (halitosis).
  • Sarro perros
  • Puede ir a más
  • Las bacterias de la placa pueden trasladarse a través del torrente circulatorio a órganos vitales como el corazón ocasionando problemas de endocarditis en las válvulas. Las bacterias pueden incluso acantonarse en huesos (La osteomielitis es la infección ósea, tanto cortical como medular) provocando mucho dolor y una artritis séptica).

¿Cómo se forma el sarro?

El sarro es la calcificación de la placa dental. Los restos de alimentos, junto con las bacterias presentes en la boca, van a formar la placa bacteriana o placa dental. Si la placa no se retira, al mezclarse con la saliva y los minerales presentes en ella, reaccionará formando una costra. La placa se calcifica y se forma el sarro.

El sarro, cuando se forma, es de color blanquecino pero a medida que pasa el tiempo se va poniendo amarillo y luego marrón.

Síntomas de una pobre higiene dental
La señal más obvia de una mala salud dental canina es el mal aliento.

Sin embargo, a veces no es tan fácil de detectar
Y hay perros que no se dejan abrir la boca por su dueño. Por ejemplo…

Recientemente nos trajeron a la clínica a un perro que parpadeaba de un ojo y decía su dueño que le picaba un lado de la cara. Tenía molestias y dificultad para comer, lo que había llevado a sus dueños a comprarle comida blanda (que suele ser un poco más cara y llevar más contenido en grasa) durante medio año. Después de una exploración oftalmológica, nos dimos cuenta de que el ojo tenía una úlcera en la córnea probablemente de rascarse . Además, el canto lateral del ojo estaba inflamado. Tenía lo que en humanos llamamos flemón pero como era un perro de pelo largo, no se le notaba a simple vista. Al abrirle la boca nos llamó la atención el ver una muela llena de sarro. Le realizamos una radiografía y encontramos una fístula que llegaba hasta la parte inferior del ojo.

Le tuvimos que extraer la muela. Tras esto, el ojo se curó completamente con unos colirios y una lentilla protectora de úlcera. Afortunadamente, la úlcera no profundizó y no perforó el ojo. Ahora el perro come perfectamente a pesar de haber perdido una muela.

¿Cómo mantener la higiene dental de tu perro?
Hay varias maneras de prevenir problemas derivados de la salud dental de tu perro.

Limpiezas de dientes en casa
Es recomendable limpiar los dientes de tu perro semanal o diariamente si se puede. Existe una gran variedad de productos que se pueden utilizar:

Pastas de dientes.
Cepillos de dientes o dedales para el dedo índice, que hacen más fácil la limpieza.
Colutorios para echar en agua de bebida o directamente sobre el diente en líquido o en spray.

En la Clínica Tus Veterinarios enseñamos a nuestros clientes a tomar el hábito de limpiar los dientes de sus perros desde que son cachorros. Esto responde a nuestro compromiso con la prevención de enfermedades caninas.

Hoy en día tenemos muchos clientes que limpian los dientes todos los días a su mascota, y como resultado, se ahorran el dinero de hacer limpiezas dentales profesionales y consiguen una mejor salud de su perro.


Limpiezas dentales profesionales de perros y gatos

Recomendamos hacer una limpieza dental especializada anualmente. La realizamos con un aparato de ultrasonidos que utiliza agua para quitar el sarro. Después, procedemos a pulir los dientes con un cepillo de alta velocidad y una pasta especial. Hacemos esto para proteger el esmalte.

La frecuencia de limpiezas dentales necesaria varía mucho entre razas. En general, las razas grandes tienen buena calidad de esmalte, por lo que no necesitan hacerlo tan a menudo e incluso pueden pasarse la vida sin requerir una limpieza. Sin embargo, razas pequeñas como el Yorkshire o el Maltés, deben hacérselas todos los años desde cachorros si se quiere conservar sus piezas dentales.

Otro factor fundamental es la calidad del pienso. Algunas marcas han diseñado croquetas que limpian la superficie del diente y de la muela al masticarse.

Ultrasonido para perros

¿Se necesita anestesia para las limpiezas dentales de perros y gatos?

La limpieza dental en perros no es una técnica que pueda practicarse sin anestesia general , aunque hay veces que los propietarios no quieren anestesiar y si tiene poco sarro y el perro es muy bueno se puede intentar…… , pero no se va a poder pulir ni acceder a todas la zona de la boca …. Además los limpiadores dentales van a irrigar agua y hay riesgo de aspiración a vías respiratorias si no se realiza una anestesia correcta con intubación traqueal . En resumen , sin anestesia no se va hacer una correcta limpieza dental.

Tampoco sirve la sedación ya que necesitamos que el animal esté totalmente quieto, y el veterinario tenga un acceso completo a todas sus piezas dentales y encías.

Alimentos para la limpieza dental

Hay que tener cierto cuidado a la hora de comprar determinados alimentos porque no todos son saludables. Algunos tienen demasiado contenido graso, que en exceso puede causar problemas cardiovasculares y obesidad.

Los mejores alimentos para los dientes son aquellos que están elaborados por empresas farmacéuticas y llevan componentes químicos con tratamientos específicos para el diente del perro. Esto implica no solo limpieza a través de la acción mecánica de morder sino también un tratamiento antibacteriano para prevenir el sarro.

Conclusión

Si eres como la mayoría de dueños, por falta de tiempo , es probable que no estés prestando la suficiente atención a la limpieza dental de tu perro. Por eso te animamos a que comiences a limpiar los dientes de tu perro y consideres atender a su higiene bucal con frecuencia.

Estas simples medidas pueden conllevar a que tu perro tenga una vida más larga y mucho más saludable.

Si te resulta imposible introducir un cepillo de dientes a tu perro en la boca, pásate con él por clínica Tus Veterinarios y te explicamos cómo hacerlo.

Necesitas hacer una limpieza dental profesional a tu mascota?
Llámanos al 622575274 o contacta con nosotros

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

¡Hola!