|
I wasn’t sure where to post this but it seems very few of us get this error (it only occurs if you set up php without adler32 support), It won’t let you complete the install complaining about the undefined hash function on line 622 in File.php being called. There’s a bug on that line and it seems to be ignoring the earlier setting of which hash function to use and hardcoding adler32. This was downloaded from “latest stable release” just yesterday, I have a very slow connection so I haven’t checked the SVN version though.
In ./app/code/core/Zend/Cache/Backend/File.php line 622
Line Currently Reads:
$hash = hash(’adler32’, $id);
Line Should Read:
$hash = $this->_hash($id, $this->_options[’read_control_type’]);
Unless there’s some reason it shouldn’t use the “hash type” variable set earlier on this line. Hope this helps anyone else who runs into this.
|