Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
Thread Tools
  #131  
Old 2nd July 2010, 14:01
Phogo's Avatar
Phogo Phogo is offline
VIP
 
Join Date: Jan 2008
United Kingdom
Posts: 902
Default
Yes there is, its under shoutbox in the sql file believe it or not

Code:
CREATE TABLE `shoutbox` (
`id` smallint(6) NOT NULL auto_increment,
`userid` smallint(6) NOT NULL default '0',
`username` varchar(25) NOT NULL default '',
`date` int(11) NOT NULL default '0',
`text` text NOT NULL,
PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1;
Reply With Quote
  #132  
Old 2nd July 2010, 14:02
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Smile
Quote:
Originally Posted by Phogo View Post
Yes there is, its under shoutbox in the sql file believe it or not
point it out then ?
going to try it out
PHP Code:
SQL query:     
              &
#65279;CREATE TABLE  `shoutbox` ( `id` smallint( 6  )  NOT  NULL  AUTO_INCREMENT ,  `userid` smallint( 6  )  NOT  NULL default  '0',  `username` varchar( 25  )  NOT  NULL default  '',  `date` int( 11  )  NOT  NULL default  '0',  `text` text NOT  NULL ,  PRIMARY  KEY (  `id`  ) 
TYPE  =  MYISAM  AUTO_INCREMENT  =1;

     
      
MySQL said: [IMG]https://91.121.149.102:8443/domains/databases/phpMyAdmin/themes/original/img/b_help.png[/IMG] 
  #1064 - You have an error in your SQL syntax; check the manual that  corresponds to your MySQL server version for the right syntax to use  near '?CREATE TABLE `shoutbox` (
`idsmallint(6NOT NULL auto_increment,
`
userid' at line 1 
Reply With Quote
  #133  
Old 2nd July 2010, 14:15
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
please make sure the sql you post in your phpmyadmin matchs whet was posted leave no empty spaces before CREATE TABLE
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #134  
Old 2nd July 2010, 14:18
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Smile
Quote:
Originally Posted by joeroberts View Post
please make sure the sql you post in your phpmyadmin matchs whet was posted leave no empty spaces before CREATE TABLE
PHP Code:
CREATE TABLE `shoutbox` (
`
idsmallint(6NOT NULL auto_increment,
`
useridsmallint(6NOT NULL default '0',
`
usernamevarchar(25NOT NULL default '',
`
dateint(11NOT NULL default '0',
`
texttext NOT NULL,
PRIMARY KEY  (`id`)
TYPE=MyISAM AUTO_INCREMENT=1
this is what i put on server and get that on server

Quote:
Originally Posted by joeroberts View Post
please make sure the sql you post in your phpmyadmin matchs whet was posted leave no empty spaces before CREATE TABLE
PHP Code:
SQL query:     
              &
#65279;CREATE TABLE  `shoutbox` ( `id` smallint( 6  )  NOT  NULL   AUTO_INCREMENT ,  `userid` smallint( 6  )  NOT  NULL default  '0',   `username` varchar( 25  )  NOT  NULL default  '',  `date` int( 11  )   NOT  NULL default  '0',  `text` text NOT  NULL ,  PRIMARY  KEY (  `id`  )  
TYPE  =  MYISAM  AUTO_INCREMENT  =1;

     
      
MySQL said: [IMG]https://91.121.149.102:8443/domains/databases/phpMyAdmin/themes/original/img/b_help.png[/IMG] 
  #1064 - You have an error in your SQL syntax; check the manual that   corresponds to your MySQL server version for the right syntax to use   near '?CREATE TABLE `shoutbox` (
`idsmallint(6NOT NULL auto_increment,
`
userid' at line 1

this my db and this sql will  not go to it 
-- Server version    4.0.18-log

--
-- Table structure for table 
`avps`
--

CREATE TABLE avps (
  arg varchar(20) NOT NULL default '',
  value_s text NOT NULL,
  value_i int(11) NOT NULL default '0',
  value_u int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (arg)
) TYPE=MyISAM;

--
-- Table structure for table 
`bans`
--

CREATE TABLE bans (
  id int(10) unsigned NOT NULL auto_increment,
  added datetime NOT NULL default '0000-00-00 00:00:00',
  addedby int(10) unsigned NOT NULL default '0',
  comment varchar(255) NOT NULL default '',
  first int(11) default NULL,
  last int(11) default NULL,
  PRIMARY KEY  (id),
  KEY first_last (first,last)
) TYPE=MyISAM;

--
-- Table structure for table 
`blocks`
--

CREATE TABLE blocks (
  id int(10) unsigned NOT NULL auto_increment,
  userid int(10) unsigned NOT NULL default '0',
  blockid int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (id),
  UNIQUE KEY userfriend (userid,blockid)
) TYPE=MyISAM;

--
-- Table structure for table 
`categories`
--

CREATE TABLE categories (
  id int(10) unsigned NOT NULL auto_increment,
  name varchar(30) NOT NULL default '',
  image varchar(255) NOT NULL default '',
  PRIMARY KEY  (id)
) TYPE=MyISAM;

--
-- Table structure for table 
`comments`
--

CREATE TABLE comments (
  id int(10) unsigned NOT NULL auto_increment,
  user int(10) unsigned NOT NULL default '0',
  torrent int(10) unsigned NOT NULL default '0',
  added datetime NOT NULL default '0000-00-00 00:00:00',
  text text NOT NULL,
  ori_text text NOT NULL,
  editedby int(10) unsigned NOT NULL default '0',
  editedat datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (id),
  KEY user (user),
  KEY torrent (torrent)
) TYPE=MyISAM;

--
-- Table structure for table 
`countries`
--

CREATE TABLE countries (
  id int(10) unsigned NOT NULL auto_increment,
  name varchar(50) default NULL,
  flagpic varchar(50) default NULL,
  PRIMARY KEY  (id)
) TYPE=MyISAM;

--
-- Table structure for table 
`files`
--

CREATE TABLE files (
  id int(10) unsigned NOT NULL auto_increment,
  torrent int(10) unsigned NOT NULL default '0',
  filename varchar(255) NOT NULL default '',
  size bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY  (id),
  KEY torrent (torrent)
) TYPE=MyISAM;

--
-- Table structure for table 
`forums`
--

CREATE TABLE forums (
  sort tinyint(3) unsigned NOT NULL default '0',
  id int(10) unsigned NOT NULL auto_increment,
  name varchar(60) NOT NULL default '',
  description varchar(200) default NULL,
  minclassread tinyint(3) unsigned NOT NULL default '0',
  minclasswrite tinyint(3) unsigned NOT NULL default '0',
  postcount int(10) unsigned NOT NULL default '0',
  topiccount int(10) unsigned NOT NULL default '0',
  minclasscreate tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (id)
) TYPE=MyISAM;

--
-- Table structure for table 
`friends`
--

CREATE TABLE friends (
  id int(10) unsigned NOT NULL auto_increment,
  userid int(10) unsigned NOT NULL default '0',
  friendid int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (id),
  UNIQUE KEY userfriend (userid,friendid)
) TYPE=MyISAM;

--
-- Table structure for table 
`messages`
--

CREATE TABLE messages (
  id int(10) unsigned NOT NULL auto_increment,
  sender int(10) unsigned NOT NULL default '0',
  receiver int(10) unsigned NOT NULL default '0',
  added datetime default NULL,
  msg text,
  unread enum('yes','no') NOT NULL default 'yes',
  poster bigint(20) unsigned NOT NULL default '0',
  location enum('in','out','both') NOT NULL default 'in',
  PRIMARY KEY  (id),
  KEY receiver (receiver)
) TYPE=MyISAM;

--
-- Table structure for table 
`news`
--

CREATE TABLE news (
  id int(10) unsigned NOT NULL auto_increment,
  userid int(11) NOT NULL default '0',
  added datetime NOT NULL default '0000-00-00 00:00:00',
  body text NOT NULL,
  PRIMARY KEY  (id),
  KEY added (added)
) TYPE=MyISAM;

--
-- Table structure for table 
`peers`
--

CREATE TABLE peers (
  id int(10) unsigned NOT NULL auto_increment,
  torrent int(10) unsigned NOT NULL default '0',
  peer_id varchar(20) binary NOT NULL default '',
  ip varchar(64) NOT NULL default '',
  port smallint(5) unsigned NOT NULL default '0',
  uploaded bigint(20) unsigned NOT NULL default '0',
  downloaded bigint(20) unsigned NOT NULL default '0',
  to_go bigint(20) unsigned NOT NULL default '0',
  seeder enum('yes','no') NOT NULL default 'no',
  started datetime NOT NULL default '0000-00-00 00:00:00',
  last_action datetime NOT NULL default '0000-00-00 00:00:00',
  connectable enum('yes','no') NOT NULL default 'yes',
  userid int(10) unsigned NOT NULL default '0',
  agent varchar(60) NOT NULL default '',
  finishedat int(10) unsigned NOT NULL default '0',
  downloadoffset bigint(20) unsigned NOT NULL default '0',
  uploadoffset bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY  (id),
  UNIQUE KEY torrent_peer_id (torrent,peer_id),
  KEY torrent (torrent),
  KEY torrent_seeder (torrent,seeder),
  KEY last_action (last_action),
  KEY connectable (connectable),
  KEY userid (userid)
) TYPE=MyISAM;

--
-- Table structure for table 
`pollanswers`
--

CREATE TABLE pollanswers (
  id int(10) unsigned NOT NULL auto_increment,
  pollid int(10) unsigned NOT NULL default '0',
  userid int(10) unsigned NOT NULL default '0',
  selection tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (id),
  KEY pollid (pollid),
  KEY selection (selection),
  KEY userid (userid)
) TYPE=MyISAM;

--
-- Table structure for table 
`polls`
--

CREATE TABLE polls (
  id int(10) unsigned NOT NULL auto_increment,
  added datetime NOT NULL default '0000-00-00 00:00:00',
  question varchar(255) NOT NULL default '',
  option0 varchar(40) NOT NULL default '',
  option1 varchar(40) NOT NULL default '',
  option2 varchar(40) NOT NULL default '',
  option3 varchar(40) NOT NULL default '',
  option4 varchar(40) NOT NULL default '',
  option5 varchar(40) NOT NULL default '',
  option6 varchar(40) NOT NULL default '',
  option7 varchar(40) NOT NULL default '',
  option8 varchar(40) NOT NULL default '',
  option9 varchar(40) NOT NULL default '',
  option10 varchar(40) NOT NULL default '',
  option11 varchar(40) NOT NULL default '',
  option12 varchar(40) NOT NULL default '',
  option13 varchar(40) NOT NULL default '',
  option14 varchar(40) NOT NULL default '',
  option15 varchar(40) NOT NULL default '',
  option16 varchar(40) NOT NULL default '',
  option17 varchar(40) NOT NULL default '',
  option18 varchar(40) NOT NULL default '',
  option19 varchar(40) NOT NULL default '',
  sort enum('yes','no') NOT NULL default 'yes',
  PRIMARY KEY  (id)
) TYPE=MyISAM;

--
-- Table structure for table 
`posts`
--

CREATE TABLE posts (
  id int(10) unsigned NOT NULL auto_increment,
  topicid int(10) unsigned NOT NULL default '0',
  userid int(10) unsigned NOT NULL default '0',
  added datetime default NULL,
  body text,
  editedby int(10) unsigned NOT NULL default '0',
  editedat datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (id),
  KEY topicid (topicid),
  KEY userid (userid),
  FULLTEXT KEY body (body)
) TYPE=MyISAM;

--
-- Table structure for table 
`readposts`
--

CREATE TABLE readposts (
  id int(10) unsigned NOT NULL auto_increment,
  userid int(10) unsigned NOT NULL default '0',
  topicid int(10) unsigned NOT NULL default '0',
  lastpostread int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (id),
  KEY userid (id),
  KEY topicid (topicid)
) TYPE=MyISAM;

--
-- Table structure for table 
`sitelog`
--

CREATE TABLE sitelog (
  id int(10) unsigned NOT NULL auto_increment,
  added datetime default NULL,
  txt text,
  PRIMARY KEY  (id),
  KEY added (added)
) TYPE=MyISAM;

--
-- Table structure for table 
`stylesheets`
--

CREATE TABLE stylesheets (
  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;

--
-- Table structure for table 
`topics`
--

CREATE TABLE topics (
  id int(10) unsigned NOT NULL auto_increment,
  userid int(10) unsigned NOT NULL default '0',
  subject varchar(40) default NULL,
  locked enum('yes','no') NOT NULL default 'no',
  forumid int(10) unsigned NOT NULL default '0',
  lastpost int(10) unsigned NOT NULL default '0',
  sticky enum('yes','no') NOT NULL default 'no',
  views int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (id),
  KEY userid (userid),
  KEY subject (subject),
  KEY lastpost (lastpost)
) TYPE=MyISAM;

--
-- Table structure for table 
`torrents`
--

CREATE TABLE torrents (
  id int(10) unsigned NOT NULL auto_increment,
  info_hash varchar(20) binary NOT NULL default '',
  name varchar(255) NOT NULL default '',
  filename varchar(255) NOT NULL default '',
  save_as varchar(255) NOT NULL default '',
  search_text text NOT NULL,
  descr text NOT NULL,
  ori_descr text NOT NULL,
  category int(10) unsigned NOT NULL default '0',
  size bigint(20) unsigned NOT NULL default '0',
  added datetime NOT NULL default '0000-00-00 00:00:00',
  type enum('single','multi') NOT NULL default 'single',
  numfiles int(10) unsigned NOT NULL default '0',
  comments int(10) unsigned NOT NULL default '0',
  views int(10) unsigned NOT NULL default '0',
  hits int(10) unsigned NOT NULL default '0',
  times_completed int(10) unsigned NOT NULL default '0',
  leechers int(10) unsigned NOT NULL default '0',
  seeders int(10) unsigned NOT NULL default '0',
  last_action datetime NOT NULL default '0000-00-00 00:00:00',
  visible enum('yes','no') NOT NULL default 'yes',
  banned enum('yes','no') NOT NULL default 'no',
  owner int(10) unsigned NOT NULL default '0',
  numratings int(10) unsigned NOT NULL default '0',
  ratingsum int(10) unsigned NOT NULL default '0',
  nfo text NOT NULL,
  PRIMARY KEY  (id),
  UNIQUE KEY info_hash (info_hash),
  KEY owner (owner),
  KEY visible (visible),
  KEY category_visible (category,visible),
  FULLTEXT KEY ft_search (search_text,ori_descr)
) TYPE=MyISAM;

--
-- Table structure for table 
`users`
--

CREATE TABLE users (
  id int(10) unsigned NOT NULL auto_increment,
  username varchar(40) NOT NULL default '',
  old_password varchar(40) NOT NULL default '',
  passhash varchar(32) NOT NULL default '',
  secret varchar(20) binary NOT NULL default '',
  email varchar(80) NOT NULL default '',
  status enum('pending','confirmed') NOT NULL default 'pending',
  added datetime NOT NULL default '0000-00-00 00:00:00',
  last_login datetime NOT NULL default '0000-00-00 00:00:00',
  last_access datetime NOT NULL default '0000-00-00 00:00:00',
  editsecret varchar(20) binary NOT NULL default '',
  privacy enum('strong','normal','low') NOT NULL default 'normal',
  stylesheet int(10) default '1',
  info text,
  acceptpms enum('yes','friends','no') NOT NULL default 'yes',
  ip varchar(15) NOT NULL default '',
  class tinyint(3) unsigned NOT NULL default '0',
  avatar varchar(100) NOT NULL default '',
  uploaded bigint(20) unsigned NOT NULL default '0',
  downloaded bigint(20) unsigned NOT NULL default '0',
  title varchar(30) NOT NULL default '',
  country int(10) unsigned NOT NULL default '0',
  notifs varchar(100) NOT NULL default '',
  modcomment text NOT NULL,
  enabled enum('yes','no') NOT NULL default 'yes',
  avatars enum('yes','no') NOT NULL default 'yes',
  donor enum('yes','no') NOT NULL default 'no',
  warned enum('yes','no') NOT NULL default 'no',
  warneduntil datetime NOT NULL default '0000-00-00 00:00:00',
  torrentsperpage int(3) unsigned NOT NULL default '0',
  topicsperpage int(3) unsigned NOT NULL default '0',
  postsperpage int(3) unsigned NOT NULL default '0',
  deletepms enum('yes','no') NOT NULL default 'yes',
  savepms enum('yes','no') NOT NULL default 'no',
  PRIMARY KEY  (id),
  UNIQUE KEY username (username),
  KEY status_added (status,added),
  KEY ip (ip),
  KEY uploaded (uploaded),
  KEY downloaded (downloaded),
  KEY country (country),
  KEY last_access (last_access),
  KEY enabled (enabled),
  KEY warned (warned)
) TYPE=MyISAM; 
Reply With Quote
  #135  
Old 3rd July 2010, 14:11
COR72Z COR72Z is offline
Member
 
Join Date: Jun 2010
P2P
Posts: 4
Default Little problems with Netmaniack 1.6
1. In find how to chande classes, i changed them, but when a New Uploader try to upload a torrents, he can't.

2. I can't use BBCodes in description

Click the image to open in full size.

3. 0 seeders - i seeding torrent, but the tracker show 0 seeders (i do private torrents but nothing) and I want to remove:
Code:
Can't find what you want? Request it or check Offers
Code:
All torrents are private, this tracker is blocking Multi-tracker/DHT torrents
Code:
Executed in 0.0000 seconds.
http://img687.imageshack.us/f/66939397.jpg

And how to put reclams in my tracker? Like that:

http://img816.imageshack.us/img816/7710/22796512.jpg

Reply With Quote
  #136  
Old 3rd July 2010, 21:13
kustom kustom is offline
Member
 
Join Date: Jul 2010
United Kingdom
Posts: 1
Default
This script is amazing, only if it was worked on more. Please fix the security holes and add more mods :bubble:.

Quote:
Originally Posted by Zuby View Post
has a lot of security bugs .. you dont have enemy until you have some users .. around 10.000 .. then you can be a victim .. trust me.
Hire someone to secure the script if your not a coder yourself, otherwise i wouldn't be using it in a production environment.
Reply With Quote
  #137  
Old 18th August 2010, 17:17
bekli23 bekli23 is offline
Member
 
Join Date: Aug 2010
P2P
Posts: 2
Default takeupload.php
Code:
Fatal error:  Allowed memory size of 8388608 bytes exhausted (tried to allocate 10000001 bytes) in C:\Program Files\VertrigoServ\www\include\benc.php on line 173
and

I can't use BBCodes in description :secret:

Last edited by bekli23; 19th August 2010 at 06:35.
Reply With Quote
  #138  
Old 2nd September 2010, 08:12
sebi_deea sebi_deea is offline
Member
 
Join Date: Jul 2009
P2P
Posts: 2
Exclamation BBCodes why dont work in netmaniack 1.6 at torrent description?
If i wat to put for exemple
Code:
[img]www.fgtgrhyt.com/image.gif[/img]
dont work.

Someone if have a fix pls anser here.
Reply With Quote
  #139  
Old 11th November 2010, 21:44
DooM's Avatar
DooM DooM is offline
Senior Member
 
Join Date: Feb 2009
United Kingdom
Posts: 118
Default Problem with login
Do someone know why I can't login?
I have signed up as a SysOP, I fill the fields and when I press Login, the like changes to http://name.com/my.php but the page remains the same.

Ive tried to complete again the fields, clicked again Login! but the page still remains the same.
__________________
* Ubuntu Linux User since 2009 *
Reply With Quote
  #140  
Old 12th November 2010, 13:17
Zuby's Avatar
Zuby Zuby is offline
Senior Member
 
Join Date: Sep 2009
P2P
Posts: 101
Default
this is an old source .. try tbdev 2009.
Reply With Quote
Reply

Tags
netmaniack , v16


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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Netmaniack v1.6 Strikey TBDev 6 8th August 2009 21:49
[Netmaniack 1.5] TBDev error Rockstarinsh TBDev 5 14th January 2009 17:46
Netmaniack 1.4 Problem BlOoDyio Community Cafe 1 5th January 2009 13:22
Iso Torrents By Netmaniack Subzero Downloads 9 10th October 2008 09:28
NetManiack v1.6 remove TTL darknirvana TBDev 0 23rd July 2008 07:52



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