Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   DR v0.26.1 (http://www.bvlist.com/showthread.php?t=77)

Fynnon 26th December 2007 13:00

DR v0.26.1
 
1 Attachment(s)
TBDev DR v0.26.1

johnake 26th December 2007 16:00

Re: TBDev DR 0.26.1
 
Hello,

How did you bypass the login problem?

Thank You!

Fynnon 26th December 2007 20:16

Re: TBDev DR 0.26.1
 
I saw this thread on tbdev about that problem
http://www.tbdev.net/index.php?showtopic=2130

The first line in the users table should be:

Code:

`id` int(10) unsigned NOT NULL auto_increment,

It is not perfect yet, needs more tweaking...

johnake 26th December 2007 23:33

Re: TBDev DR 0.26.1
 
I modified some files: takesignup.php and ok.php to disable the email confirmation. Still doesn`t work.
I see the created user but can`t login with it.Could be the SQL version?

Fynnon 27th December 2007 00:00

Re: TBDev DR 0.26.1
 
It worked for me a few moments ago
Redownload the archive and try again please...

ph91ctl 13th January 2008 18:33

re: DR v0.26.1
 
I set it up but I get this:
Code:

Sorry
We are a private site now and require an invite to join. Please do not request to be invited on non-invite forums, thanks.

How to deactivate that?
The default account (admin, pass admin) doesn`t work.
Could you please repair this source!

Fynnon 13th January 2008 23:46

re: DR v0.26.1
 
Quote:

Originally Posted by ph91ctl (Post 156)
I set it up but I get this:
Code:

Sorry
We are a private site now and require an invite to join. Please do not request to be invited on non-invite forums, thanks.

How to deactivate that?
The default account (admin, pass admin) doesn`t work.
Could you please repair this source!

in
Code:

/include/signup.php
on line 10 you must have:
Code:

if ($arr[0] >= $maxusers)

ph91ctl 16th January 2008 00:27

re: DR v0.26.1
 
mine was exactly like that but still didn`t work :cry:



Fynnon 16th January 2008 23:36

re: DR v0.26.1
 
Quote:

Originally Posted by ph91ctl
mine was exactly like that but still didn`t work :cry:

If I got it to work you should also
You have downloaded that source from this site?

seb35 2nd March 2008 01:09

re: DR v0.26.1
 
No tested change in signup and takesignup

Code:

if ($arr[0] >= $maxusers)
with

Code:

if ($arr[0] > $maxusers)

georgik 10th March 2008 10:05

re: DR v0.26.1
 
How i can make free signup?

Kukaracha 10th March 2008 19:11

re: DR v0.26.1
 
In signup.php

add this:

Code:

if ($arr[0] >= $maxusers)
        stderr("Sorry", "The current user account limit (" . number_format($maxusers) . ") has been reached. Inactive accounts are pruned all the time, please check back again later...");


andybv 22nd March 2008 10:57

re: DR v0.26.1
 
In
Code:

signup.php
and
Code:

takesignup.php
Replace:
Code:

if ($arr[0] >= $maxusers)
with:
Code:

if ($arr[0] >= 20000)

wMan 1st May 2008 17:30

re: DR v0.26.1
 
Code:

Fatal error: Call to undefined function: _() in /home/clock/public_html/include/general.inc.php on line 15
get this on intall any clues

HuRRR 20th May 2008 15:56

re: DR v0.26.1
 
1 Attachment(s)
At each torrent I try to upload, always have this message ...

Attachment 420

Someone know what can I do ?

seb35 21st May 2008 18:31

re: DR v0.26.1
 
Hi HuRRR salut HuRRR regarde

Positives

-Some sources may have exactly what you need in a base code
-Variety of choice enables you to select which source you feel would best suit your new BitTorrent-Site

Negatives

-Some sources may be discontinued, unavailable, or unsupported
-Some sources may be buggy/insecure (vulnerable to SQL/XSS Injection attacks!!)
-None are officially supported by this site, but by their respective creators.

johnharvis 17th June 2008 21:07

re: DR v0.26.1
 
Code:

Fatal error: Call to undefined function _() in /.../include/general.inc.php on line 15
These errors are everywhere, am i doing something wrong?

alexandru 3rd February 2009 15:02

TBdev DR fix bug 80%
 
1 Attachment(s)
TBdev DR repaired 70% of bugs, the biggest problem is not solved is when Upload a torrent appears BAD ID and I did not know how to fix thanks

s0ls 29th December 2009 13:36

I have the same problem, with the bad id when uploading a torrent.

c20 1st January 2010 17:02

working for me. thanks

ddshow 3rd January 2011 17:23

upload torrent id error
 
1 Attachment(s)
I fixed the problem of uploading torrent id error

PHP Code:

CREATE TABLE `torrents` (
  `
idint(10unsigned NOT NULL AUTO_INCREMENT,
  `
info_hashvarchar(255NOT NULL default '',
  `
namevarchar(255NOT NULL default '',
  `
filenamevarchar(255NOT NULL default '',
  `
save_asvarchar(255NOT NULL default '',
  `
search_texttext NOT NULL,
  `
descrtext NOT NULL,
  `
descr_parsedtext NOT NULL,
  `
ori_descrtext NOT NULL,
  `
categoryint(10unsigned NOT NULL default '0',
  `
sizebigint(20unsigned NOT NULL default '0',
  `
addeddatetime NOT NULL default '0000-00-00 00:00:00',
  `
typeenum('single','multi'NOT NULL default 'single',
  `
numfilesint(10unsigned NOT NULL default '0',
  `
commentsint(10unsigned NOT NULL default '0',
  `
viewsint(10unsigned NOT NULL default '0',
  `
hitsint(10unsigned NOT NULL default '0',
  `
times_completedint(10unsigned NOT NULL default '0',
  `
leechersint(10unsigned NOT NULL default '0',
  `
seedersint(10unsigned NOT NULL default '0',
  `
last_actiondatetime NOT NULL default '0000-00-00 00:00:00',
  `
visibleenum('yes','no'NOT NULL default 'yes',
  `
bannedenum('yes','no'NOT NULL default 'no',
  `
ownerint(10unsigned NOT NULL default '0',
  `
numratingsint(10unsigned NOT NULL default '0',
  `
ratingsumint(10unsigned NOT NULL default '0',
  `
nfotext NOT NULL,
  `
completed_byvarchar(255NOT NULL default '',
  `
forcevisibleenum('yes','no'NOT NULL default 'no',
  `
inverted_timestampint(10unsigned NOT NULL default '0',
  `
descriptionvarchar(120NOT NULL default '',
  
PRIMARY KEY  (`id`),
  
UNIQUE KEY `info_hash` (`info_hash`),
  
KEY `owner` (`owner`),
  
KEY `visible` (`visible`),
  
KEY `category_visible` (`category`,`visible`),
  
KEY `seeders_lastaction` (`seeders`,`last_action`),
  
KEY `seeders_lastaction_added` (`seeders`,`last_action`,`added`),
  
KEY `visible_2` (`visible`,`inverted_timestamp`),
  
KEY `userdetails_torrents` (`owner`,`name`),
  
KEY `inverted_timestamp` (`inverted_timestamp`),
  
KEY `mytorrents` (`owner`,`banned`),
  
FULLTEXT KEY `ft_search` (`search_text`,`ori_descr`)
ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- 
-- 
Dumping data for table `torrents`
-- 


houtslag 18th January 2011 13:20

Could someone please upload a picture of the working script?

Thanks:)

ddshow 19th January 2011 19:37

screens and sql repaired
 
5 Attachment(s)
hi i create a demo site and i repaired sql

http://seedzone.altervista.org ""demo""

if you have oder errors post here and if i can i fix it.


All times are GMT +2. The time now is 05:12.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.