August 30, 2010, 4:10 pm
Obwohl Outlook Express bereits auf die maximale Wartezeit eingestellt ist, kommt es trotzdem bei manchen zu Timeout-Problomen.
(Original-Text auf italienisch: “il server ha interrotto la connessione in modo inatteso. …” = “Your server has unexpectedly terminated the connection. Possible causes for this include server problems, network problems, or a long period of inactivity. Account: ‘account name’, Server:’server’, Protocol: POP3, Port 110, Secure (SSL); No, Error Number: 0×800CCC0F”
Eine Recherche bringt folgende Möglichkeiten zustande:
Outlook Express hat einen Bug, was bei bestimmten e-Mails (mit leerer Message-ID) zu Timeouts führt bzw. dazu, dass eine Mail immer und immer wieder geholt wird. Siehe dazu
diesen Artikel.
Norton AntiVirus scannt einkommende UND abgehende Mails. Norton’s Support schlägt vor, den
Scan abzuschalten um das Problem zu lösen.
Hier ist ein
weiterer Artikel mit Überblick über Norton, McAffee, Trend-Micro.
Manchmal ist bei Outlook Express eingestellt, dass es die Internetverbindung automatisch trennen soll.
Bell hat dazu eine Seite (auf Englisch).
March 31, 2010, 10:06 pm
Fatal error: Class ‘CollectionAttributeKey’ not found in (…)/concrete/models/collection.php on line 183
This class is defined in concrete5.3.3.1\concrete\models\attribute\categories\collection.php
The problem is easily resolved by loading the appropriate model in your code:
Loader::model(‘attribute/categories/collection’);
March 21, 2010, 3:35 pm

It is not enough to add a Character set to your Template // or store it in UTF-8 without BOM (so the headers attached by PHP won’t break).
If TinyMCE only displays gibberish instead of the Russian / Chinese / … text you entered in edit mode, you should edit your .htaccess (located in the root directory of your site) and add the following:
AddDefaultCharset UTF-8
Optionally, while you’re at it, you can enable caching for your site:
#Speed UP!
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault “access plus 10 years”
ExpiresByType text/html “access plus 30 seconds”
</IfModule>
February 25, 2010, 5:22 pm
[25-Feb-2010 16:15:46] PHP Warning: mysql_real_escape_string() [<a href='function.mysql-real-escape-string'>function.mysql-real-escape-string</a>]: Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’ (2) in … on line 38
[25-Feb-2010 16:15:46] PHP Warning: mysql_real_escape_string() [<a href='function.mysql-real-escape-string'>function.mysql-real-escape-string</a>]: A link to the server could not be established in … on line 38
(…)
Lösung des Problems:
die Funktion mysql-real-escape-string erfordert eigentlich zwei Parameter: zuerst den $unescaped_string, dann die resource $link_identifier. Lässt man zweiteres weg, versucht MySQL die aktuell zuletzt geöffnete Verbindung zu benutzen.
Ich habe in meinem Skript den Zugang zur Datenbank erst danach geöffnet. (Das ist der wichtigste Unterschied zwischen mysql_escape_string und mysql_real_escape_string – ersteres erfordert KEINEN Zugriff auf die Datenbank!)