Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Mods & Themes (http://www.bvlist.com/forumdisplay.php?f=117)
-   -   IMDB Last Update (http://www.bvlist.com/showthread.php?t=9848)

Danix 28th March 2014 23:09

IMDB Last Update
 
2 Attachment(s)
attention

Attention

UPDATED





Hello Friends...

This is Last modification to IMDB mod from me...

Backup your /include/ts_imdb.php and replace with this one.

After replace file, click two more time on button refresh in details.php

And don't forget to says Thanks...:ok:

In base folder create folder images and paste image trailer.png
http://www.bvlist.com/attachment.php...1&d=1318307865

Screen:

DND 29th March 2014 03:14

looks good

eckeO5 10th April 2014 23:32

Thank you Danix. Nice one.

Greetz ecke

Quote:

Originally Posted by Danix (Post 44213)
attention

Attention

UPDATED





Hello Friends...

This is Last modification to IMDB mod from me...

Backup your /include/ts_imdb.php and replace with this one.

After replace file, click two more time on button refresh in details.php

And don't forget to says Thanks...:ok:

In base folder create folder images and paste image trailer.png
http://www.bvlist.com/attachment.php...1&d=1318307865

Screen:


gogo999 13th April 2014 03:28

Fantastic
 
Thank you very much

Fantastic.

Maximum

nicukent 29th November 2014 10:39

Knock Knock FunFile!
 
Thank you

Napon 22nd November 2018 16:03

1 Attachment(s)
this not working no more, more files need edits upload takeupload takeedit so on

must be set to https
this is my file to https below
Code:

function cleanstring( $imputString )
{
    $whatToCleanArray = array(
        chr( 13 ),
        chr( 10 ),
        chr( 13 ).chr( 10 ),
        chr( 10 ).chr( 13 ),
        "\n",
        "  ",
        "  ",
        "    ",
        "\n\n",
        "\n\r",
        "",
        "
",
        ""
    );
    $cleanWithArray = array( "", "", "", "", "", "", "", "", "", "", "", "", "" );
    $cleaned = str_replace( $whatToCleanArray, $cleanWithArray, $imputString );
    $cleaned = trim( $cleaned );
    return $cleaned;
}

function fetch_data( $url, $cleantext = true )
{
    @ini_set( "user_agent", "TS_SE via cURL/PHP" );
    $data = false;
    $timeout = 10;
    if ( function_exists( "curl_init" ) && ( $ch = curl_init( ) ) )
    {
        $CURLUSED = true;
        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 );
    }
    if ( !isset( $CURLUSED ) && !$data && ini_get( "allow_url_fopen" ) )
    {
        $old = ini_set( "default_socket_timeout", $timeout );
        $contents = "";
        if ( $handle = @fopen( $url, "rb" ) )
        {
            ini_set( "default_socket_timeout", $old );
            stream_set_timeout( $handle, $timeout );
            stream_set_blocking( $handle, 0 );
            while ( !feof( $handle ) )
            {
                $contents .= fread( $handle, 8192 );
            }
            fclose( $handle );
            $data = $contents;
            unset( $contents );
        }
    }
    return $data ? $cleantext == true ? cleanstring( $data ) : $data : false;


function match_all($regex, $str, $i = 0) {
    if (preg_match_all( $regex, $str, $matches ) === false) {
        return false;
    }

    return $matches[$i];
}

function get_match($regex, $content) {
    preg_match( $regex, $content, $matches );
    return (isset( $matches[1] ) ? trim( $matches[1] ) : false);
}

function match($regex, $str, $i = 0) {
    if (preg_match( $regex, $str, $match ) == 1) {
        return $match[$i];
    }

    return false;
}

  @error_reporting (E_ALL & ~E_NOTICE);
  @ini_set ('error_reporting', E_ALL & ~E_NOTICE);
  @ini_set ('display_errors', '0');
  @ini_set ('log_errors', '1');
  @ini_set ('max_execution_time', '20000');
  @ini_set ('max_input_time', '20000');
  define ('TS_IMDB_VERSION', '0.9 by xam');
  if (((!defined ('IN_TRACKER') OR !defined ('IN_SCRIPT_TSSEv56')) OR !defined ('TU_VERSION')))
  {
    exit ('Error! Direct initialization of this file is not allowed.');
  }

  $regex = '#https://www.imdb.com/title/(.*)/#U';
  preg_match ($regex, $t_link, $_id_);
  $_id_ = $_id_[1];
  $url = '' . 'https://www.imdb.com/title/' . $_id_ . '/';
  $text = fetch_data ($url);

  $poster = match( '/poster">.*?/ms', $text, 1 );

if (( ( $poster != '' && strrpos( $poster, 'nopicture' ) === false ) && strrpos( $poster, 'ad.doubleclick' ) === false )) {
    file_put_contents( '' . $torrent_dir . '/images/' . $_id_ . '.jpg', fetch_data( $poster, false ) );
    $poster = '' . $BASEURL . '/' . $torrent_dir . '/images/' . $_id_ . '.jpg';
}
else {
    $poster = '';
}

$directors = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Director.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {
    array_push( $directors, $m );
}
$directors = strip_tags( implode( ', ', $directors ) );

$writers = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Writer.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $writers, $m );
        continue;
    }
}
$writers = strip_tags( implode( ', ', $writers ) );

