Lietuvos_pilietis
Narys
Buldozeris
Pranešimai: 249
Įstojęs: 2008 Bal. 27 20:04:43
|
Klaida modifikacijoje kuomet noriu atsisiusti išmeta klaidą, kas galėtu paremontuot?
http://Cyberwonderland.tk/ Smalsumas žudo? Nesikankink!! |
MAnjack
Garbės narys
Legenda
Pranešimai: 11821
Įstojęs: 2006 Kov. 2 20:03:58
|
Kokia klaida?
|
Lietuvos_pilietis
Narys
Buldozeris
Pranešimai: 249
Įstojęs: 2008 Bal. 27 20:04:43
|
kuomet noriu atsisiusti (Spaudžiant siūstis) išmeta atgal i siuntinius, gal padėsi MAnjack?
http://Cyberwonderland.tk/ Smalsumas žudo? Nesikankink!! |
MAnjack
Garbės narys
Legenda
Pranešimai: 11821
Įstojęs: 2006 Kov. 2 20:03:58
|
Siuntimo linkas blogas.
|
Lietuvos_pilietis
Narys
Buldozeris
Pranešimai: 249
Įstojęs: 2008 Bal. 27 20:04:43
|
Tu teisus bet gal gali pasakyti ką daryti kad eitu torrent failiuka idėti? Šiap neatpažysta ar kaip čia?
http://Cyberwonderland.tk/ Smalsumas žudo? Nesikankink!!
Redagavo Lietuvos_pilietis 2008 Geg. 4 21:05:59 |
Lietuvos_pilietis
Narys
Buldozeris
Pranešimai: 249
Įstojęs: 2008 Bal. 27 20:04:43
|
Galunė lyg .torrent failo.. Čia radau kažkoki torrent failus kad skaitytu bet nzn ar tai tinkamas dalykas ir nzn kur det butent ji reik..
<?php
$input = "http://fdisk.projektas.in/uploads/101.torrent";
//if (!file_exists($input)) { exit("input file $input doesn't exists"); }
$str = file_get_contents($input);
function parse_torrent($s) {
static $str;
$str = $s;
// echo $str{0};
if ($str{0} == 'd') {
$str = substr($str,1);
$ret = array();
while (strlen($str) && $str{0} != 'e') {
$key = parse_torrent($str);
if (strlen($str) == strlen($s)) break; // prevent endless cycle if no changes made
if (!strcmp($key, "info")) {
$save = $str;
}
// echo ".",$str{0};
$value = parse_torrent($str);
if (!strcmp($key, "info")) {
$tosha = substr($save, 0, strlen($save) - strlen($str));
$ret['info_hash'] = sha1($tosha);
}
// process hashes - make this stuff an array by piece
if (!strcmp($key, "pieces")) {
$value = explode("====",
substr(
chunk_split( $value, 20, "===="),
0, -4
)
);
};
$ret[$key] = $value;
}
$str = substr($str,1);
return $ret;
} else if ($str{0} == 'i') {
// echo "_";
$ret = substr($str, 1, strpos($str, "e")-1);
$str = substr($str, strpos($str, "e")+1);
return $ret;
} else if ($str{0} == 'l') {
// echo "#";
$ret = array();
$str = substr($str, 1);
while (strlen($str) && $str{0} != 'e') {
$value = parse_torrent($str);
if (strlen($str) == strlen($s)) break; // prevent endless cycle if no changes made
$ret[] = $value;
}
$str = substr($str,1);
return $ret;
} else if (is_numeric($str{0})) {
// echo "@";
$namelen = substr($str, 0, strpos($str, ":"));
$name = substr($str, strpos($str, ":")+1, $namelen);
$str = substr($str, strpos($str, ":")+1+$namelen);
return $name;
}
}
$bencode = parse_torrent($str);
print_r( $bencode );
?>
http://Cyberwonderland.tk/ Smalsumas žudo? Nesikankink!!
Redagavo Enzo 2008 Geg. 4 21:05:09 |
Lietuvos_pilietis
Narys
Buldozeris
Pranešimai: 249
Įstojęs: 2008 Bal. 27 20:04:43
|
Lietuvos_pilietis parašė:
Galunė lyg .torrent failo.. Čia radau kažkoki torrent failus kad skaitytu bet nzn ar tai tinkamas dalykas ir nzn kur det butent ji reik..
<?php
$input = "http://fdisk.projektas.in/uploads/101.torrent";
//if (!file_exists($input)) { exit("input file $input doesn't exists"); }
$str = file_get_contents($input);
function parse_torrent($s) {
static $str;
$str = $s;
// echo $str{0};
if ($str{0} == 'd') {
$str = substr($str,1);
$ret = array();
while (strlen($str) && $str{0} != 'e') {
$key = parse_torrent($str);
if (strlen($str) == strlen($s)) break; // prevent endless cycle if no changes made
if (!strcmp($key, "info")) {
$save = $str;
}
// echo ".",$str{0};
$value = parse_torrent($str);
if (!strcmp($key, "info")) {
$tosha = substr($save, 0, strlen($save) - strlen($str));
$ret['info_hash'] = sha1($tosha);
}
// process hashes - make this stuff an array by piece
if (!strcmp($key, "pieces")) {
$value = explode("====",
substr(
chunk_split( $value, 20, "===="),
0, -4
)
);
};
$ret[$key] = $value;
}
$str = substr($str,1);
return $ret;
} else if ($str{0} == 'i') {
// echo "_";
$ret = substr($str, 1, strpos($str, "e")-1);
$str = substr($str, strpos($str, "e")+1);
return $ret;
} else if ($str{0} == 'l') {
// echo "#";
$ret = array();
$str = substr($str, 1);
while (strlen($str) && $str{0} != 'e') {
$value = parse_torrent($str);
if (strlen($str) == strlen($s)) break; // prevent endless cycle if no changes made
$ret[] = $value;
}
$str = substr($str,1);
return $ret;
} else if (is_numeric($str{0})) {
// echo "@";
$namelen = substr($str, 0, strpos($str, ":"));
$name = substr($str, strpos($str, ":")+1, $namelen);
$str = substr($str, strpos($str, ":")+1+$namelen);
return $name;
}
}
$bencode = parse_torrent($str);
print_r( $bencode );
?>
Padėkit žmonės dėl šito
http://Cyberwonderland.tk/ Smalsumas žudo? Nesikankink!!
Redagavo bad_user 2008 Geg. 9 23:05:07 |
Rasmitas
Narys
Pulkininkas
Pranešimai: 493
Įstojęs: 2006 Sau. 22 15:01:44
|
Inete maciau infusiona torrent'ams
Jei rasiu idesiu;)
|
bad_user
Narys
Antras po Dievo
Pranešimai: 4956
Įstojęs: 2007 Spa. 26 20:10:01
|
Tai bandyk redaguotis downloads.php
Rules: 21 & 22 Read first! |
Lietuvos_pilietis
Narys
Buldozeris
Pranešimai: 249
Įstojęs: 2008 Bal. 27 20:04:43
|
Tai kiek sugebėjau meginot o paaiškėjo kad nevelnio nesugebu šio dalyko padaryt, tai galvoju gal atsiras susidūre su sia klaida ar suprantantys
http://Cyberwonderland.tk/ Smalsumas žudo? Nesikankink!! |