Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   BT.Manager (phpMyBitTorrent) (http://www.bvlist.com/forumdisplay.php?f=23)
-   -   [PMBT2.0.X]Bug in forum intergration (http://www.bvlist.com/showthread.php?t=1869)

joeroberts 24th January 2009 06:15

[PMBT2.0.X]Bug in forum intergration
 
This is a sql error in the footer while viewing the forum threw integration.
the forum is closing the data base connection before needed and this is causing trouble with PMBT cleanup script
To fix this Open phpBB3/includes/functions.php
find
PHP Code:

    // Close our DB connection.
    
if (!empty($db))
    {
        
$db->sql_close();
    } 

and replace with
PHP Code:

    // Close our DB connection.
    
if (!empty($db))
    {
        if (!
defined('BT_SHARE'))$db->sql_close();
    } 



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

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