View Single Post
  #5  
Old 22nd June 2013, 16:39
dontlookbackds dontlookbackds is offline
Member
 
Join Date: Jun 2013
P2P
Posts: 8
Default Pl help me!
1) check if the torrent is been inserted into the DB
Click the image to open in full size.

2) Check if the torrent has been saved to the torrent directory.

I removed the directory older and created with the new folder chmod 777 (upload on site ok)

Click the image to open in full size.


My config
PHP Code:
<?php



/*

*-------------------------------------------------------------------------------*

*----------------    |  ____|        |__   __/ ____|  __ \        --------------*

*----------------    | |__ _ __ ___  ___| | | (___ | |__) |       --------------*

*----------------    |  __| '__/ _ \/ _ \ |  \___ \|  ___/        --------------*

*----------------    | |  | | |  __/  __/ |  ____) | |            --------------*

*----------------    |_|  |_|  \___|\___|_| |_____/|_|            --------------*

*-------------------------------------------------------------------------------*

*---------------------------    FreeTSP RC 3.0   -------------------------------*

*-------------------   The Alternate BitTorrent Source   -----------------------*

*-------------------------------------------------------------------------------*

*-------------------------------------------------------------------------------*

*--   This program is free software; you can redistribute it and/or modify    --*

*--   it under the terms of the GNU General Public License as published by    --*

*--   the Free Software Foundation; either version 2 of the License, or       --*

*--   (at your option) any later version.                                     --*

*--                                                                           --*

*--   This program is distributed in the hope that it will be useful,         --*

*--   but WITHOUT ANY WARRANTY; without even the implied warranty of          --*

*--   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           --*

*--   GNU General Public License for more details.                            --*

*--                                                                           --*

*--   You should have received a copy of the GNU General Public License       --*

*--   along with this program; if not, write to the Free Software             --*

*-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  --*

*--                                                                           --*

*-------------------------------------------------------------------------------*

*------------   Original Credits to tbSource, Bytemonsoon, TBDev   -------------*

*-------------------------------------------------------------------------------*

*--------           Developed By: Krypto, Fireknight, Subzero           --------*

*-------------------------------------------------------------------------------*

*-----------------       First Release Date August 2010      -------------------*

*-----------                 http://www.freetsp.info                 -----------*

*------                    2010 FreeTSP Development Team                  ------*

*-------------------------------------------------------------------------------*

*/



##############

## DB Setup ##

##############

$mysql_host "@@@@@@@";

$mysql_user "@@@@@@@";

$mysql_pass "@@@@@@@";

$mysql_db   "@@@@@@@";



#################

## Site Config ##

#################

$site_online        true;                    # Set to false to turn Site Offline

$members_only        true;                    # Set to false to Allow Non-Members to Download

$site_url            "http://ttest.sharetuts.com";    # Set this to your Site's URL No ending slash!

$site_email            "sharemultimediavn@gmail.com"# Email for Sender/Return Path.

$site_name            "Tracker tuts";            # Name of your Site

$image_dir            "/images/";            # Images Directory

$torrent_dir        ROOT_DIR.'torrents';  # FOR UNIX ONLY - must be writable for httpd user

#$torrent_dir        = "http://ttest.sharetuts.com/torrents"; # FOR WINDOWS ONLY - must be writable for httpd user



$announce_urls        = array();

$announce_urls[]    = "http://ttest.sharetuts.com/announce.php";



$peer_limit                50000;        # Max Number Peers allowed before Torrents start to be Deleted to make room

$max_users                75000;        # Max Users before Registration Closes

$signup_timeout            86400 3;    # Default 3 Days

$min_votes                1;            # Min Votes

$autoclean_interval        900;            # Default 15 Mins

$announce_interval        60 30;        # Default 30 Mins

$max_torrent_size        1000000;        # Max Torrent File Size Allowed

$max_dead_torrent_time    3600;        # Default 3 Hours

$posts_read_expiry        14*86400;        # Read Post Expiry time for Forums



?>
Click the image to open in full size.

I download file = ftp test ok!

when it download on site
Click the image to open in full size.
Reply With Quote