Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > BT.Manager (phpMyBitTorrent)
Reply
  #1  
Old 16th January 2010, 21:59
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default cleanup error
Code:
Fatal error: Call to undefined function multiscrape() in /var/www/pub/include/cleanup.php on line 463  on footer
Reply With Quote
  #2  
Old 16th January 2010, 23:31
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
replace
Code:
        if ($autoscrape) multiscrape();
with
Code:
        if (isset($autoscrape)) multiscrape();
__________________
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:
Giorgatzelos (25th August 2012)
  #3  
Old 10th February 2010, 23:37
cop1976's Avatar
cop1976 cop1976 is offline
Senior Member
 
Join Date: May 2009
United Kingdom
Posts: 30
Default
I have this error:

Fatal error: Call to undefined method dbal_mysqli::sql_numrows() in /var/www/include/cleanup.php on line 430

and this is line 430:

PHP Code:
if ($db->sql_numrows($res) > 0) { 
__________________
http://bvlist.com/images/avatars/signaturepics/sigpic5839_1.gif
Reply With Quote
  #4  
Old 11th February 2010, 00:01
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
open phpBB3/includes/db/dball.php
find
PHP Code:
    function sql_num_queries($cached false)
    {
        return (
$cached) ? $this->num_queries['cached'] : $this->num_queries['normal'];
    } 
and add after
PHP Code:
        function sql_numrows($query_id 0)

        {

                if(!
$query_id)

                {

                        
$query_id $this->query_result;

                }

                if(
$query_id)

                {

                        
$result = @mysql_num_rows($query_id);

                        return 
$result;

                }

                else

                {

                        return 
false;

                }

        } 
__________________
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
  #5  
Old 11th February 2010, 01:45
cop1976's Avatar
cop1976 cop1976 is offline
Senior Member
 
Join Date: May 2009
United Kingdom
Posts: 30
Default
I don't have a file dball.php

I have db2.php , but i don't have those lines:

PHP Code:
 function sql_num_queries($cached false)
    {
        return (
$cached) ? $this->num_queries['cached'] : $this->num_queries['normal'];
    } 
__________________
http://bvlist.com/images/avatars/signaturepics/sigpic5839_1.gif
Reply With Quote
  #6  
Old 11th February 2010, 03:15
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
then add just before
PHP Code:
    function sql_fetchfield($field$rownum false$query_id false
__________________
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
  #7  
Old 12th February 2010, 13:18
cop1976's Avatar
cop1976 cop1976 is offline
Senior Member
 
Join Date: May 2009
United Kingdom
Posts: 30
Default
Quote:
Originally Posted by joeroberts View Post
then add just before
PHP Code:
    function sql_fetchfield($field$rownum false$query_id false
Where exactly i have to write this code?
I write before that i don't have that file and in the db2.php i don't have those lines.

PHP Code:
function sql_num_queries($cached false)
    {
        return (
$cached) ? $this->num_queries['cached'] : $this->num_queries['normal'];
    } 
Well, I found, but when I added this code, I now have that errors:

Code:
[phpBB Debug] PHP Notice: in file /var/www/include/functions_phpBB3.php on line 294: include_once(./phpBB3/common.php) [function.include-once]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /var/www/include/functions_phpBB3.php on line 294: include_once() [function.include]: Failed opening './phpBB3/common.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')
[phpBB Debug] PHP Notice: in file /var/www/include/functions_phpBB3.php on line 295: include_once(./phpBB3/includes/functions_user.php) [function.include-once]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /var/www/include/functions_phpBB3.php on line 295: include_once() [function.include]: Failed opening './phpBB3/includes/functions_user.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')
[phpBB Debug] PHP Notice: in file /var/www/include/functions_phpBB3.php on line 296: include_once(./phpBB3/includes/constants.php) [function.include-once]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /var/www/include/functions_phpBB3.php on line 296: include_once() [function.include]: Failed opening './phpBB3/includes/constants.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')

Fatal error:  Call to undefined function user_delete() in /var/www/include/functions_phpBB3.php on line 303
__________________
http://bvlist.com/images/avatars/signaturepics/sigpic5839_1.gif
Reply With Quote
Reply

Tags
cleanup , error

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
help error, http error and invalid passkey thereal Torrent Strike 0 9th April 2009 02:07
YSE PRE 7 Cleanup fix by kp380lv kp380lv Yuna Scatari Edition (YSE) 4 15th November 2008 22:37
error cleanup.php tunad Torrent Strike 2 14th November 2008 13:28
URGENT !! Parse error: syntax error sharpe Torrent Strike 8 24th September 2008 15:10



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