Due to a bug within IIS 4.0 - 5.x, this server does not correctly dispatches the data requested by the Hierarchical Select (More info about the IIS bug here). This control request the info with a url like this "http://www.example.com/?q=hierarchical_select_ahah", and more info with the post method. The solution was to make the module requests the info with a url like this "http://www.example.com/index.php?q=hierarchical_select_ahah". You have to change the line 161, in hierarchical_select.module, to include "index.php".
Before
$url .= variable_get('clean_url', 0) ? '' : '?q=';
After
$url .= variable_get('clean_url', 0) ? '' : 'index.php?q=';
Comments
Comment #1
wim leersThanks! I'll commit this when I find the time.
In the future - especially if you make more changes - please create a patch! :)
Comment #2
wim leersComment #3
wim leersComment #4
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.