Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
Thread Tools
  #181  
Old 27th September 2010, 09:38
BEST BEST is offline
Senior Member
 
Join Date: Aug 2009
Germany
Posts: 78
Default
Hello my buddy and I wanted to take come us the H Tracker once under the magnifying glass however unfortunately not further. Sql is all above and data for the DB also are registered.. if I now on signup go comes only consequence end..

Where does the mistake lie now and how we can remove that?

lg
Attached Thumbnails
fehler.JPG  
Reply With Quote
  #182  
Old 28th September 2010, 09:35
lencoo12 lencoo12 is offline
Member
 
Join Date: Sep 2010
P2P
Posts: 1
Default
Quote:
Originally Posted by Egidijuss View Post
is
Code:
 $x = "'".mysql_real_escape_string($x)."'";
what is on line 406.

i think you need to turn magic_quotes off
__________________
watch movies online
Reply With Quote
  #183  
Old 29th September 2010, 15:26
gmuzica gmuzica is offline
Member
 
Join Date: Jun 2009
P2P
Posts: 6
Default ShoutBox, please help
How I do to appear in chat what is uploadet. Like this:

SYSTEM: New torrent: "Torrent Name" was just uploaded. Please seed back what you take!!
Reply With Quote
  #184  
Old 21st October 2010, 19:09
zeek zeek is offline
Member
 
Join Date: Apr 2010
P2P
Posts: 1
Default
Is this tracker still being developed because the h-tracker.org website is gone...It's an awesome script and I'll be sad if no one is still working on it.
Reply With Quote
  #185  
Old 21st October 2010, 19:21
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
Quote:
Originally Posted by zeek
Is this tracker still being developed because the h-tracker.org website is gone...It's an awesome script and I'll be sad if no one is still working on it.
whyyyyy??? its only Torrent Trader at the end of the day matey.

and for

Quote:
Originally Posted by gmuzica
ShoutBox, please help
How I do to appear in chat what is uploadet. Like this:

SYSTEM: New torrent: "Torrent Name" was just uploaded. Please seed back what you take!!
simple buddy, just open up torrent-upload.php

add this below lets say after

//End Scrape

Code:
    write_log("Torrent $id ($name) was Uploaded by $CURUSER[username]");
        $query = "INSERT INTO shoutbox (msgid, user, message, date, userid) VALUES (NULL, 'SYSTEM', ' ".$torrent." has been uploaded.', '".get_date_time()."', '0')";
        mysql_query($query);

        $mb_basic=1024*1024;
        $bonust = $mb_basic * 1024 * 5;
        mysql_query("UPDATE users SET uploaded = uploaded + '$bonust', uptor = uptor + '1' WHERE id=".$CURUSER["id"]) or sqlerr();
this part below you dont need but it is to give upload 5gb bonus credit for uploading. either change 5 to amount gigs given or remove

Code:
 $mb_basic=1024*1024;
        $bonust = $mb_basic * 1024 * 5;
        mysql_query("UPDATE users SET uploaded = uploaded + '$bonust',
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
Reply With Quote
  #186  
Old 28th October 2010, 10:09
hack346 hack346 is offline
Banned
 
Join Date: Mar 2008
Turkey
Posts: 80
Default
Quote:
Originally Posted by zeek View Post
Is this tracker still being developed because the h-tracker.org website is gone...It's an awesome script and I'll be sad if no one is still working on it.
that site is not more available (fault of sponsor)

now im working on a new version of H-tracker and i hope to open my own site to provide support for this source
Best regards. M
Reply With Quote
  #187  
Old 29th October 2010, 23:50
movizdb movizdb is offline
Senior Member
 
Join Date: Sep 2008
France
Posts: 142
Default
Quote:
Originally Posted by hack346 View Post
that site is not more available (fault of sponsor)

now im working on a new version of H-tracker and i hope to open my own site to provide support for this source
Best regards. M
Will wait for it :D

By the way if you want hosting sponsor contact me , i'll be glad to help you ;)
Reply With Quote
  #188  
Old 17th December 2010, 17:05
guinox guinox is offline
Member
 
Join Date: May 2010
P2P
Posts: 7
Default please help
Code:
Warning
Code:
:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/xxxxxxx/www/backend/functions.php on line 69
Table 'xxxxxxx.languages' doesn't exist


Last edited by guinox; 17th December 2010 at 20:31. Reason: correccion
Reply With Quote
  #189  
Old 17th December 2010, 17:33
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
the answer is in the error

supermen.languages dont exist

is supermen your db name? looks like you dont have languages installed

show line 69 please. also try adding this to your sql (log in to phpmyadmin. click on database name (supermen) click on sql along the top and paste below, hit go. this will add languages database table even tho it should be in anyway.

Code:
CREATE TABLE `languages` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `uri` varchar(255) NOT NULL default '',
  `name` varchar(64) NOT NULL default '',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=15 ;

INSERT INTO `languages` (`id`, `uri`, `name`) VALUES 
(1, 'english.lang', 'English'),
(2, 'french.lang', 'French'),
(3, 'dutch.lang', 'Dutch'),
(4, 'portuguese.lang', 'Portuguese'),
(5, 'swedish.lang', 'Swedish'),
(6, 'german.lang', 'German'),
(7, 'bulgarian.lang', 'Bulgarian'),
(8, 'danish.lang', 'Danish'),
(9, 'italian.lang', 'Italian'),
(10, 'lithuanian.lang', 'Lithuanian'),
(11, 'hungarian.lang', 'Hungarian'),
(13, 'russian.lang', 'Russian'),
(14, 'spanish.lang', 'Spanish');
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
Reply With Quote
  #190  
Old 17th December 2010, 21:50
guinox guinox is offline
Member
 
Join Date: May 2010
P2P
Posts: 7
Default
thnk
Reply With Quote
Reply

Tags
htracker , v2


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 13:32. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.