Guest User

Untitled

a guest
Aug 7th, 2018
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. ***************************************
  5. ** FreeTSP Version: 2.0 Multilingual **
  6. ***************************************
  7. ** http://www.freetsp.com
  8. ** Licence Info: GPL
  9. ** Copyright (C) 2017 FreeTSP v2.0 Multilingual
  10. ** A bittorrent tracker source based on TBDev.net/tbsource/bytemonsoon.
  11. ** Full Respects & Credits To Mindless & All The Team @ U232
  12. ** Project Leaders. Fireknight & Rushed.
  13. ** Project Founder: Krypto.
  14. **/
  15.  
  16. ##############
  17. ## DB Setup ##
  18. ##############
  19.  
  20. mysql_host = "localhost"; # Your MySQL Host Name -- localhost is the Default
  21. mysql_user = "root"; # Your MySQL Username
  22. mysql_pass = "password"; # Your MySQL Password
  23. mysql_db = "RC3B"; # Your MySQL Data Base Name
  24.  
  25.  
  26. ##################
  27. ## Site Setings ##
  28. ##################
  29. $site_url = "http://localhost"; # Set This To Your Sites URL No Ending Slash
  30. $site_online = true; # Set To False To Turn Site Offline. To Set Back Online Edit This File
  31. $members_only = true; # Set To False To Allow Non-members To Download
  32. $site_email = "noreply@freetsp.com"; # Email For Sender/return Path.
  33. $email_confirm = false; # Allow Members To Signup Without Confirming Their Email
  34. $site_name = "V2 BETA"; # Name Of Your Site
  35. $image_dir = "/images/"; # Images Directory
  36. $max_users = 7500; # Max Users Before Registration Closes
  37. $max_users_then_invite = 1; # Max Users Before Invite Only
  38. $invites = 2500; # Max Number Of Invites Avalible
  39. $signup_timeout = 3 * 86400; # Default 3 Days
  40. $min_votes = 3; # Min Votes
  41. $autoclean_interval = 900; # Default 15 Mins
  42. $maxloginattempts = 6; # Max Failed Logins Before Getting Banned
  43. $dictbreaker = "functions/dictbreaker"; # Folder For Max Failed Logins
  44. $site_reputation = false; # Set To False To Turn Reputation System Off
  45.  
  46.  
  47.  
  48.  
  49. ########################
  50. ## Define User Groups ##
  51. ########################
  52. define ('UC_USER', 10);
  53. define ('UC_POWER_USER', 20);
  54. define ('UC_VIP', 30);
  55. define ('UC_UPLOADER', 40);
  56. define ('UC_MODERATOR', 50);
  57. define ('UC_ADMINISTRATOR', 60);
  58. define ('UC_SYSOP', 70);
  59. define ('UC_MANAGER', 80);
  60.  
  61. define ('UC_TRACKER_MANAGER', 1); # Set The Id Number To Match The Member Who Will Have Access To The Tracker Manager
  62.  
  63. define ('FTSP', 'FreeTSP');
  64.  
  65. $curversion' = 'v2.0 Multilingual'; # FreeTSP Version DO NOT ALTER - This Will Help Identify Code For Support Issues At freetsp.com
  66.  
  67. ?>
Add Comment
Please, Sign In to add comment