Ver Mensaje Individual
  #9 (permalink)  
Antiguo 01/02/2015, 03:03
mblascog
 
Fecha de Ingreso: enero-2002
Ubicación: Sabadell
Mensajes: 565
Antigüedad: 23 años
Puntos: 4
Respuesta: Error con PHPMailer

Buenas, siguiendo con el tema, que aún no he solucionado.
He bajado la última versión, de la página de Github, de class.phpmailer.php (5.2.9), de class.smtp.php, y PHPMailerAutoload.php que hasta ahora nunca había utilizado.

Y en la página php he substituido:
- require(""class/class.phpmailer.php")
por
- require ("class/PHPMailerAutoload.php");

Y fatal, al ejecutar la página sale este error:
Código texto:
Ver original
  1. * @author Jim Jagielski (jimjag) 
 * @author Andy Prevost (codeworxtech) 
 * @author Brent R. Matzelle (original founder)
 * @copyright 2012 - 2014 Marcus Bointon
 * @copyright 2010 - 2012 Jim Jagielski
 * @copyright 2004 - 2009 Andy Prevost
 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
 * @note This program is distributed in the hope that it will be useful - WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 */

/**
 * PHPMailer SPL autoloader.
 * @param string $classname The name of the class to load
 */
function PHPMailerAutoload($classname)
{
 //Can't use __DIR__ as it's only in PHP 5.3+
 $filename = dirname(__FILE__).DIRECTORY_SEPARATOR.'class.'.strtolower($classname).'.php';
 if (is_readable($filename)) {
 require $filename;
 }
}

if (version_compare(PHP_VERSION, '5.1.2', '>=')) {
 //SPL autoloading was introduced in PHP 5.1.2
 if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
 spl_autoload_register('PHPMailerAutoload', true, true);
 } else {
 spl_autoload_register('PHPMailerAutoload');
 }
} else {
 /**
 * Fall back to traditional autoload for old PHP versions
 * @param string $classname The name of the class to load
 */
 function __autoload($classname)
 {
 PHPMailerAutoload($classname);
 }
}
?>
  2. Fatal error: Class 'PHPMailer' not found in prueba.php on line 5

La línea 5 es $mail = new PHPMailer();

El código que he descargado, PHPMailerAutoload.php es el siguiente:
Código PHP:
Ver original
  1. <?php
  2. /**
  3.  * PHPMailer SPL autoloader.
  4.  * PHP Version 5
  5.  * @package PHPMailer
  6.  * @link https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project
  7.  * @author Marcus Bointon (Synchro/coolbru) <[email protected]>
  8.  * @author Jim Jagielski (jimjag) <[email protected]>
  9.  * @author Andy Prevost (codeworxtech) <[email protected]>
  10.  * @author Brent R. Matzelle (original founder)
  11.  * @copyright 2012 - 2014 Marcus Bointon
  12.  * @copyright 2010 - 2012 Jim Jagielski
  13.  * @copyright 2004 - 2009 Andy Prevost
  14.  * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
  15.  * @note This program is distributed in the hope that it will be useful - WITHOUT
  16.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  17.  * FITNESS FOR A PARTICULAR PURPOSE.
  18.  */
  19.  
  20. /**
  21.  * PHPMailer SPL autoloader.
  22.  * @param string $classname The name of the class to load
  23.  */
  24. function PHPMailerAutoload($classname)
  25. {
  26.     //Can't use __DIR__ as it's only in PHP 5.3+
  27.     $filename = dirname(__FILE__).DIRECTORY_SEPARATOR.'class.'.strtolower($classname).'.php';
  28.     if (is_readable($filename)) {
  29.         require $filename;
  30.     }
  31. }
  32.  
  33. if (version_compare(PHP_VERSION, '5.1.2', '>=')) {
  34.     //SPL autoloading was introduced in PHP 5.1.2
  35.     if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
  36.         spl_autoload_register('PHPMailerAutoload', true, true);
  37.     } else {
  38.         spl_autoload_register('PHPMailerAutoload');
  39.     }
  40. } else {
  41.     /**
  42.      * Fall back to traditional autoload for old PHP versions
  43.      * @param string $classname The name of the class to load
  44.      */
  45.     function __autoload($classname)
  46.     {
  47.         PHPMailerAutoload($classname);
  48.     }
  49. }
  50. ?>

Muchas gracias
__________________
Qué fácil cuando lo sabes y qué difícil cuando no