Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 545
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 545
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Mails mit .Net zu schicken ist relativ einfach. Man benötigt dazu die Klassen System.Net.Mail.SmtpClient, System.Net.Mail.MailMessage und System.Net.NetworkCredential. Um die Mail zu senden ist relativ wenig Code nötig, es sind ca. acht Zeilen.
SmtpClient client = new SmtpClient("smtp.example.com"); // erzeugen der Mail MailMessage message = new MailMessage("sender@example.com", "receiver@example.com"); message.CC.Add(new MailAddress("CC@example.com")); message.Subject = "Lorem ipsum"; message.Body = "Lorem Ipsum dolor sit amet..."; // Authentifizierung NetworkCredential credential = new NetworkCredential ("sender", "p4$$w0rd"); client.Credentials = credential; // senden client.Send(message);
Das normale Senden stellt kein Problem dar, die Probleme gehen erst dann los, wenn der Server auf SSL oder TLS besteht. Dann muß man dies dem Programm sagen. Dies ist auch mit einer Zeile gemacht
client.EnableSsl = true;
Möglicherweise muss man noch den Port einstellen, dies kann man im Konstruktor der SmtpClient Klasse machen. Bevor man jetzt versucht, Mails zu senden sollte man aber nachschauen, daß der Zertifikataussteller des Mailserverzertifikates in der Liste der vertrauenswürdigen Stammzertifizierungsstellen ist. Ansonsten weigert sich der .Net eine Verbindung zu dem Server aufzubauen. Der Sinn besteht darin, daß sich jeder so ein Zertifikat machen kann und dies auf jeden beliebigen Namen. Wie man so ein Zertifikat in die Liste der vertrauenswürdigen Aussteller aufnimmt, folgt im nächsten Beitrag.
Edit: Es gibt noch die Klasse SmtpPermission, vielleicht lohnt es sich, mit dieser etwas zu experimentieren .
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_comments.inc.php on line 292
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Only variables should be assigned by reference in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 73
Noch keine Kommentare
Kommentar schreiben
Startseite - Ursprung Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 545
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::generate_plugins() should not be called statically in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 603
Strict Standards: Non-static method serendipity_plugin_api::enum_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 818
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 831
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 843
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 873
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Only variables should be assigned by reference in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 73
Kalender
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/include/plugin_internal.inc.php on line 210
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Only variables should be assigned by reference in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 73
Strict Standards: Non-static method PEAR::getStaticProperty() should not be called statically, assuming $this from incompatible context in /usr/share/php/HTTP/Request.php on line 724
Strict Standards: Non-static method PEAR::isError() should not be called statically, assuming $this from incompatible context in /usr/share/php/HTTP/Request.php on line 739
Strict Standards: Non-static method PEAR::isError() should not be called statically, assuming $this from incompatible context in /usr/share/php/HTTP/Request.php on line 741
Strict Standards: Non-static method PEAR::isError() should not be called statically, assuming $this from incompatible context in /usr/share/php/HTTP/Request.php on line 1284
Strict Standards: Non-static method PEAR::isError() should not be called statically, assuming $this from incompatible context in /usr/share/php/HTTP/Request.php on line 771
Strict Standards: Non-static method PEAR::isError() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_plugin_gallery_menalto_random/serendipity_plugin_gallery_menalto_random.php on line 138
Sie benutzen IPv4 um diese Seite anzuschauen. IPv6 benutzen
Getaggte Artikel
Strict Standards: Non-static method serendipity_event_freetag::displayTags() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_plugin_freetag.php on line 220
Strict Standards: Non-static method serendipity_event_freetag::renderTags() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 524
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 622
Strict Standards: Non-static method serendipity_event_freetag::makeURLTag() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 607
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/include/plugin_internal.inc.php on line 1413
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically, assuming $this from incompatible context in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Tracker
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_config.inc.php on line 519
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::enum_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 956
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_spartacus::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_unstrip_tags::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_emoticate::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Declaration of serendipity_event_emoticate::uninstall() should be compatible with serendipity_plugin::uninstall(&$propbag) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_statistics::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Declaration of serendipity_event_statistics::uninstall() should be compatible with serendipity_plugin::uninstall(&$propbag) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_browsercompatibility::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_fckeditor::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_mailentry::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_weblogping::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 511
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 511
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 511
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 511
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_randomblogdescription::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_lightbox::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Declaration of serendipity_event_lightbox::uninstall() should be compatible with serendipity_plugin::uninstall(&$propbag) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_dpsyntaxhighlighter::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_mobile_output::uninstall() should be compatible with serendipity_plugin::uninstall(&$propbag) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 963
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 542
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 492
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 497
Strict Standards: Declaration of serendipity_event_entryproperties::uninstall() should be compatible with serendipity_plugin::uninstall(&$propbag) in /usr/share/serendipity/www/include/plugin_api.inc.php on line 551
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 967
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_config.inc.php on line 519
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/serendipity_config.inc.php on line 406
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/genpage.inc.php on line 32
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::count_plugins() should not be called statically in /usr/share/serendipity/www/include/genpage.inc.php on line 35
Strict Standards: Non-static method serendipity_plugin_api::count_plugins() should not be called statically in /usr/share/serendipity/www/include/genpage.inc.php on line 36
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_entries.inc.php on line 514
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_entries.inc.php on line 572
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_entries.inc.php on line 555
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_entries.inc.php on line 997
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Only variables should be assigned by reference in /usr/share/serendipity/www/plugins/serendipity_event_freetag/serendipity_event_freetag.php on line 1139
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_entries.inc.php on line 1086
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_entries.inc.php on line 1156
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_comments.inc.php on line 292
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Only variables should be assigned by reference in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 73
Strict Standards: Only variables should be assigned by reference in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 73
Strict Standards: Only variables should be assigned by reference in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 73
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 545
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in /usr/share/serendipity/www/include/plugin_api.inc.php on line 1012
Strict Standards: Only variables should be assigned by reference in /usr/share/serendipity/www/include/functions_smarty.inc.php on line 73