1. Open up "staff.php" Find: $versionno=20100; $version="2.0.1"; Replace With: $versionno=20200; $version="2.0.2"; 2. Open up "itemmarket.php" Find: case "remove": item_remove(); Replace With: case "remove": itemm_remove(); Find: function item_remove() Replace With: function itemm_remove() 3. Open up "staff_courses.php" Find: Replace With: 4. Open up "slotsmachine.php" Find and Remove: if($userid==1) { $slot[1]=0;$slot[2]=0;$slot[3]=0; } 5. Open up "globals.php" Find: die("Fatal error: MCCode cannot function without MagicQuotes GPC being turned on in PHP.INI."); Replace With: foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } 6. Open up "sglobals.php" Find: die("Fatal error: MCCode cannot function without MagicQuotes GPC being turned on in PHP.INI."); Replace With: foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } 7. Open up "dlarchive.php" Find: die("Fatal error: MCCode cannot function without MagicQuotes GPC being turned on in PHP.INI."); Replace With: foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } 8. Open up "authenticate.php" Find: die("Fatal error: MCCode cannot function without MagicQuotes GPC being turned on in PHP.INI."); Replace With: foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } 9. Open up "installer.php" Find and Remove: if(get_magic_quotes_gpc()) { $gv="OK"; $gvf=1; } else { $gv="Failed"; $gvf=0; } Find and Remove: