Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
  #1  
Old 13th March 2012, 14:53
FTWR FTWR is offline
Senior Member
 
Join Date: Sep 2011
P2P
Posts: 34
Default TheTorrents.org Clone
TheTorrents.org is a nice tracker based on old content. Here we have the source code, wich is based on NexusPHP.

Demo: http://thetorrents.org

Some screens:
Click the image to open in full size. Click the image to open in full size.
Attached Files
File Type: rar thetorrents.org_clone.rar (1.61 MB, 428 views)
Reply With Quote
The Following 2 Users Say Thank You to FTWR For This Useful Post:
gogo999 (14th March 2012), ND47 (14th July 2014)
  #2  
Old 14th March 2012, 17:31
gogo999's Avatar
gogo999 gogo999 is offline
Senior Member
 
Join Date: Feb 2012
Korea South
Posts: 140
Default I have a question
Code:
Fatal error: Class 'Memcache' not found in C:\xampp\htdocs\classes\class_cache.php on line 4

However, there is no way to solve it anywhere let me know thanks

'Memcache' like that even if the installation is shown
Reply With Quote
  #3  
Old 14th March 2012, 17:35
FTWR FTWR is offline
Senior Member
 
Join Date: Sep 2011
P2P
Posts: 34
Default
Quote:
Originally Posted by gogo999 View Post
Code:
Fatal error: Class 'Memcache' not found in C:\xampp\htdocs\classes\class_cache.php on line 4
However, there is no way to solve it anywhere let me know thanks

'Memcache' like that even if the installation is shown
You must install on server memcache and memcached with php extension.
Reply With Quote
The Following User Says Thank You to FTWR For This Useful Post:
gogo999 (15th March 2012)
  #4  
Old 14th March 2012, 17:57
BitFarmer's Avatar
BitFarmer BitFarmer is offline
Senior Member
 
Join Date: Jan 2012
Latvia
Posts: 99
Default
i suggest you read install.txt first
Reply With Quote
The Following User Says Thank You to BitFarmer For This Useful Post:
gogo999 (15th March 2012)
  #5  
Old 15th March 2012, 18:31
gogo999's Avatar
gogo999 gogo999 is offline
Senior Member
 
Join Date: Feb 2012
Korea South
Posts: 140
Default
Quote:
Originally Posted by FTWR View Post
You must install on server memcache and memcached with php extension.

This in turn should show you something, no matter how I think I have to give up
Meanwhile, thanks for the heads up
Reply With Quote
  #6  
Old 15th March 2012, 21:54
dumy28 dumy28 is offline
Member
 
Join Date: Jan 2009
Default
Posts: 1
Default
can someone make a tutorial on how we should install memcache on a domain?

thanks alot
Reply With Quote
The Following User Says Thank You to dumy28 For This Useful Post:
gogo999 (16th March 2012)
  #7  
Old 15th March 2012, 21:56
x360zone's Avatar
x360zone x360zone is offline
Senior Member
 
Join Date: Jul 2011
United Kingdom
Posts: 915
Default try this
attention

Attention

When we talk about Memcache their two things that needs to be installed
  1. Memcache Daemon know as memcached, and
  2. Memcache client for your programing language, in this case PHP.

Installing Memcache Daemon

Note these steps has been taken from http://in2.php.net/manual/en/memcache.installation.php
Steps to install Libevent(memcached dependency)

  1. First we need to check if libevent is installed or not?
    1. type whereis libevent on shell.
  2. If you don’t find it, then we need to download and install it. Type following sequence of commands on your shell
    1. wget http://www.monkey.org/~provos/libevent-1.4.8-stable.tar.gz
    2. tar xfz libevent-1.4.8-stable.tar.gz
    3. cd libevent-1.4.8-stable
    4. ./configure
    5. make
    6. sudo make install
  3. Finally we need to create a symlink to libevent
    1. type sudo ln -s /usr/local/lib/libevent-1.4.so.2 /usr/lib on shell.
