Cookie: ".$_COOKIE['u_hash']."
Test: ".$test); // Write $file_hash to database $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET file_hash='%s' WHERE config='0' LIMIT 1", array($file_hash), __FILE__, __LINE__); // Also create .htaccess file $fp = @fopen(PATH."inc/.secret/.htaccess", 'w') or mxchange_die("Cannot write to .htaccess file!"); if ($fp != false) { // Add deny line to file fwrite($fp, "Deny from all"); // Close the file fclose($fp); } // Also update configuration $CONFIG['secret_key'] = $secretKey; unset($secretKey); $CONFIG['file_hash'] = $file_hash; unset($file_hash); } } // ?>