Yes. It is already solved and will be included in next release. For quick fix:
1. Edit file /includes/vbenterprisetranslator_functions_guestcache.php
2. Find:
PHP Code:
return DIR.'/'.VBET_GUEST_CACHE_DIR.'/'.($_REQUEST['language'] ? $_REQUEST['language'] : $vbulletin->options['vbenterprisetranslator_forumlanguage']).'/'.$filename.'.html';
3. Replace by:
PHP Code:
return DIR.'/'.VBET_GUEST_CACHE_DIR.'/'.($_REQUEST['language'] ? $_REQUEST['language'] : $vbulletin->options['vbenterprisetranslator_forumlanguage']).'/'.$filename.$vbulletin->userinfo['styleid'].'.html';
4. (Optional but advised) Remove whole guest cache directory and copy it again from vBET package (remember about privileges) - we are changing files name conventions (styleid included) so old files will not be used anymore and it will be only waist of space. Please note that next release will have automatic old files cleaner included.