bekomme immer diese fehlermeldung
Fatal error: Cannot instantiate non-existent class: mail_mimepart in /var/www/web38/html/losefreude/lib/mail/klasse.php on line 461
was kann ich jetzt machen?
bekomme immer diese fehlermeldung
Fatal error: Cannot instantiate non-existent class: mail_mimepart in /var/www/web38/html/losefreude/lib/mail/klasse.php on line 461
was kann ich jetzt machen?
ich habe es nun so gemacht:
if (@file_exists ('lib/mail/mimePart.php')) require_once ('./lib/mail/mimePart.php');
elseif (@file_exists ('../lib/mail/mimePart.php')) require_once ('../lib/mail/mimePart.php');
elseif (@file_exists ('../../mimePart.php')) require_once ('../../lib/mail/mimePart.php');
und nun geht es auch
hab ich jetzt nach dem anmelden...PHP-Code:Fatal error: Class 'Mail_mimePart' not found in /var/www/web10/html/lib/mail/klasse.php on line 459
die @ hab ich schon vorne dran
den durch den oben genannten ersetzenPHP-Code:if (file_exists ('lib/mimePart.php')) require_once ('/mimePart.php');
elseif (file_exists ('../lib/mimePart.php')) require_once ('../lib/mimePart.php');
elseif (file_exists ('../../mimePart.php')) require_once ('../../lib/mimePart.php');