Now that we have installed the dependencies, we will install the memcahced.
Steps to install Memcached

  1. Download and install, for that type following sequence of commands on your shell
    1. wget http://danga.com/memcached/dist/memcached-1.2.6.tar.gz
    2. tar xfz memcached-1.2.6.tar.gz
    3. cd memcached-1.2.6
    4. ./configure
    5. make
    6. sudo make install
  2. Run Memcached as a daemon (d = daemon, m = memory, u = user, l = IP to listen to, p = port)
    1. type memcached -d -m 1024 -u root -l 127.0.0.1 -p 11211 on shell
Note: versions numbers mentioned here might be outdated, so do check for updated package to download.
Now we have installed and started the Memcache daemon, it’s time to install PHP client.
Installing Memcache Extension for PHP

Some of the steps mentioned below are taken from http://www.sitepoint.com/article/get...d-with-pear/2/
  1. Let’s determine the PHP version installed and also make sure it is in system path.
    1. type php -v on you shell, it should show something like PHP 5.2.6 (cli) (built: Nov 4 2008 09:25:57)
    2. type whereis php to get the path where PHP is installed in your system.
    3. In your accounts home directory create/edit ‘.profile’ file and add ‘export PATH=$PATH:/usr/local/bin‘ where ‘/usr/local/bin‘ is the folder where php executable is installed.
  2. Install PEAR, type following sequence of commands on your shell
    1. wget http://pear.php.net/go-pear -O go-pear.php
    2. php go-pear.php and follow the installation instructions
    3. ls -l ~/.pearrc
    4. edit the ‘.profile‘ (again) and add export PATH=/home/yourname/pear/bin:$PATH
  3. Finally Install Memcache
    1. type pecl install memcache on your shell, it will install memcahce extension for PHP.
  4. Edit php.ini to add ‘extension=memcache.so‘, to find the exact php.ini file used by your system
    1. php -i | grep ‘php.ini’
  5. Restart apache, and you are done type one of the commands below to do that
    1. /etc/init.d/apache restart , or
    2. service httpd restart



__________________

7.5 tsse
future tracker source & hosting, vps
trackers installs + Themes
http://www.foxyhosting.co.uk
http://www.downmy.top testing zone
offshore vps & cpanel hosting & Shoutcast & VPN
STOP cyberbullying
any setups tracker installs vps hosting vps setups themes mods hit me up
over the last three months ive become a snake breeder,pythons,hogs,boa,corn,rat,king,carpet and what joy it is


Reply With Quote
The Following User Says Thank You to x360zone For This Useful Post:
gogo999 (16th March 2012)
  #8  
Old 16th March 2012, 00:51
gogo999's Avatar
gogo999 gogo999 is offline
Senior Member
 
Join Date: Feb 2012
Korea South
Posts: 140
Default
Quote:
Originally Posted by x360zone View Post
[ATTENTION]When we talk about Memcache their two things that needs to be installed
  1. Memcache Daemon know as memcached, and
  2. Memcache client for your programing language, in this case PHP.


Thanks x360zone ^^;; I install Windows Server 2008 R2 SP1 is trying to
Are having a hard time, the installation in Windows Server 2008 R2 SP1 Is it possible to install


In Windows Server 2008 R2 SP1, I would like to install
In Linux, the installation is wrong because of the lack of skills ....
Reply With Quote
  #9  
Old 17th March 2012, 00:33
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
For Windows have a read through this http://pureform.wordpress.com/2008/0...ndows-for-php/
Reply With Quote
The Following User Says Thank You to Krypto For This Useful Post:
gogo999 (17th March 2012)
  #10  
Old 18th March 2012, 12:54
gogo999's Avatar
gogo999 gogo999 is offline
Senior Member
 
Join Date: Feb 2012
Korea South
Posts: 140
Default In the installation and before NexusPHP {login / php} I do not co
In the installation and before NexusPHP {login/php} I do not come from the screen
I do not know whether this was a problem

Can you solve this problem .........?
Thank you members of the.... :hello:
Reply With Quote
Reply

Tags
clone , thetorrentsorg

Thread Tools

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



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