Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
  #11  
Old 20th July 2009, 15:00
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Exclamation sith =))
Quote:
Originally Posted by Morbidawn View Post
Does anyone get these errors when they try to upload a torrent ?


Code:
Warning: move_uploaded_file(/var/tb/torrents/4.torrent) [function.move-uploaded-file]: failed to open stream: No such file or directory in C:\xampp\htdocs\takeupload.php on line 173

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\xampp\tmp\php101.tmp' to '/var/tb/torrents/4.torrent' in C:\xampp\htdocs\takeupload.php on line 173

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\takeupload.php:173) in C:\xampp\htdocs\takeupload.php on line 267
I have that error to ! and when u download the PAGE DOESN'T EXISTS..please help ;)

Last edited by sammygo; 20th July 2009 at 16:13.
Reply With Quote
  #12  
Old 20th July 2009, 17:29
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Talking Torrents
First checks are if Linux then ensure torrents folder is writable ie = chmod 777 - Then once thats done i suggest you use a phpinfo.php file in root - point to it then establish your relative path to torrent folder

Code:
<?php
phpinfo();
?>
^^ Save that as phpinfo.php and upload to root - point to it http:// yoursite / phpinfo.php
then look at say apache environment and you'll see a filepath which ends in phpinfo.php - That will look like

Code:
/home/domainname/public_html/phpinfo.php
so that becomes on bittorrent for fileapth :

Code:
/home/domainname/public_html/torrents
or

Code:
/var/www/httpdocs/phpinfo.php
to

Code:
/var/www/httpdocs/torrents
Once thats done your all set
Reply With Quote
  #13  
Old 20th July 2009, 19:56
Morbidawn's Avatar
Morbidawn Morbidawn is offline
Senior Member
 
Join Date: Sep 2008
P2P
Posts: 34
Default
And if it`s on windows XAMPP ?
Reply With Quote
  #14  
Old 20th July 2009, 20:05
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default
Thanks Bigjoos...that was for linux like you said...
Now can you give us for windows ?

The problem with download and

Quote:
Warning: move_uploaded_file(/var/tb/torrents/4.torrent) [function.move-uploaded-file]: failed to open stream: No such file or directory in C:\xampp\htdocs\takeupload.php on line 173

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\xampp\tmp\php101.tmp' to '/var/tb/torrents/4.torrent' in C:\xampp\htdocs\takeupload.php on line 173

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\takeupload.php:173) in C:\xampp\htdocs\takeupload.php on line 267
this problem when you upload a torrent
Reply With Quote
  #15  
Old 20th July 2009, 20:22
3v0 3v0 is offline
Senior Member
 
Join Date: Feb 2008
Netherlands
Posts: 88
Default
In windows right click your torrents folder and choose properties and you'll find the path to put in your bittorrent.php/config.php for the torrent directory :)
Reply With Quote
  #16  
Old 20th July 2009, 21:15
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default
Quote:
Originally Posted by 3v0 View Post
In windows right click your torrents folder and choose properties and you'll find the path to put in your bittorrent.php/config.php for the torrent directory :)
Yes hmm...
my bittorrents.php
Code:
//$torrent_dir = "C:/xampp/htdocs/torrents";
My "torrents" folder is writeble..
WHen i upload it gives me errors in takeupload.php and when i refresh page : torrent already updated...

when i am in browse.php searching for dead torrents..i see it..i click on it when i download it goes t ..and page don't exist !
Reply With Quote
  #17  
Old 20th July 2009, 21:28
pdq pdq is offline
TBDev BANNED Warrior
 
Join Date: Sep 2008
P2P
Posts: 46
Default
look at your error message:
Code:
Warning: move_uploaded_file(/var/tb/torrents/4.torrent) [function.move-uploaded-file]: failed to open stream: No such file or directory in C:\xampp\htdocs\takeupload.php on line 173

it is looking for a file here:
Code:
/var/tb/torrents/4.torrent
which that path does not exist on your server/PC.

then it says:
Code:
No such file or directory in C:\xampp\htdocs\takeupload.php
which is the path of the files for your tracker.

what this is saying that your $torrent_dir is still:
PHP Code:
$torrent_dir "/var/tb/torrents"
when it should be:
PHP Code:
$torrent_dir "C:/xampp/htdocs/torrents"
also this should work for either linux or windows:
PHP Code:
$torrent_dir 'torrents'
=]
Reply With Quote
  #18  
Old 20th July 2009, 21:32
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default
Replace
Quote:
$torrent_dir = "var/user/home"; # FOR UNIX ONLY - must be writable for httpd user
//$torrent_dir = "C:/xampp/htdocs/torrents"; # FOR WINDOWS ONLY - must be writable for httpd user
With
Quote:
$torrent_dir = "C:/xampp/htdocs/torrents"; # by sAmmy !

Click on Thank you ;) thanks !!


Now...someone have a Tbdev 08 PASSKEY mod ?!?!?!? working 100% !!! Thanks !!

Like my tracker :D ? Still more to do

Click the image to open in full size.

Last edited by sammygo; 20th July 2009 at 23:12.
Reply With Quote
The Following User Says Thank You to sammygo For This Useful Post:
HUnter83 (20th August 2010)
  #19  
Old 21st July 2009, 03:31
Morbidawn's Avatar
Morbidawn Morbidawn is offline
Senior Member
 
Join Date: Sep 2008
P2P
Posts: 34
Default
ok the torrent uploads, downloads correct, now when i try to seed it, tracker sending invalid data : <NULL> what is it now?
Reply With Quote
  #20  
Old 21st July 2009, 10:50
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default
Quote:
Originally Posted by Morbidawn View Post
ok the torrent uploads, downloads correct, now when i try to seed it, tracker sending invalid data : <NULL> what is it now?
When i will see what's the problem i will post here...now i need a passkey mod 100% good with no errors...:D
Reply With Quote
Reply

Tags
2008 , tbdev

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
tbdev 2008 wMan TBDev 5 24th March 2013 12:59
TorrentStrike theme engine to TBdev Kotafi Mods & Themes 6 13th May 2012 04:42
How to install theme In Source 1.1.2008 ? Amine TBDev 3 16th July 2009 23:38
YSE PRE6 - fixed - 24.09.2008 kp380lv Yuna Scatari Edition (YSE) 3 7th January 2009 18:57
problem with TBDEV 01-01-2008 crstan TBDev 3 22nd August 2008 15:08



All times are GMT +2. The time now is 02:01. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.