Most of my modules are installing this time since my host removed values from open_basedir. Several of the modules, however, stubbornly won't install, and they all seem to have similar SQL errors as pasted below. This must have the same underlying cause. Does anyone know what that might be?
Rob
--------------------------
ADS
INSERT INTO
`sys_menu_member`
SET
`Name` = 'bx_ads',
`Eval` = 'require_once( BX_DIRECTORY_PATH_ROOT . ''modules/boonex/ads/ads_get_member_menu_list.php'' );\r\nreturn getMemberMenuAdsList({ID});',
-- -- Error: 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 'Parent` = '1', `Type` = 'linked_item'' at line 1
`Parent` = '1',
`Type` = 'linked_item';
----------------------------
EVENTS
INSERT INTO
`sys_menu_member`
SET
`Name` = 'bx_events',
`Eval` = 'return BxDolService::call(''events'', ''get_member_menu_item'', array({ID}));',
-- -- Error: 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 'Type` = 'linked_item', `Parent` = '1'' at line 1
`Type` = 'linked_item',
`Parent` = '1';
-----------------------------
GROUPS
INSERT INTO
`sys_menu_member`
SET
`Name` = 'bx_groups',
`Eval` = 'return BxDolService::call(''groups'', ''get_member_menu_item'', array({ID}));',
-- -- Error: 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 'Type` = 'linked_item', `Parent` = '1'' at line 1
`Type` = 'linked_item',
`Parent` = '1';
--------------------------------
POLLS
INSERT INTO
`sys_menu_member`
SET
`Name` = 'bx_poll',
`Eval` = 'return BxDolService::call(''poll'', ''get_member_menu_link'', array(''{ID}''));',
-- -- Error: 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 'Parent` = '1', `Type` = 'linked_item'' at line 1
`Parent` = '1',
`Type` = 'linked_item';
--------------------------------