// Cheap. I know. if (!is_dir("../includes") && !is_dir("../themes") && !is_dir("../" . ADMINDIR)) { $check = explode("/", dirname($_SERVER["SCRIPT_NAME"])); if ($check[count($check) - 1] == "install") { die("Please change your THT directory's name from something else other than \"install\". Please?"); } } if (FOLDER != "install" && FOLDER != "includes" && INSTALL != 1) { // Lets just redirect to the installer, shall we? $installURL = INC . "../install"; header("Location: {$installURL}"); } $_SESSION['errors'] = 0; // If payment.. if (FOLDER == "client" && $getvar['page'] == "invoices" && $getvar['iid'] && $_SESSION['clogged'] == 1) { invoice::pay($getvar['iid'], "client/index.php?page=invoices"); echo "You made it this far.. something went wrong."; } function checkForDependencies() { $needed = array(); $version = explode(".", phpversion()); if ($version[0] < 5) { die("PHP Version 5 or greater is required! You're currently running: " . phpversion()); } if (!function_exists("curl_init")) { $needed[] = "cURL"; } if (!function_exists("mysqli_connect")) { $needed[] = "MySQLi"; }