I get the following error when trying to pull the guild roster from the Armory config. Anyone got any idea what I did wrong when adding the tables and lines of code to common.php im sure thats where my errors are but i am not sure what. Fatal error: Call to undefined function: simplexml_load_string() in /homepages/17/d87573660/htdocs/RIPCo/ripsite/phpBB3/includes/acp/acp_dkp_armory.php on line 86
Here is what my common.php looks like for the eqdkp part of the fiel
// phpbb3 + eqdkp start
require($phpbb_root_path . 'includesdkp/functions.php');
require($phpbb_root_path . 'includesdkp/eqdkp.php');
$eqdkp_table_prefixx = 'bbeqdkp_';
define('URI_ADJUSTMENT', 'a');
define('URI_EVENT', 'e');
define('URI_ITEM', 'item');
define('URI_LOG', 'l');
define('URI_NAME', 'name');
define('URI_NEWS', 'n');
define('URI_ORDER', 'o');
define('URI_PAGE', 'p');
define('URI_RAID', 'r');
define('URI_SESSION', 's');
define('ADJUSTMENTS_TABLE', $eqdkp_table_prefixx . 'adjustments');
define('ARMORY_TABLE', $eqdkp_table_prefixx . 'armory');
define('ARMORY_SETTINGS_TABLE', $eqdkp_table_prefixx . 'armory_settings');
define('EQDKP_CONFIG_TABLE', $eqdkp_table_prefixx . 'config');
define('EVENTS_TABLE', $eqdkp_table_prefixx . 'events');
define('ITEMS_TABLE', $eqdkp_table_prefixx . 'items');
define('LOGS_TABLE', $eqdkp_table_prefixx . 'logs');
define('MEMBERS_TABLE', $eqdkp_table_prefixx . 'members');
define('MEMBER_RANKS_TABLE', $eqdkp_table_prefixx . 'member_ranks');
define('MEMBER_USER_TABLE', $eqdkp_table_prefixx . 'member_user');
define('NEWS_TABLE', $eqdkp_table_prefixx . 'news');
define('RAID_ATTENDEES_TABLE', $eqdkp_table_prefixx . 'raid_attendees');
define('RAIDS_TABLE', $eqdkp_table_prefixx . 'raids');
define('CLASS_TABLE', $eqdkp_table_prefixx . 'classes');
define('RACE_TABLE', $eqdkp_table_prefixx . 'races');
define('FACTION_TABLE', $eqdkp_table_prefixx . 'factions');
// phpbb3 + eqdkp end
Again thanks for any help in advance