Thread: Manage torrent
View Single Post
  #3  
Old 2nd December 2013, 23:24
firefly007's Avatar
firefly007 firefly007 is offline
SUPPORT GURU
 
Join Date: Jun 2010
P2P
Posts: 721
Default
Quote:
Originally Posted by Raven View Post
Hi all!

Please help!

Manage torrent imdb likns and image links not good error.

CURL error!

Thank you very much!
Code:
sudo apt-get install curl
sudo apt-get install php5-curl

Create a new file called test.php and copy the code below code in and save then go to it http://yoursite.com/test.php
if you get bvlist then curl should be working

Code:
<?php

function get_data($url) {
    $ch = curl_init();
    $timeout = 5;
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $data = curl_exec($ch);
    curl_close($ch);
    return $data;
}
echo get_data('http://bvlist.com/template-shares/9658-manage-torrent.html#post43408');
?>
__________________




Please Support Majority Report


You can contact me on Skype live:phesadent.elect but please let me know first.


If you are ever need me desperately then please email me at dan.oak44@gmail.com and I will contact u within a week.


Due to free time I'm able to help interested member's with their tracker.

Please Note!
Depending on your requests I will charge you for my assistance for Tracker installs and mods.
All my mods are custom and prices will very depending on the request.
I'm able to install any tracker and mods including themes.

Please PM me


Last edited by firefly007; 2nd December 2013 at 23:41.
Reply With Quote
The Following User Says Thank You to firefly007 For This Useful Post:
z3ro (3rd December 2013)