Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Torrent Strike (http://www.bvlist.com/forumdisplay.php?f=21)
-   -   Torrentstrike Fullymodded v1.0 (http://www.bvlist.com/showthread.php?t=117)

joeroberts 22nd April 2010 18:23

Takeconfirminvite.php

Coraille 22nd April 2010 18:26

Quote:

Originally Posted by joeroberts (Post 22559)
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.


tekmobile 23rd April 2010 11:23

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 :wallbash:

joeroberts 23rd April 2010 14:26

how long after comment is posted is it deleted?

tekmobile 23rd April 2010 14:37

Quote:

Originally Posted by joeroberts (Post 22575)
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

joeroberts 23rd April 2010 15:23

do you get any thing in logs?

tekmobile 23rd April 2010 17:14

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

Timisoreanul 24th April 2010 01:36

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.

tekmobile 24th April 2010 14:51

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 (Post 22612)
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.

Pessbolt 17th June 2010 08:35

I have the same problem..
 
Quote:

Originally Posted by wired (Post 16874)
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..


All times are GMT +2. The time now is 19:43.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.