I found a small 'bug' on arcade admin (arcadeadmin.php):
If you setup an custom admincp folder, maybe you will have problem to install games, receiving a php error.
Solution, change both line bellow:
Line 572:
Code:
print_input_row($vbphrase['file_path'], 'filepath', 'admincp/games');
To:
Code:
print_input_row($vbphrase['file_path'], 'filepath', $vbulletin->config['Misc']['admincpdir'] . '/games');
Line 579:
Code:
print_input_row($vbphrase['file_path'], 'filepath', 'admincp/games');
To:
Code:
print_input_row($vbphrase['file_path'], 'filepath', $vbulletin->config['Misc']['admincpdir'] . '/games');
I hope this small fix can be integrated in next minnor release.