Well first, some host's want you to copy your php.ini to every directory(bluehost) so create a php file that looks like this:
<?php
shell_exec("find * -type d|xargs -i cp --verbose php.ini {}";
?>
Make sure there is a php.ini folder in the current directory of ANS. You can get one from your webhost. Search for the line [Zend]
and add the two lines RIGHT below the [Zend] line, changing them to where your ANS script directory is, or where your Webhost's ioncube is(/home/user/ioncube/* might be a good place to check, just like the example).
[Zend]
zend_extension=/home/user/ioncube/ioncube_loader_lin.so
zend_extension_ts=/home/user/ioncube/ioncube_loader_lin_ts.so
That get's you right setup to install.
--m4rx