Here it its. I took it off the vba_cms and I had it working for 3 years and something must had changed on my server that all of the sudden it stops working.
Here is the index.php file
PHP Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS', 1);
//define('THIS_SCRIPT', 'mvp_index');
define('MVP_PORTAL', true);
chdir('/path/to/forums');
// ============================================
// No Further Editing Necessary!
// ============================================
require_once('./global.php');
// ################################## do ALL Pages main page ################################################
if (function_exists($_REQUEST['do']))
{
print_mvp_output($_REQUEST['do']);
}
else
{
print_portal_output($home);
}
?>
My host upgraded the server from php4 to php5 with the security updates. Once they did that my website powered pages stopped working.