BitTorrent private tracker scripts written in PHP. Email 'xiazuojie AT gmail.com' for paid support. BitTorrent private tracker PHP program, email 'xiazuojie AT gmail.com' for paid support.
Installation environment configuration:
The configuration environment can be apache+php+Mysql+memcache. The Linux environment is recommended, as the code execution efficiency is higher. The installation introduction provided by the author's code is also in the Linux environment, and all introductions are in English. This makes me, who is not level 6, embarrassed, and a little contemptuous. . .
Win2003 is recommended under Windows. If you have a certain understanding of PHP, you can build an IIS or apache+PHP+MysqL+memcache environment by yourself. You can google for specific tutorials. However, this method is very cumbersome, and inexplicable errors often occur, so you must be mentally prepared.
The best way is to choose an environment integration package. For example, Apmserv5.2.6 has full functions and supports apache+php+mysql+memcache. There is also an integration package, nginx+php+mysql+memcache. This integration package is quite simple and only has various functions. The aggregation of packages has no control interface and control panel, making it very inconvenient to use. These should be the only two integration packages among many that support memcache.
Okay, the environment is set up, unzip the package, and then import the database file (dbstructure.sql file under the root directory _db). After the import is completed, modify the configuration file. There is an allconfig.php file under the config file. Modify the following Contents:
'SITENAME' => 'site name'
'baseURL' => 'Website URL'
'announce_url' => 'localhost/announce.php' (announce url address)
'mysql_host' => 'MySQL host'
'mysql_user' => 'database username'
'mysql_pass' => 'Database password'
'mysql_db' => 'database name'
If the above is correct, you should be able to log in to the NexusPHP interface. Register an administrator account quickly.
Okay, after registering the user name, then enter the database management (phpMyAdmin), find the user you registered in the users table, edit its class attribute to 16, which is the supervisor authority.
It can also be set by the following methods:
1. Use the normal method to register a new user on the website, assuming the user name is admin.
2. Enter the following command to enter the MySQL command line management tool: mysql -u root -p nexusrocks -h localhost Note: Replace 'root', 'nexusrocks', and 'localhost' with your MySQL user name, password, and host address respectively.
2. Enter the following command in the MySQL command line management tool: USE nexus; UPDATE users SET class='16′ WHERE username='admin'; Note: Replace 'nexus' in the above command with your database name and 'admin 'Replace with your registered username.
3. Exit the MySQL command line management tool:
At this point, the PT is basically set up. Now you only need to use the supervisor account to set up and adjust the site.
Expand