Finally.... got this to work with image verification in vBAdvanced
All I did was install plugin as per destructions.
In the AdminCP/vBA CMPS/default settings:
In 'Portal Output Global Variables' add 'quickregister'
In the template 'imagereg' look for
Code:
<img id="imagereg" src="image.php?$session[sessionurl]type=regcheck&imagehash=$imagehash" alt="$vbphrase[registration_image]" width="201" height="61" border="0" />
and replace with
Code:
<img id="imagereg" src="/forum/image.php?$session[sessionurl]type=regcheck&imagehash=$imagehash" alt="$vbphrase[registration_image]" width="201" height="61" border="0" />
and change '
forum' to whatever is your forums directory.
and then look for
Code:
<script type="text/javascript" src="clientscript/vbulletin_ajax_imagereg.js?v=$vboptions[simpleversion]"></script>
and replace with
Code:
<script type="text/javascript" src="/forum/clientscript/vbulletin_ajax_imagereg.js?v=$vboptions[simpleversion]"></script>
again changing the '
forum' for your own forum path.
You can check it out
HERE