Tuesday 12. of September 2006 Authentificate a frontend user

The following snippet can be used to authentificate a frontend user.

$loginData=array(    'uname' => 'johndoe', //usernmae    'uident'=> 'mypassword', //password    'status'...

Category: Extension development

Friday 18. of August 2006 Using getRecordOverlay withhin eID Scripts

Since eID only offers a minimal part of the TYPO3 API it is neccesary to initialize the needed API Parts by hand.

 

Category: Extension development

Friday 18. of August 2006 Accessing parent record fields from withing FCEs

Normally it is'nt possible to access the parent record fields from within a FCE because TV creates a new cOBJ for every FCE which is restricted to its own scope. To workaround this it is necessary to save the needed parent record...

Category: TS in combination with TV

Friday 18. of August 2006 Selectbox language menu

A selectbox language menu providing javascript "autosubmit" and hidding of not avaible languages.

lib.langMenu= HMENUlib.langMenu.special = languagelib.langMenu.special.value = 0,1lib.langMenu.special.normalWhenNoLanguage =...

Category: TS in gereral

Friday 18. of August 2006 CMYK to RGB conversion

Using the convert parmeter "-colorspace rgb" would convert the colorspace from CMYK to RGB actually. But this leads to color mistakes. Therefor it is better to use a ICC profile instead. Using an ICC profile prerequires that the...

Category: TS in gereral, Extension development