Hello,
Ok, found the bug, and 2 edits need to be made.
in www/administrator/components/com_awoaffiliate/controller.php around line 330, change
<?php
$db =& JFactory::getDBO();
?>
to
<?php
$db = JFactory::getDBO();
?>
And in
www/administrator/components/com_awoaffiliate/helpers/awoaffiliateView.php, around line 25 is this
<?php
$document->addScript(JURI::root(true).'/administrator/components/com_awoaffiliate/assets/js/awoaffiliate.js');
?>
Move it down to around line 51 so you have this
<?php
$document->addScript(JURI::root(true).'/administrator/components/com_awoaffiliate/assets/js/awoaffiliate.js');
echo '<div class="m">';
?>
That should do it.