Franz Holzinger

Verse of the day

Selig ist der Mann, der die Anfechtung erduldet; denn nachdem er bewährt ist, wird er die Krone des Lebens empfangen, welche Gott verheißen hat denen, die ihn liebhaben.
Jakobus 1:12

© Bible Gateway's Verse of the Day


Clear Cache of TYPO3

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 ;)

 

A modification to the frame is necessary:

Add this to the User or Page TSConfig:

 

setup.override {

navFrameResizable = 1

navFrameWidth = 300

}

 

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