Beiträge von rrho

    Radikale Lösung

    Ich hatte das gleiche Problem mit den Fehlermeldungen

    Code
    Warning: Unable to access class-smtp.php in [server]/wp-includes/class-phpmailer.php on line 463
    
    
    Warning: Failed opening 'class-smtp.php' for inclusion (include_path='') in [server]/wp-includes/class-phpmailer.php on line 463
    
    
    Fatal error: Cannot instantiate non-existent class: smtp in [server]/wp-includes/class-phpmailer.php on line 530

    Meine Lösung ist vielleicht ein wenig radikal, scheint aber zu funktionieren: der Pfad zu class-smtp.php wird in Zeile 463 in class-phpmailer.php eingesetzt:

    statt

    Code
    include_once($this->PluginDir . "class-smtp.php");

    habe ich

    Code
    include_once(ABSPATH.WPINC.'/class-smtp.php');

    eingesetzt. Das ist nicht besonders schön, wirkt aber. (Verbesserungen sind gern gesehen.)

    Grüße, R.