Actions
Bug #16867
closedrequire() in class.t3lib_tceforms_inline.php fails
Start date:
2007-01-20
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.1
PHP Version:
5
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
in class.t3lib_tceforms_inline.php line 1503 there is a require() statement:
require_once('json.php');
But json.php is not in the same directory (t3lib) as class.t3lib_tceforms_inline.php so the require() fails.
(issue imported from #M4809)
Files
Updated by Oliver Hader almost 18 years ago
In fact, this problem occurs if a TYPO3 installations isn't running in the DocumentRoot path of a web-host (e.g. http://mydomain.com/myT3Site/typo3/ instead of http://mydomain.com/typo3/)
The attached patch prepends the PATH_typo3 and solves the problem.
Actions