Feature #14470
closedNo netware support?
0%
Description
Some functions are platform dependent in the file class.t3lib_div.php:
function isAbsPath does only work with Windows, Unix and Linux operating sytems.
A absolure path with Novell Netware cal look like this:
WEB:/apache2/htdocs
WEB:\apache2\htdocs
WEB:apache2/htdocs
The "drive letter" in this example "WEB" has a length between 1 and 8 letters, so you should check like this:
return TYPO3_OS=='WINorNW' ? strpos(copy($path,0,9),':') : substr($path,0,1)=='/';
A second problem on Netware platforms was the redeclaration of the function tempnam. I don't know why, but this is not possible. You should rename you function e. g. tempnamp or something like this.
(issue imported from #M644)
Updated by Sebastian Kurfuerst over 19 years ago
Hi, does this problem still exist?
Updated by Mathias Schreiber over 18 years ago
TYPO3 Version too old.
The reported version is no longer maintained.
If this bug still persists in 4.0.1, please re-open it again and set the field "Product Version" to the corresponding version.