[TYPO3-dev] PROBLEM SOLVED: disappearing USER_INT output
Bartosz Aninowski
bart at REM-IT-sonik.pl
Fri Oct 19 11:45:10 CEST 2007
>>> any ideas?
>>> how can I debug this?
>>> This is very anoying!
Hi. Here is solution for my problem
file class.tslib_fe.php about line 2502
'cache_data' => serialize($data),
change into
'cache_data' => base64_encode(serialize($data)),
linie 1661
$this->config = (array)unserialize($row['cache_data']); // Fetches the
lowlevel config stored with the cached data
change into
$this->config = (array)unserialize(base64_decode($row['cache_data'])); //
Fetches the lowlevel config stored with the cached data
More information about the TYPO3-dev
mailing list