Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Torrent Strike
Reply
Thread Tools
  #211  
Old 22nd April 2010, 18:23
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Takeconfirminvite.php
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #212  
Old 22nd April 2010, 18:26
Coraille Coraille is offline
Senior Member
 
Join Date: Feb 2009
Canada
Posts: 92
Default
Quote:
Originally Posted by joeroberts View Post
Takeconfirminvite.php
Thx bro
Bug Fixed :)

Code:
Account successfully confirmed!

  Your account has been activated! You have been automatically logged  in. You can now continue to the main page and start  using your account.
 Before you start using torrentbits we urge you to read the RULES and  the FAQ.
Reply With Quote
  #213  
Old 23rd April 2010, 11:23
tekmobile tekmobile is offline
Senior Member
 
Join Date: Jul 2009
United Kingdom
Posts: 16
Default
I find that everyday all comments on torrents get auto deleted.
I have searched through pretty much every line of code and cannot find anything that would do this.

Any Ideas
Reply With Quote
  #214  
Old 23rd April 2010, 14:26
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
how long after comment is posted is it deleted?
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #215  
Old 23rd April 2010, 14:37
tekmobile tekmobile is offline
Senior Member
 
Join Date: Jul 2009
United Kingdom
Posts: 16
Default
Quote:
Originally Posted by joeroberts View Post
how long after comment is posted is it deleted?
I don't know exactly never took that much notice but it seems like pretty much everyday say 24Hrs.

I can have comments on many torrents then the next day there will be no comments on any
Reply With Quote
  #216  
Old 23rd April 2010, 15:23
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
do you get any thing in logs?
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #217  
Old 23rd April 2010, 17:14
tekmobile tekmobile is offline
Senior Member
 
Join Date: Jul 2009
United Kingdom
Posts: 16
Default
no nothing in the site logs or error logs it never really bothered me before but now i have alot more users its starting to be a issue especially when a user posts a question and the next time they visit its all gone.

im no noob at coding but this one has me stumped
Reply With Quote
  #218  
Old 24th April 2010, 01:36
Timisoreanul's Avatar
Timisoreanul Timisoreanul is offline
Senior Member
 
Join Date: Apr 2008
P2P
Posts: 211
Default
Helo, you have add some new mods recent? Because you are the first with this problem as far as i now. Your mods ,admins and sysop are ok? maybe they are delete the comments anyway check the cleanup.php.
__________________
only me
Reply With Quote
  #219  
Old 24th April 2010, 14:51
tekmobile tekmobile is offline
Senior Member
 
Join Date: Jul 2009
United Kingdom
Posts: 16
Default
Its always been like this but the only mod ive added that can affect comments was one to delete old inactive torrents but it was doing the same before the only other mods ive done are to implement a credit based system so users gain credit for uploading and if there's insufficient credit downloads are disabled.

IP checking on signup to help combat duplicate accounts (same nothing to affect comments)
and a few other small mods to help detect cheating


PHP Code:
    $res mysql_query("SELECT id, name, last_action, UNIX_TIMESTAMP(last_action) AS lastupdate FROM torrents");
    while (
$arr mysql_fetch_assoc($res))
    {
if (
$arr['lastupdate'] < time() - 3628800){
        
write_log("Torrent ".$arr['id']." (".$arr['name'].") was deleted by system (Dead since ".$arr['last_action'].")");
        @
unlink("$torrent_dir/$arr[id].torrent");
        
mysql_query("DELETE FROM torrents WHERE id=$arr[id]");
        
mysql_query("DELETE FROM peers WHERE torrent=$arr[id]");
        
mysql_query("DELETE FROM comments WHERE torrent=$arr[id]");
        
mysql_query("DELETE FROM files WHERE torrent=$arr[id]");
                
mysql_query("DELETE FROM snatched WHERE torrentid =$arr[id]");
}
    } 
Bump:
Quote:
Originally Posted by tekmobile View Post
Its always been like this but the only mod ive added that can affect comments was one to delete old inactive torrents but it was doing the same before the only other mods ive done are to implement a credit based system so users gain credit for uploading and if there's insufficient credit downloads are disabled.

IP checking on signup to help combat duplicate accounts (same nothing to affect comments)
and a few other small mods to help detect cheating
I think I may have found where this issue lies.

On uploading a few torrents the other day I noticed that all comments disappeared after I uploaded a new torrent so I looked through the takeupload.php and commented out the line to remove offer comments

@mysql_query("DELETE FROM `comments` WHERE `offer` = ". ($_POST['offer'] + 0). "");

after doing this all the comments have remained for the last few days even after various new uploads.
Reply With Quote
  #220  
Old 17th June 2010, 08:35
Pessbolt Pessbolt is offline
Member
 
Join Date: Jun 2010
P2P
Posts: 4
Default I have the same problem..
Quote:
Originally Posted by wired View Post
So I've downloaded this. Followed the readme instructions to the dot. Copied and pasted most commands.

I've got torrentstrike installed and working. But the phpBB2 refuses to install.

When I click on the forums link at top as the sysop I only get this line

Code:
The Forum is closed
No link for installing. If I try to navigate to http://mydomain.com/tracker/phpBB2/install/install.php I get

Code:
Internal Server Error

 The server encountered an internal error or misconfiguration and was unable to complete your request.
 Please contact the server administrator,  webmaster@mydomain.net and inform them of the time the error occurred, and anything you might have done that may have caused the error.
 More information about this error may be available in the server error log.
 Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
I'm at a loss? The files exsist. I can even put a phpinfo file in the phpBB2 directory and access it...

Please help as I'd really like to try this source out. I love the way it looks.

Thanks ahead of time.
I have search the whole forum and can't find any solution that works for this.. At one point i got the install button but was directed to install.php but its still says Internal Server Error.. I even tried to remove the config.php from phpbb2 folder..

Please help me..
Reply With Quote
Reply

Tags
fullymodded , torrents tracker , torrentstrike , v10


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
Torrentstrike Fullymodded v1.0 Seedbox problem!Help! jernej1 Torrent Strike 4 19th December 2012 22:09
Hit&Run system for Fullymodded adrian21 Torrent Strike 5 1st July 2010 22:29
Help with torrentstrike fullymodded v1.0 RikT Torrent Strike 0 24th September 2008 12:52
TS FullyModded 1.0 Problem NighTing Torrent Strike 4 13th September 2008 16:51
Torrentstrike Fullymodded v1.0 Passkey HELP Robz Torrent Strike 6 11th September 2008 22:49



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