Wednesday 16 March 2016

How to increase speed in utorrent

How to Incress speed in utorrent


If you know how slow download speed in torrent. The download are complete in many hours even a days, the reason are like your connection internet speed are slow. So setting in your utorrent and optimize speed.

Here i showing you how speed are incress in torrent. some step are following.

Here we are add in torrent faster trackers. this tracker are latest 2016. This tracker are new add and possible to download speed are incress.

step 1 : Open your torrent using utorrent.
First of all your are star the download and check the speed "DOWN SPEED".



step 2 : Open Download file Properties.
Right click on download file and last option are "PROPERTIES". showing in image.



step 3 : Add the tracker.

Here i showing the tracker file name you just copy and paste in tracker area. showing in image.



The Tracker file are following, this file are latest file.

udp://tracker.openbittorrent.com:80
udp://tracker.leechers-paradise.org:6969
udp://tracker.coppersurfer.tk:6969
udp://glotorrents.pw:6969
udp://tracker.opentrackr.org:1337
http://tracker2.istole.it:60500/announce
udp://p4p.arenabg.ch:1337
udp://p4p.arenabg.com:1337
http://bttracker.crunchbanglinux.org:6969/announce
http://tracker.aletorrenty.pl:2710/announce
udp://torrent.gresille.org:80/announce
udp://glotorrents.pw:6969/announce
udp://tracker.trackerfix.com:80/announce
udp://www.eddie4.nl:6969/announce
udp://tracker.leechers-paradise.org:6969
http://retracker.kld.ru:2710/announce
http://9.rarbg.com:2710/announce
http://bt.careland.com.cn:6969/announce
http://explodie.org:6969/announce
http://mgtracker.org:2710/announce
http://tracker.best-torrents.net:6969/announce
http://tracker.tfile.me/announce
http://tracker.torrenty.org:6969/announce
http://tracker1.wasabii.com.tw:6969/announce
udp://9.rarbg.me:2710/announce
udp://tracker.btzoo.eu:80/announce
http://pow7.com/announce
http://tracker.novalayer.org:6969/announce
http://193.107.16.156:2710/announce
http://cpleft.com:2710/announce
http://retracker.hotplug.ru:2710/announce
http://retracker.kld.ru/announce
http://tracker.coppersurfer.tk:6969/announce
http://inferno.demonoid.me:3414/announce
http://announce.torrentsmd.com:6969/announce
udp://9.rarbg.com:2710/announce
udp://coppersurfer.tk:6969/announce
udp://exodus.desync.com:6969/announce
udp://open.demonii.com:1337/announce
udp://tracker.prq.to/announce
http://exodus.desync.com/announce
http://ipv4.tracker.harry.lu/announce
http://tracker.torrentbay.to:6969/announce
udp://11.rarbg.com/announce
udp://tracker.1337x.org:80/announce
udp://tracker.istole.it:80/announce
udp://tracker.ccc.de:80/announce
udp://fr33dom.h33t.com:3310/announce
udp://tracker.openbittorrent.com:80/announce
udp://tracker.publicbt.com:80/announce

step 4 : Check the speed.

you copy and paste tracker file then check your download speed.

Thank you.

Wednesday 9 March 2016

How to fetch web text using cURL.

How to fetch web text using cURL.

 
Hello Friends today i will teach you , how to fetch web text using cURL. The full form of cURL is CLIENT URL LIBRARY. It is a function of PHP there are many sub function available like curl_close(close a cURL session) , curl_errno(Return the last error number) , curl_file_create(create the cURL file object) etc. so many function are available but today i teach you curl_setopt.
It is use to Set an option for a cURL transfer. The small demo are following. you can use in notepad or any text editer.

Step are following.

1) Open notepad.
2) Save file in xampp/hddoc in create your folder and name your wish. And file name i am saving curl.php you can different name choose. Write a code bellow i your php file. I will Show you output in image and source code image.



<strong>Hello Friend</strong>

<?php

$chandle = curl_init();
$url="www.top-tricksandtips.blogspot.in";
curl_setopt($chandle,CURLOPT_URL,$url);
curl_setopt($chandle,CURLOPT_RETURNTRANSFER,1);
curl_setopt($chandle,CURLOPT_CONNECTTIMEOUT,5);
$curlResult=curl_exec($chandle);
curl_close($chandle);

echo $curlResult;

?>



3) In this file i am write www.top-tricksandtips.blogspot.in you can write your choice url.
4) Run in browser localhost/foldername/filename.php and press enter and show the magic.. and enjoy.

Thank you.