Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   BT.Manager (phpMyBitTorrent) (http://www.bvlist.com/forumdisplay.php?f=23)
-   -   phpMyBitTorrent 2.0.4 Gold Release (http://www.bvlist.com/showthread.php?t=3462)

joeroberts 19th March 2012 23:36

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 ;


dandanch 19th March 2012 23:56

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.

joeroberts 20th March 2012 00:33

just make sure you set the include folder and to configdata.php to both be 777

dandanch 20th March 2012 00:53

joeroberts my mistake, I didn't edit the file with my db info sorry. Now I'm getting those errors in the following steps:

http://i376.photobucket.com/albums/o...1/09d93fba.png

joeroberts 20th March 2012 01:35

those errors wont hurt you just turn off deprecation errors notices in your server.

dandanch 20th March 2012 02:04

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

http://i376.photobucket.com/albums/o...1/5cfe6735.png

joeroberts 20th March 2012 02:08

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

dandanch 20th March 2012 03:45

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.

joeroberts 20th March 2012 03:51

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]; 


dandanch 20th March 2012 04:24

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?


All times are GMT +2. The time now is 22:07.

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