See this bit:
PHP Code:
$shortUrl = 'http://www.yourforumsdomain.com/showthread.php?t='.$newpost[threadid];
I'm pretty sure you've set it to:
PHP Code:
$shortUrl = 'http://www.gurusecret.info/showthread.php?t='.$newpost[threadid];
When it should be:
PHP Code:
$shortUrl = 'http://www.gurusecret.info/vbforum/showthread.php?t='.$newpost[threadid];
Assuming I've googled correctly and that is your site.