PHP5 bugs
From openSUSE
php5 is still a recent product and many bugs are corrected. We have the chance to have in openSUSE one of the developpers.
However on older SuSE versions, only security bugs are fixed, so I quote here some bugs that can be easily corrected manually if necessary.
This is only for older SuSE version, may be you don't have it.
[edit]
Text in images
I found this one some time ago. the function imagettftext don't works with accented letters. Now fixed, at least in the build service.
[edit]
Includes don't works
Found in php5 v5.04, fixed later, but still used in SuSE 10.0.
the /etc/apache2/php.ini file read:
UNIX: "/path1:/path2" include_path = ".:/php/includes" include_path = "/usr/share/php5" ; Windows: "\path1;\path2" ;include_path = ".;c:\php\includes"
the "include_path" line is wrong. One must simply use the commented unix line
include_path = ".:/php/includes"

