Verse of the day

Und Jesus trat zu ihnen, redete mit ihnen und sprach: Mir ist gegeben alle Gewalt im Himmel und auf Erden. Darum gehet hin und lehret alle Völker und taufet sie im Namen des Vaters und des Sohnes und des heiligen Geistes, und lehret sie halten alles, was ich euch befohlen habe. Und siehe, ich bin bei euch alle Tage bis an der Welt Ende.
Matthaeus 28:18-20

© Bible Gateway's Verse of the Day


Seitenbaum Frame vergrößerbar


Im Gruppen TSConfig des Benutzers eingeben:

------------------------------------------

setup.override {

navFrameResizable = 1

navFrameWidth = 300

}

------------------------------------------

FireFox can make frames resizable regardless of HTML settings


(by Dmitry Dulepov)

Open blank window/tab and type "about:config" in the address bar. Then scroll to "layout.frames.force_resizability" and double click it. Now all frames can be resized even if HTML does not want it. Very useful to exploring contents of hidden frames ;)

Subversion: set Id string


(by Thomas Hempel)
You have to set a property for every file and insert a "marker" called $Id$ in
the head comment. On every commit, the Id is substituted with something like this:

$Id: helper.php 10 2006-04-04 09:15:42Z thomas $

This contains
    filename
    revision
    date
    time
    and author who submitted this file

You can setup the subversion system to make this possible. If you use the command line tools just do the following:

svn propset svn:keywords Id *.php

Do this in every directory of your extension.
When you have done it for all folders just make "svn ci" in the root folder of your extension.
Now subversion will commit all changed files and replaces the $Id$ tag with the Id-string.

eigene php.ini über .htaccess aktivieren


(von Rainer Lindner)

Über diesen Eintrag in der .htaccess kann man für seine Domäne/Subdomäne eigene php.ini Einstellungen machen:

SetEnv PHPRC /pfad/zur/neuen/php.ini