View Single Post
  #59  
Old 16th August 2008, 21:19
kaed kaed is offline
Member
 
Join Date: Apr 2008
Posts: 4
Default
problem in upload Torrent, this error
Quote:
Code:
Warning: fopen(http://myweb/tracker/torrents/6.torrent) [function.fopen]: failed to open stream: HTTP wrapper does not support writeable connections. in /home//myweb/public_html/tracker/takeupload.php on line 276
Code:
Warning: Cannot modify header information - headers already sent by (output started at /home//myweb/public_html/tracker/takeupload.php:276) in /home//myweb/public_html/tracker/takeupload.php on line 346
folder "torrents" CHMOD 777

line code 276 this
PHP Code:
$fp fopen("$torrent_dir/$id.torrent""w");
if (
$fp)
{
    @
fwrite($fpbenc($dict), strlen(benc($dict)));
    
fclose($fp);
}

line code 346 this
PHP Code:
header("Location: $BASEURL/details.php?id=$id"); 
thks :) sorry my english
Reply With Quote