Escrito por: Martín el 28-04-2011 05:00:01 y leído 4778 veces

Si utilizas phpmailer y php 5.3 o superior, te encontrarás con un error de la función set_magic_quotes que está obsoleta en esta versión de PHP.
Revisando la web de phpmailer, veo que no hay una versión superior que corrija este error, entonces, googleando un poco, me encontré con una solución en Foros del Web que me vino al pelo y como utilizo esta clase a menudo, conviene tener a mano.
Sólo debes modificar 2 pequeñas líneas de código en el archivo class.phpmailer.php que son (línea 1464 aproximadamente):
Código PHP
/* FUNCION QUE DARÁ ERRORES*/
if (PHP_VERSION < 6) {
$magic_quotes = get_magic_quotes_runtime();
set_magic_quotes_runtime(0);
}
$file_buffer = file_get_contents($path);
$file_buffer = $this->EncodeString($file_buffer, $encoding);
fclose($fd);
if (PHP_VERSION < 6) { set_magic_quotes_runtime($magic_quotes); }
return $file_buffer;
}Código PHP
/* NUEVA FUNCION CORRECTA */
if (PHP_VERSION < 6) {
$magic_quotes = get_magic_quotes_runtime();
ini_set("magic_quotes_runtime", 0);
}
$file_buffer = file_get_contents($path);
$file_buffer = $this->EncodeString($file_buffer, $encoding);
fclose($fd);
if (PHP_VERSION < 6) { ini_set("magic_quotes_runtime", $magic_quotes); }
return $file_buffer;
}
Function set_magic_quotes_runtime() is deprecated • Deprecated: Function set_magic_quotes_runtime() is deprecated • set_magic_quotes_runtime • Deprecated: Function set_magic_quotes_runtime() is deprecated in • set_magic_quotes_runtime() • Deprecated: Function set_magic_quotes_runtime() • set_magic_quotes_runtime() is deprecated • Function set_magic_quotes_runtime() is deprecated in • set_magic_quotes_runtime is deprecated • function set_magic_quotes_runtime is deprecated • Deprecated: Function set_magic_quotes_runtime • Function set_magic_quotes_runtime() • deprecated function set_magic_quotes_runtime is deprecated • function set_magic_quotes_runtime is deprecated fpdf • set_magic_quotes_runtime deprecated • set_magic_quotes_runtime is deprecated fpdf • Deprecated: Function • deprecated function set_magic_quotes_runtime() is deprecated in • Deprecated: Function set_magic_quotes_runtime() is deprecated in phpmailer • Function set_magic_quotes_runtime • Deprecated: Function set_magic_quotes_runtime() is deprecated in fpdf • phpmailer Function set_magic_quotes_runtime() is deprecated • Deprecated • This function is deprecated • error set_magic_quotes_runtime • Message: Function set_magic_quotes_runtime() is deprecated • phpmailer para php 5 3 • Function set_magic_quotes_runtime() is deprecated i • Deprecated: Function set_magic_quotes_runtime() is deprecated fpdf • PHP Deprecated: Function set_magic_quotes_runtime() is deprecated • funcion deprecated • Function set_magic_quotes_runtime() is deprecated fpdf • function set_magic_quotes_runtime is deprecated in • Function set_magic_quotes_runtime() is deprecated phpmailer • set_magic_quotes_runtime función () • error Deprecated: Function set_magic_quotes_runtime() is deprecated in • Deprecated Function set_magic_quotes_runtime() is deprecated • deprecated function • set_magic_quotes • phpmailer php 5 3 • set_magic_quotes_runtime() deprecated • magic_quotes deprecated • set_magic_quotes deprecated • set_magic_quotes_runtime() is deprecated fpdf • Deprecated: Function set_magic_quotes_runtime() is deprecated in fpdf php • Deprecated: Function set_magic_quotes_runtime() phpmailer • Deprecated: Function set_magic_quotes_runtime() is deprecated phpmailer • set_magic_quotes_runtime() php • error set_magic_quotes_runtime() • Deprecated: Function set_magic_quotes_runtime() is deprecated i • ocultar deprecated • Deprecated: Function set_magic_quotes_runtime() fpdf • is deprecated • Deprecated: Function set_magic_quotes_runtime() is deprecated in class phpmailer php • php no mostrar deprecated • fpdf deprecated • set_magic_quotes_runtime 0 deprecated • Deprecated: Function set_magic_quotes_runtime() is deprecated in class phpmailer php on line 1471 • Function Deprecated • set_magic_quotes_runtime is deprecated phpmailer • fpdf deprecated magic • fpdf Deprecated: Function set_magic_quotes_runtime() is deprecated in • phpmailer for php 5 3 • deprecated: function set_magic_quotes_runtime() is • phpmailer set_magic_quotes_runtime • deprecated function set_magic_quotes_runtime is deprecated in • Function set_magic_quotes_runtime() con phpmailer • function set_magic_quotes_runtime() deprecated • Deprecated: Function set_magic_quotes_runtime() is deprecated class phpmailer php on line 1471 • Deprecated: Function set_magic_quotes_runtime() i • phpmailer set_magic_quotes • deprecated: function set_magic_quotes_runtime( • no mostrar errores deprecated • fpdf phpmailer • phpmailer Deprecated: Function set_magic_quotes_runtime() is deprecated in • como solucionar error get_magic_quotes_runtime() • set_magic_quotes_runtime phpmailer • Deprecated: Function set_magic_quotes_runtime() is deprecated in class pdf php • no mostrar deprecated • deprecated set_magic_quotes_runtime • corregir deprecated: function set_magic_quotes_runtime() is deprecated • phpmailer Deprecated: Function set_magic_quotes_runtime() is deprecated • function magic_quotes_runtime() is deprecated • error function is deprecated • Deprecated: Function set_magic_quotes_runtime() is deprecated php mailer • Deprecated: Function set_magic_quotes_runtime() is deprecated solucion • deprecated function set_magic_quotes_runtime is deprecated fpdf • ocultar deprecated php • Function set_magic_quotes_runtime() phpmailer • php deprecated: function set_magic_quotes_runtime() is deprecated in • corregir problema set_magic_quotes_runtime is deprecated al usar fpdf • reemplazo set_magic_quotes_runtime • Function set_magic_quotes_runtime() is deprecated in fpdf php • fpdf set_magic_quotes_runtime() is deprecated • set_magic_quotes_runtime error • deprecated: function set_magic_quotes_runtime() is deprecate • Deprecated: Function set_magic_quotes_runtime() is deprecated error de php • PHPMailer 5 3 • cual es el reemplazo de la funcion set_magic_quotes_runtime() • phpmailer erro magic_quotes •
acordeón actionscript ajax alert ampliar imágenes android antes y después as audio aumentar letra barra desplazamiento blur bordes redondeados botón derecho calcular distancia calendario chart chrome collapse columnas combobox contar caracteres contar followers contextual css cu3er códigos date-picker descargas desenfoque desplazamiento dhtml disminuir letra dominios editor enlaces enlaces externos error 404 estrellitas expander fade fecha file upload filtrar contenido flash font size formulario formularios fotografías fpdf frames framework galería gmail google google docs gratis headers htaccess html html5 iconos ie6 igualar columnas inyección cabeceras ipad iphone javascript jquery jquery ui jquery,jquery ui,datepicker,calendario,eventos jquery,jquery ui,select múltiple,option json lavalamp librería librerías lightbox limitar caracteres link links lista listas listbox mail injection maquetación marcos mensajes menu menú menú lateral miniaturas mootools mouseover mp3 multinivel mysql máscaras móvil navegadores no conflict notas adhesivas notificaciones oauth ofuscador ordenar organigrama pdf php phpmailer picker player playlist plugin png portfolio preview reproductor reproductor de música safari scroll scrollto select selector de color sistema de votación slider snippets spam star rating subir ficheros switch mode tablas tamaño texto target blank textarea thumbnail tooltip twitter usuarios activos validacion validación validate videos vtip wap webkit www wysiwyg youtube zoom
Hay 10 usuario/s en esta página