$stars = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Stars.?:(.*?)(<\/div>| See full cast and crew)/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $stars, $m );
        continue;
    }
}
$stars = strip_tags( implode( ', ', $stars ) );

  $regex = '#(.*)#U';
  preg_match_all ($regex, $text, $title, PREG_SET_ORDER);
  $regex = '#

Budget:

(.*)
#U';
  preg_match_all ($regex, $text, $budget, PREG_SET_ORDER);
  $regex = '#

Also Known As:

(.*)   preg_match_all ($regex, $text, $alsoknownas, PREG_SET_ORDER);
  $regex = '#

Aspect Ratio:

(.*)
#U';
  preg_match_all ($regex, $text, $aspectratio, PREG_SET_ORDER);
  $regex = '#]* data-video="(.*)"[^>]*>(.*)   preg_match_all ($regex, $text, $trailer, PREG_SET_ORDER);
  $regex = '#

Taglines:

(.*)
#U';
  preg_match_all ($regex, $text, $taglines, PREG_SET_ORDER);
  $regex = '#

Filming Locations:

(.*)   preg_match_all ($regex, $text, $filminglocations, PREG_SET_ORDER);
  $title = strip_tags ($title[0][1]);
  $trailers = '' . 'https://www.imdb.com/video/imdb/' . $trailer[0][1] . '';
 
  $langs = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Language.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $langs, $m );
}

  $genres = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Genre.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $genres, $m );
}

  $soundmix = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Sound Mix.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $soundmix, $m );
}

  $country = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Country.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $country, $m );
}

  $plotkeywords = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Plot Keywords.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $plotkeywords, $m );
}

  $langs = strip_tags( implode( ' | ', $langs ) );
  $genres = strip_tags( implode( ' | ', $genres ) );
  $soundmix = strip_tags( implode( ' | ', $soundmix ) );
  $country = strip_tags( implode( ' | ', $country ) );
  $plotkeywords = strip_tags( implode( ' | ', $plotkeywords ) ); 
  $rating = strip_tags( match( '/itemprop="ratingValue">([0-9].[0-9])<\/span>/ms', $text, 1 ) );
  $votes = strip_tags( match( '/(.*?)<\/span>/ms', $text, 1 ) );
  $release_date = strip_tags( match( '/Release Date:<\/h4>.*?([0-9][0-9]? (January|February|March|April|May|June|July|August|September|October|November|December) (19|20)[0-9][0-9]).*?(\(|   $run_time = strip_tags( get_match( '/Runtime:<\/h4>(.*)<\/div>/isU', $text ) );
  $storyline = strip_tags( match( '/Storyline<\/h2>(.*?)(|  
  $officialsites = get_match( '/Official Sites:<\/h4>(.*)/isU', $text );
  if ($officialsites !== false)
  $officialsites = str_replace('/offsite/', 'https://www.imdb.com/offsite/', $officialsites);
  $officialsites = str_replace('
  preg_match_all( '#
(.*)<\/div>#isU', $text, $photos );
  if (isset( $photos['1']['0'] )) {
    preg_match_all( '#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU', $photos['1']['0'], $photourls );
}

$extra = '';
$photoarray = array(  );

if (( isset( $photourls['0'] ) && 0 < count( $photourls['0'] ) )) {
    foreach ($photourls['0'] as $pid => $photo) {
        $ext = get_extension( $photo );
        $photoname = '' . $torrent_dir . '/images/' . $_id_ . '_photo' . $pid . '.' . $ext;

        if (file_exists( $photoname )) {
            @unlink( $photoname );
        }


        if ($handle = fopen( $photoname, 'x' )) {
            if (fwrite( $handle, fetch_data( $photo, false ) )) {
                $photoarray[] = $BASEURL . '/' . $photoname;
            }

            fclose( $handle );
            continue;
        }
    }


    if (( $photoarray && count( $photoarray ) )) {
        $extra = '
';
        foreach ($photoarray as $photo) {
            $extra .= ' ';
        }

        $extra .= '
';
    }
}
 
  $t_link = '' . '
' . $title . '
' . ($poster ? '\''' : '') . '' . ($alsoknownas[0][1] ? 'Also known as: ' . strip_tags (str_replace ('more', '', $alsoknownas[0][1])) . '' : '') . ($officialsites ? 'Official sites: ' . $officialsites . '' : '') . 'Director/s: ' . $directors . '' . 'Writer/s: ' . $writers . '' . 'Stars: ' . $stars . '' . 'Genre: ' . $genres . '' . ($release_date ? 'Release date: ' . $release_date . '' : '') . 'User Rating: ' . $rating . '/10 (' . ($votes ? $votes : 'awaiting 5') . ' votes)' . ('' . 'Language: '. $langs .'Country: ' . $country . '') . ($filminglocations[0][1] ? 'Filming locations: ' . strip_tags (str_replace ('more', '', $filminglocations[0][1])) . '' : '') . ($run_time ? 'Runtime: ' . $run_time . '' : '') . ($budget[0][1] ? 'Budget: ' . $budget[0][1] . '' : '') . ($soundmix ? 'Sound mix: ' . $soundmix . '' : '') . ($aspectratio[0][1] ? 'Aspect ratio: ' . $aspectratio[0][1] . '' : '') . 'Storyline: ' . $storyline . ($plotkeywords ? 'Plot keywords: ' . $plotkeywords . '' : '') . ($taglines[0][1] ? 'Taglines: ' . strip_tags (str_replace ('more', '', $taglines[0][1])) . '' : '') . ('' . 'IMDb link: ' . $t_link . '' . $extra . '
' . ($trailer[0][1] ? '
' : '') . '');
  ?>

you see where the IMDb link:
http://www.imdb.com/title/tt5814060/?ref_=fn_al_tt_1/

in takedeit it calls back error this must be http not https and yes i edit too https and still calls back to http only
On takeedit it will not do https ive do edit to https and you can not set it to https ive set all to https file and you can not use the https only http so i think there a file somewhere that needs edit too will let all know when i fined it or someone here will before me


Also i backdoor imdb page and in the above file adds up ok so do not know why its not working


so this looks like a noway imdb for tsse 5.6 from what i seen in the imdb site backend there is js to stop site getting the info


to do this you will need a api kay and recode the 4 php file with new i would do it but not got any time

Tankcsapda 23rd November 2018 17:23

1 Attachment(s)
TS 5.6 ..
You do not have to be api key, downloaded as http, original php transcripts slightly

$ regex = '#http: //www.imdb.com/title/ (. *) / # U';
To rewrite all other http-> https, small pictures, etc ...rewrite path ...

Quote:

Originally Posted by Napon (Post 52828)
this not working no more, more files need edits upload takeupload takeedit so on

must be set to https
this is my file to https below
Code:

function cleanstring( $imputString )
{
    $whatToCleanArray = array(
        chr( 13 ),
        chr( 10 ),
        chr( 13 ).chr( 10 ),
        chr( 10 ).chr( 13 ),
        "\n",
        "  ",
        "  ",
        "    ",
        "\n\n",
        "\n\r",
        "",
        "
",
        ""
    );
    $cleanWithArray = array( "", "", "", "", "", "", "", "", "", "", "", "", "" );
    $cleaned = str_replace( $whatToCleanArray, $cleanWithArray, $imputString );
    $cleaned = trim( $cleaned );
    return $cleaned;
}

function fetch_data( $url, $cleantext = true )
{
    @ini_set( "user_agent", "TS_SE via cURL/PHP" );
    $data = false;
    $timeout = 10;
    if ( function_exists( "curl_init" ) && ( $ch = curl_init( ) ) )
    {
        $CURLUSED = true;
        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 );
    }
    if ( !isset( $CURLUSED ) && !$data && ini_get( "allow_url_fopen" ) )
    {
        $old = ini_set( "default_socket_timeout", $timeout );
        $contents = "";
        if ( $handle = @fopen( $url, "rb" ) )
        {
            ini_set( "default_socket_timeout", $old );
            stream_set_timeout( $handle, $timeout );
            stream_set_blocking( $handle, 0 );
            while ( !feof( $handle ) )
            {
                $contents .= fread( $handle, 8192 );
            }
            fclose( $handle );
            $data = $contents;
            unset( $contents );
        }
    }
    return $data ? $cleantext == true ? cleanstring( $data ) : $data : false;


function match_all($regex, $str, $i = 0) {
    if (preg_match_all( $regex, $str, $matches ) === false) {
        return false;
    }

    return $matches[$i];
}

function get_match($regex, $content) {
    preg_match( $regex, $content, $matches );
    return (isset( $matches[1] ) ? trim( $matches[1] ) : false);
}

function match($regex, $str, $i = 0) {
    if (preg_match( $regex, $str, $match ) == 1) {
        return $match[$i];
    }

    return false;
}

  @error_reporting (E_ALL & ~E_NOTICE);
  @ini_set ('error_reporting', E_ALL & ~E_NOTICE);
  @ini_set ('display_errors', '0');
  @ini_set ('log_errors', '1');
  @ini_set ('max_execution_time', '20000');
  @ini_set ('max_input_time', '20000');
  define ('TS_IMDB_VERSION', '0.9 by xam');
  if (((!defined ('IN_TRACKER') OR !defined ('IN_SCRIPT_TSSEv56')) OR !defined ('TU_VERSION')))
  {
    exit ('Error! Direct initialization of this file is not allowed.');
  }

  $regex = '#https://www.imdb.com/title/(.*)/#U';
  preg_match ($regex, $t_link, $_id_);
  $_id_ = $_id_[1];
  $url = '' . 'https://www.imdb.com/title/' . $_id_ . '/';
  $text = fetch_data ($url);

  $poster = match( '/poster">.*?/ms', $text, 1 );

if (( ( $poster != '' && strrpos( $poster, 'nopicture' ) === false ) && strrpos( $poster, 'ad.doubleclick' ) === false )) {
    file_put_contents( '' . $torrent_dir . '/images/' . $_id_ . '.jpg', fetch_data( $poster, false ) );
    $poster = '' . $BASEURL . '/' . $torrent_dir . '/images/' . $_id_ . '.jpg';
}
else {
    $poster = '';
}

$directors = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Director.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {
    array_push( $directors, $m );
}
$directors = strip_tags( implode( ', ', $directors ) );

$writers = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Writer.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $writers, $m );
        continue;
    }
}
$writers = strip_tags( implode( ', ', $writers ) );

$stars = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Stars.?:(.*?)(<\/div>| See full cast and crew)/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $stars, $m );
        continue;
    }
}
$stars = strip_tags( implode( ', ', $stars ) );

  $regex = '#(.*)#U';
  preg_match_all ($regex, $text, $title, PREG_SET_ORDER);
  $regex = '#

Budget:

(.*)
#U';
  preg_match_all ($regex, $text, $budget, PREG_SET_ORDER);
  $regex = '#

Also Known As:

(.*)   preg_match_all ($regex, $text, $alsoknownas, PREG_SET_ORDER);
  $regex = '#

Aspect Ratio:

(.*)
#U';
  preg_match_all ($regex, $text, $aspectratio, PREG_SET_ORDER);
  $regex = '#]* data-video="(.*)"[^>]*>(.*)   preg_match_all ($regex, $text, $trailer, PREG_SET_ORDER);
  $regex = '#

Taglines:

(.*)
#U';
  preg_match_all ($regex, $text, $taglines, PREG_SET_ORDER);
  $regex = '#

Filming Locations:

(.*)   preg_match_all ($regex, $text, $filminglocations, PREG_SET_ORDER);
  $title = strip_tags ($title[0][1]);
  $trailers = '' . 'https://www.imdb.com/video/imdb/' . $trailer[0][1] . '';
 
  $langs = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Language.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $langs, $m );
}

  $genres = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Genre.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $genres, $m );
}

  $soundmix = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Sound Mix.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $soundmix, $m );
}

  $country = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Country.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $country, $m );
}

  $plotkeywords = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Plot Keywords.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $plotkeywords, $m );
}

  $langs = strip_tags( implode( ' | ', $langs ) );
  $genres = strip_tags( implode( ' | ', $genres ) );
  $soundmix = strip_tags( implode( ' | ', $soundmix ) );
  $country = strip_tags( implode( ' | ', $country ) );
  $plotkeywords = strip_tags( implode( ' | ', $plotkeywords ) ); 
  $rating = strip_tags( match( '/itemprop="ratingValue">([0-9].[0-9])<\/span>/ms', $text, 1 ) );
  $votes = strip_tags( match( '/(.*?)<\/span>/ms', $text, 1 ) );
  $release_date = strip_tags( match( '/Release Date:<\/h4>.*?([0-9][0-9]? (January|February|March|April|May|June|July|August|September|October|November|December) (19|20)[0-9][0-9]).*?(\(|   $run_time = strip_tags( get_match( '/Runtime:<\/h4>(.*)<\/div>/isU', $text ) );
  $storyline = strip_tags( match( '/Storyline<\/h2>(.*?)(|  
  $officialsites = get_match( '/Official Sites:<\/h4>(.*)/isU', $text );
  if ($officialsites !== false)
  $officialsites = str_replace('/offsite/', 'https://www.imdb.com/offsite/', $officialsites);
  $officialsites = str_replace('
  preg_match_all( '#
(.*)<\/div>#isU', $text, $photos );
  if (isset( $photos['1']['0'] )) {
    preg_match_all( '#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU', $photos['1']['0'], $photourls );
}

$extra = '';
$photoarray = array(  );

if (( isset( $photourls['0'] ) && 0 < count( $photourls['0'] ) )) {
    foreach ($photourls['0'] as $pid => $photo) {
        $ext = get_extension( $photo );
        $photoname = '' . $torrent_dir . '/images/' . $_id_ . '_photo' . $pid . '.' . $ext;

        if (file_exists( $photoname )) {
            @unlink( $photoname );
        }


        if ($handle = fopen( $photoname, 'x' )) {
            if (fwrite( $handle, fetch_data( $photo, false ) )) {
                $photoarray[] = $BASEURL . '/' . $photoname;
            }

            fclose( $handle );
            continue;
        }
    }


    if (( $photoarray && count( $photoarray ) )) {
        $extra = '
';
        foreach ($photoarray as $photo) {
            $extra .= ' ';
        }

        $extra .= '
';
    }
}
 
  $t_link = '' . '
' . $title . '
' . ($poster ? '\''' : '') . '' . ($alsoknownas[0][1] ? 'Also known as: ' . strip_tags (str_replace ('more', '', $alsoknownas[0][1])) . '' : '') . ($officialsites ? 'Official sites: ' . $officialsites . '' : '') . 'Director/s: ' . $directors . '' . 'Writer/s: ' . $writers . '' . 'Stars: ' . $stars . '' . 'Genre: ' . $genres . '' . ($release_date ? 'Release date: ' . $release_date . '' : '') . 'User Rating: ' . $rating . '/10 (' . ($votes ? $votes : 'awaiting 5') . ' votes)' . ('' . 'Language: '. $langs .'Country: ' . $country . '') . ($filminglocations[0][1] ? 'Filming locations: ' . strip_tags (str_replace ('more', '', $filminglocations[0][1])) . '' : '') . ($run_time ? 'Runtime: ' . $run_time . '' : '') . ($budget[0][1] ? 'Budget: ' . $budget[0][1] . '' : '') . ($soundmix ? 'Sound mix: ' . $soundmix . '' : '') . ($aspectratio[0][1] ? 'Aspect ratio: ' . $aspectratio[0][1] . '' : '') . 'Storyline: ' . $storyline . ($plotkeywords ? 'Plot keywords: ' . $plotkeywords . '' : '') . ($taglines[0][1] ? 'Taglines: ' . strip_tags (str_replace ('more', '', $taglines[0][1])) . '' : '') . ('' . 'IMDb link: ' . $t_link . '' . $extra . '
' . ($trailer[0][1] ? '
' : '') . '');
  ?>

you see where the IMDb link:
http://www.imdb.com/title/tt5814060/?ref_=fn_al_tt_1/

in takedeit it calls back error this must be http not https and yes i edit too https and still calls back to http only
On takeedit it will not do https ive do edit to https and you can not set it to https ive set all to https file and you can not use the https only http so i think there a file somewhere that needs edit too will let all know when i fined it or someone here will before me


Also i backdoor imdb page and in the above file adds up ok so do not know why its not working


so this looks like a noway imdb for tsse 5.6 from what i seen in the imdb site backend there is js to stop site getting the info


to do this you will need a api kay and recode the 4 php file with new i would do it but not got any time


Napon 22nd December 2018 00:31

this imdb is no good sas its not working at all and you do need a api imdb so head up for them who are wanting this

Tankcsapda 23rd December 2018 14:00

1 Attachment(s)
Quote:

Originally Posted by Napon (Post 53036)
this imdb is no good sas its not working at all and you do need a api imdb so head up for them who are wanting this




Don't make me wrong, run on my side without problems!

antimidas 30th December 2018 02:51

Quote:

Originally Posted by Napon (Post 53036)
this imdb is no good sas its not working at all and you do need a api imdb so head up for them who are wanting this

You sure do bitch about alot of shit..... Here's an idea.... Go learn to do it yourself. Make your own source..... You seem to be an expert and all.........


All times are GMT +2. The time now is 17:59.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.