When I open the page:
/admin/settings/hierarchical_select/configs

It displays this at the top of the page:
# warning: array_merge_recursive() [function.array-merge-recursive]: Argument #2 is not an array in /pathto/sites/all/modules/hierarchical_select/hierarchical_select.admin.inc on line 79.
# warning: array_merge_recursive() [function.array-merge-recursive]: Argument #1 is not an array in /pathto/sites/all/modules/hierarchical_select/hierarchical_select.admin.inc on line 79.
# warning: Invalid argument supplied for foreach() in /pathto/sites/all/modules/hierarchical_select/hierarchical_select.admin.inc on line 84.

the mod:
- Hierarchical Select Content Taxonomy is not installable -> "This version is incompatible with the 6.13 version of Drupal core."
- Hierarchical Select Content Taxonomy Views is not installable -> "This version is incompatible with the 6.13 version of Drupal core."

Maybe I need some clarification also. I want to use this on a page where the any user can easily select one box and the other box changes. It is a form from an html technical perspective, but it will not be submitted and saved.

Any ideas?

Comments

Rasti’s picture

Hi ..

For your first problem i think you must have selected at least one vocabulary to use hierarchical select and you can see it in configurations page and you have a view filter that use 'Hierarchical Select' as a 'Selection type' for taxonomy terms.

And for Hierarchical Select Taxonomy Views maybe you should look at this http://drupal.org/node/342991 .
and http://drupal.org/node/342992

AkkuDreamz’s picture

i think its a conflict with some other module as i am getting the same errors on a site, while its working fine on a fresh installation.

edit:
disabling 'hierarchical select taxonomy views' submodule solved it for the time being

webdev2’s picture

thanks for your replies and help. I've dropped it for the time being. I need it to work with taxonomy. It appears to be working when I am working with the tax. terms but then has no javascript and displays ALL terms. I am doing something wrong and can't find any documentation to help. So, I'll either build it myself or hard code something in.

thanks again.

the1brit’s picture

Just downloaded this module and tried to use it on two different sites and I too am getting the same error along with messages in my modules page that says:

Hierarchical Select Book>>>>>This version is incompatible with the 6.13 version of Drupal core.
Hierarchical Select Content Taxonomy>>>>>This version is incompatible with the 6.13 version of Drupal core.
Hierarchical Select Content Taxonomy Views>>>>>This version is incompatible with the 6.13 version of Drupal core.

Messages from Hierarchical Select Config Page:

warning: array_merge_recursive() [function.array-merge-recursive]: Argument #2 is not an array in ..../sites/all/modules/hierarchical_select/hierarchical_select.admin.inc on line 79.
warning: array_merge_recursive() [function.array-merge-recursive]: Argument #1 is not an array in .../sites/all/modules/hierarchical_select/hierarchical_select.admin.inc on line 79.
warning: Invalid argument supplied for foreach() in .../sites/all/modules/hierarchical_select/hierarchical_select.admin.inc on line 84.

I was hoping to use this module to help the selection of taxonomy terms on a view page.

The widget actually can be configured regardless of the above error messages. The widget appears in my view, but, if it is used, it generates errors.

Here are the error messages that appear on the views page if the Hierachical Widget is used:

* warning: Invalid argument supplied for foreach() in .../modules/views/includes/handlers.inc on line 680.

* user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') count_alias' at line 5 query: SELECT COUNT(*) FROM (SELECT node.nid AS nid FROM node node LEFT JOIN content_type_websites node_data_field_overall ON node.vid = node_data_field_overall.vid WHERE ) count_alias in .../modules/views/includes/view.inc on line 729.

* user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY node_data_field_overall_field_overall_rating DESC LIMIT 0, 10' at line 6 query: SELECT node.nid AS nid, node_data_field_overall.field_overall_rating AS node_data_field_overall_field_overall_rating FROM node node LEFT JOIN content_type_websites node_data_field_overall ON node.vid = node_data_field_overall.vid WHERE ORDER BY node_data_field_overall_field_overall_rating DESC LIMIT 0, 10 in .../modules/views/includes/view.inc on line 755.

wim leers’s picture