Ver Mensaje Individual
  #12 (permalink)  
Antiguo 22/10/2009, 07:28
Avatar de Joystickoso
Joystickoso
 
Fecha de Ingreso: enero-2009
Mensajes: 127
Antigüedad: 15 años, 3 meses
Puntos: 3
Aun no lo se, ayer mande un mail a los administradores de mi hosting diciendoles lo que pasa y me dijeron que lo iban a investigar y que en un plazo de 24h sabría algo.
Veremos que me cuentan. Acabo de probar otra vez a ver si se ha solucionado el tema pero sigue igual.
Gracias y Salud'Os!

Por fin despues de muchas pruebas lo he solucionado.
Al parecer han hecho algun cambio reciente los de Gmail, lo único que hay que hacer es descargar la última version de Phpmailer aqui.
Y cambiar los archivos class.phpmailer.php, class.pop3.php y class.smtp.php por la nueva versión de este mes que es la 5.1.
Y si aun así os da problemas cambiar el codigo como pone en la pagina de phpmailer asi:
Cita:
The code we previous recommended to use was:

$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the server
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server

The code that we now recommend (and have tested) is:

$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "tls"; // sets the prefix to the server
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 587; // set the SMTP port for the GMAIL server
Por cierto yo sigo con la configuracion primera porque la segunda me daba error pero como lo pone en la pagina lo pongo por si acaso.
Gracias y Salud'Os! (y perdón por escribir de seguido)

Última edición por GatorV; 22/10/2009 a las 13:50