Details
Description
I think SplFileInfo changed on PHP 5.3 which leads to potentially gazillion errors because the include path loader tries to open directories.
A simple fix should do in Zend_Tool_Framework_Loader_IncludePathLoader
if ($item->isLink()) {
replace with:
if ($item->isLink() || $item->isDir()) {
In 1.10, the IncludePathLoader will be deprecated in favor of the BasicLoader. This new loader will not traverse the include_path and instead only open what its been instructed to load. This new feature will be available in 1.10.