[Typo3] Gremlin: GIFBUILDER 256 color patch

Bernhard Kraft kraftb at kraftb.at
Sat Oct 22 20:19:45 CEST 2005


JoH wrote:

> After changing two lines the extension seems to work now.
> There seems to be a problem since there is no definition of "PATH_tslib" in
> "typo3/init.php".
> 
> So line 227 should be:
> 
> require_once(PATH_site."tslib/class.tslib_content.php");

PATH_tslib get's only set during FE page renders.

Undo your changes and modify ext_localconf.php

change line:

require_once(t3lib_extMgm::extPath($_EXTKEY).'class.ux_tslib_content.php');

to:

if (TYPO3_MODE=='FE') {
   require_once(t3lib_extMgm::extPath($_EXTKEY).'class.ux_tslib_content.php');
}


or just update to version 0.0.1


greets,
Bernhard



More information about the TYPO3-english mailing list