There are loads of these scripts out there, and we’re talking about this one.

Basically, what happens after user submits a new status, like, or whatever you want to call it, he or she sees a new blank page with ‘Success! Go here to see your submission’ message. Supposedly, this is a fail-back option if something else doesn’t work (broken .htaccess file for example). Since their forum is less then helpful, and I had no time troubleshooting why this does not work, I ‘fixed’ it by adding a PHP redirect to submit.php file.

If you want to try this solution out, you should open submit.php (found in the root) and edit the code like this, starting at row #41:

if($approve_stories == "1")
{
$location = $config[baseurl];
header('Location:' .$location);
}
else
{
$location = $config[baseurl]."/like/".$pid;
header('Location:' .$location);
}

This should result in user being redirected to the newly submitted status.