Kategorie: Howto

Push your emails to iOS devices via dovecot mailserver and boxcar

Since Apple implemented its push framework in iOS I wanted to have my emails pushed to my iPhone. The easiest way to do this is to use the service boxcar. To get my mails pushed to my iPhone I added the boxcar provider „Email Account“. With activating this provider I’ve got a boxcar forwarding mail address. Every […]

A possible fix for a bottleneck in piwik used on high traffic sites

The last weeks I have been confronted with a big performance problem on a mid- to high-traffic website using Piwik to track the user behaviour. The MySQL server permanently had a load of over 90 and the mysqld process consumed permanently 99% CPU time. The system runs as a single virtual VMware machine on quite […]

PHPUnit und die auf Eclipse basierende PHP-IDE PDT

Im folgenden Text wird beschrieben, wie man das UnitTest Framework PHPUnit 3.0.3 manuell (ohne PEAR) unter Windows installiert und im auf Eclipse basierenden PDT (PHP Development Tool) einbindet. Requirements: PDE „all-in-one“ Stable Build (Downloadseite) PHPUnit (Downloadseite) XDebug (Downloadseite) Es empfihelt sich hier, jeweils die aktuellste Version herunter zu laden. Bei XDebug muss man eventuell ein […]

Connecting to a database with Java (oracle)

This howto will show you how to connect to a database (Oracle, MySQL or PostgreSQL) with Java. In order to connect to a database you will have to download the JDBC driver from the corresponding website and put it into the root directory of your project. If you are using Eclipse you can easiely add […]

CSS: Infobox Popup bei Weblinks

Der CSS Part sieht folgendermaßen aus: a span { display: none; } a:hover span { display:block; position:fixed; top 72; left: 0; width: 124px; padding: 5px; margin: 10px; z-index: 10; color: #000; background: #FFF; font: 10px Verdana, sans-serif; text-align: center; border: 1px dashed #257; } Mit den Werten in Zeile 8 bis 18 müsst ihr natürlich […]

FreeBSD: NFS einrichten

NFS NFS (Network File System) dient zur Verwendung von Partitionen oder Verzeichnissen über Rechnergrenzen hinweg. Diese kleine Anleitung gibt einen nur sehr knappen und schnellen Einstieg ohne auf die vielfältigen Konfigurationsmöglichkeiten einzugehen. In den Beispielen ist der Rechner mit der IP 192.168.1.1 der NFS-Server und alle Rechner im Netz 192.168.1.0/24 dürfen auf dessen Daten Zugreifen. […]