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)

zacho56 17th March 2012 20:14

bump on that last question. line 2446 for me to

joeroberts 17th March 2012 22:09

are you using the included phpBB3 or did you put phpBB3 from the phpBB site on?

zacho56 17th March 2012 22:12

after i put the included one back on i get the error "Fatal error: Class 'user' not found in /home/wickedaw/public_html/phpBB3/install/index.php on line 247"

edit: nvm i fixed it with the userbb...but the eroor wasn;'t on line 247 it was on 493? that was weird

dandanch 19th March 2012 17:38

Hello, i'm trying to install the product on my windows pc and keep running into those errors in the image.
I tried the solutions in this thread but still the same...please help thanks.


http://i376.photobucket.com/albums/o...1/8c326659.png


Apache/2.2.22 (Win32) PHP/5.3.10
mysql version: 5.5.20
windows 7

joeroberts 19th March 2012 18:26

first one replace
PHP Code:

if(eregi("graphics.php",$_SERVER["PHP_SELF"])) die("You can't access this file directly"); 

with
PHP Code:

if(preg_match("/graphics.php/",$_SERVER["PHP_SELF"])) die("You can't access this file directly"); 

second one replace
PHP Code:

if(eregi("database.php",$_SERVER['PHP_SELF'])) die("You can't access this file directly"); 

with
PHP Code:

if(preg_match("/database.php/",$_SERVER['PHP_SELF'])) die("You can't access this file directly"); 

and third replace
PHP Code:

if (eregi("mysql.php",$_SERVER["PHP_SELF"])) die("You cannot access this file directly"); 

with
PHP Code:

if (preg_match("/mysql.php/",$_SERVER["PHP_SELF"])) die("You cannot access this file directly"); 

and the sql error I can not read

dandanch 19th March 2012 19:06

Here is the sql error below:
Quote:

Creating table addedrequests...
Error executing SQL Query -- phpMyAdmin SQL Dump -- version 2.11.9.4 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Aug 16, 2009 at 03:22 PM -- Server version: 5.0.75 -- PHP Version: 5.2.6-3ubuntu4.1 -- -- Database: `phpMyBitTorrent` -- -- -------------------------------------------------------- -- -- Table structure for table `torrent_addedrequests` -- 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 ;
Error ID:
Error Message:
Thank you for the quick reply.

joeroberts 19th March 2012 19:14

please go into your data base threw phpmyadmin and make sure your putting this in a empty data base

dandanch 19th March 2012 20:11

yes its empty, it says No tables found in database.

also i'm getting this error as well.
http://i376.photobucket.com/albums/o...1/00b9c8b6.png

joeroberts 19th March 2012 20:45

it means you need to make include/configdata.php chmod 777 for install
that is Y you can not install data base.

dandanch 19th March 2012 23:00

Ok, I just changed the permissions and still getting the same error. Any more ideas on what it could be?


All times are GMT +2. The time now is 01:29.

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