Le speedtest gratuit pour les abonnés SFR afin de tester son débit descendant et montant. Lors du test en ligne, coupez la box fibre de SFR et stopez les téléchargements en cours sur votre ordinateur. SFR offre un débit internet jusqu'à 100 Mb/s, testez le débit de la bande passante de votre réseau domestique par cable ethernet, fibre optique ou wifi.
Speedtest SFR gratuit pour effectuer un test de connexion WiFi, Internet ADSL et Fibre optique de la box SFR. Stopez toutes les applications en cours avant de lancer le test de débit internet sur PC ou Mac. Il est également possible de tester la 3G et 4G SFR de son mobile avec l'application gratuite compatible avec SFR mobile. Découvrez quelle est la mesures en direct du ping, upload et download de votre smartphone.
SpeedTest gratuit
////////////////////////////////////////
///// APP SETTINGS ///////////////////////////////////
////////////////////////////////////////
$language = "FR"; // available in "EN", "IT", "ES", "DE", "RU", "FR"
$progress_bar = "2"; // ["1"=simple text on right top corner] ["2"=progress bar in middle with percentage] ["3"=simple progress bar in middle]
$folder = "";
// $folder = "speed/"; // uses in website root. Uncomment if using folder e.x. "speed"
$cookie_position = "bottom"; // set position of cookie agreement. Set "top" or "bottom"
$my_website_name = "My Speed Test";
$speed_logo = "img/speed_logo.png"; // can be used from external website
$fb_link = ""; //link to your facebook page
$tw_link = ""; //link to your twitter page
$gp_link = ""; //link to your google+ page
$upload_server = "google.com"; // set server to check upload speed
$ping_server = "google.com"; // set server to check ping
$file = "downsmall.txt"; // smaller file, takes less to calculate speed, less accurate result
//$file = "downit.txt"; // bigger file, takes longer to calculate speed, more accurate result
////////////////////////////////////////
///// GEOIP SERVICE SETTINGS ///////////////////////////////////
////////////////////////////////////////
$use_geoip_service = "0"; // If you want to disable this service, just set "0". Used free version limited on 2500 queries per day
$api_key = "c9d4a7c9a73e0dee22f324c0596ff3f92c6798a4"; // db-ip.com service api key. Obtain your key on https://db-ip.com/api/free by inserting your e-mail adress
////////////////////////////////////////
///// DO NOT TOUCH ///////////////////////////////////
////////////////////////////////////////
//$file = "downit.txt"; // file name which we are loading. We recommend to dont change
$download_server_file = "http://".$_SERVER['HTTP_HOST']."/".$folder.$file."?rand=".date("His").rand(0,9).rand(0,9);
$start = microtime(true);
//set write/read permission for downloaded file
@chmod($file, 0777);
//file with all php functions
include_once "functions.php";
include_once "languages/".$language.".php";
if($use_geoip_service == "1"){
include_once "dbip-client.class.php";
}
?>
if(isset($_POST['start'])){ ?>
} ?>
//functions when START button clicked
if(isset($_POST['start'])){
$speed = "0";
$upload = upload();
$ping = ping("www.".$ping_server, 80, 10);
}else{
$speed = "0";
$upload = "0";
$ping = "0";
}
?>
if(isset($_POST['start'])){ ?>
Mbps Download speed
Mbps Upload speed
ms Ping
if($use_geoip_service == "1"){
//DB-IP get info about your IP address
$dbip = new DBIP_Client($api_key);
$geo_info = $dbip->Get_Address_Info($_SERVER['REMOTE_ADDR']);
?>