Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > BT.Manager (phpMyBitTorrent)
Reply
  #101  
Old 19th March 2012, 23:36
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
you getting the configdata.php error or the sql error?

If your getting the sql error can you go into phpMyAdmin and run this query and tell me if it gives a error and what it is?

Code:
CREATE TABLE `torrent_addedrequests` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `requestid` int(10) unsigned NOT NULL default '0',
  `userid` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `pollid` (`id`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM ;
__________________
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
  #102  
Old 19th March 2012, 23:56
dandanch dandanch is offline
Senior Member
 
Join Date: Mar 2012
United States
Posts: 17
Default
ok, i ran that query and there was no error..i now see a new table. so i'm guessing it's the configdata.php..and if its the permissions i tick modify,read & execute, read, write.
Reply With Quote
  #103  
Old 20th March 2012, 00:33
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
just make sure you set the include folder and to configdata.php to both be 777
__________________
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
  #104  
Old 20th March 2012, 00:53
dandanch dandanch is offline
Senior Member
 
Join Date: Mar 2012
United States
Posts: 17
Default
joeroberts my mistake, I didn't edit the file with my db info sorry. Now I'm getting those errors in the following steps:

Click the image to open in full size.
Reply With Quote
  #105  
Old 20th March 2012, 01:35
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
those errors wont hurt you just turn off deprecation errors notices in your server.
__________________
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
  #106  
Old 20th March 2012, 02:04
dandanch dandanch is offline
Senior Member
 
Join Date: Mar 2012
United States
Posts: 17
Default
i'm getting a ton of errors, should i still turn off the error display?

Strict standards: Resource ID#37 used as offset, casting to integer (37) in C:\VertrigoServ\www\include\db\mysql.php on line 484

Strict standards: Resource ID#37 used as offset, casting to integer (37) in C:\VertrigoServ\www\include\db\mysql.php on line 482

Deprecated: Function eregi() is deprecated in C:\VertrigoServ\www\language\english.php on line 749

Strict standards: Resource ID#16 used as offset, casting to integer (16) in C:\VertrigoServ\www\include\db\mysql.php on line 484

Click the image to open in full size.
Reply With Quote
  #107  
Old 20th March 2012, 02:08
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
there is a fix posted for the
Strict standards: Resource ID#37 used as offset, casting to integer (37) in C:\VertrigoServ\www\include\db\mysql.php on line 484


let me find it


[EDIT]----------------------------------------------------------
here yea go
http://www.bvlist.com/general/7736-p...ror-fixes.html
__________________
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
  #108  
Old 20th March 2012, 03:45
dandanch dandanch is offline
Senior Member
 
Join Date: Mar 2012
United States
Posts: 17
Default
Thanks joeroberts, Those fixed most of the errors the only ones that remain are:

Quote:
Deprecated: Function eregi() is deprecated in C:\VertrigoServ\www\language\english.php on line 749

Strict standards: Resource ID#47 used as offset, casting to integer (47) in C:\VertrigoServ\www\include\db\mysql.php on line 518

Strict standards: Resource ID#47 used as offset, casting to integer (47) in C:\VertrigoServ\www\include\db\mysql.php on line 522
Now when trying to install phpbb3 at first before fixing those errors i would get a white screen but now its giving me a error:

Quote:
Fatal error: Class 'user' not found in C:\VertrigoServ\www\phpBB3\install\index.php on line 247
Thanks for your help.great support.
Reply With Quote
  #109  
Old 20th March 2012, 03:51
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
I well look at the first 3 errors but here is the fix for the fatal error
open sitename/phpBB3/install/index.php and change
$user = new user();
to
$user = new userbb();

Bump: change in \language\english.php on line 749
PHP Code:
if (!eregi("admin.php",$_SERVER["PHP_SELF"])){ 
to
PHP Code:
if (!preg_match("/admin.php/",$_SERVER["PHP_SELF"])){ 
and in \include\db\mysql.php
make line 518
PHP Code:
                        while($this->rowset[(int)$query_id] = @mysql_fetch_array($query_id)) 
and make line 522
PHP Code:
                                $result[] = $this->rowset[(int)$query_id]; 
__________________
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
The Following User Says Thank You to joeroberts For This Useful Post:
dandanch (20th March 2012)
  #110  
Old 20th March 2012, 04:24
dandanch dandanch is offline
Senior Member
 
Join Date: Mar 2012
United States
Posts: 17
Default
Im installing phpbb3, im in the database configuration part.. just what too be clear before click next.

Database type:would just be mysql?

Prefix for tables in database:should i keep that phpbb_ or torrent?

Database server port:should i make that 3306 or just keep blank?

Database server hostname or DSN:that should be localhost?
Reply With Quote
Reply

Tags
gold , phpmybittorrent , release

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
What is the best release AT THE MOMENT ? fen7azy Yuna Scatari Edition (YSE) 5 5th February 2010 21:09
[xBTiT]HACK - Gold silver torrents by Losmi bewithuu2 xBTiT 0 31st January 2010 12:28
New Release but not version joeroberts BT.Manager (phpMyBitTorrent) 5 9th January 2010 22:44
Release bad torrentID The Analyzer Yuna Scatari Edition (YSE) 2 29th November 2008 16:40
Final release? icecore Yuna Scatari Edition (YSE) 2 16th August 2008 17:54



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