Fatal error in unregister.php

Trying to delete my test profiles in unregister.php i got this

 

 Fatal error: Call to undefined method BxWallDb::deleteEventCommon() in /home/sitenamee/public_html/demo/modules/boonex/wall/classes/BxWallResponse.php on line 68

Think i was done with the bugs but yet another one shows it face 

Quote · 22 Aug 2011

I had install AQB: Site's Wall mod  when i deleted the the BxWallDb.php from my site and upload dolphin one it work 

here is the AQB: Site's Wall mod file

switch($aParams['type']) {

            case 'id':

                $sWhereClause = "`id`='" . $aParams['object_id'] . "' ";

                $sLimitClause = 'LIMIT 1';

                break;

            case 'owner':

//--- AQB: Site's Wall ---//

                $sWhereClause = (!empty($aParams['owner_id']) ? "`owner_id`='" . $aParams['owner_id'] . "' " : "1 ") . (isset($aParams['filter']) ? $this->_getFilterAddon($aParams['owner_id'], $aParams['filter']) : '');

//--- AQB: Site's Wall ---//

                $sOrderClause = isset($aParams['order']) ? ' ORDER BY `date` ' . strtoupper($aParams['order']) : '';

                $sLimitClause = isset($aParams['count']) ? ' LIMIT ' . $aParams['start'] . ', ' . $aParams['count'] : '';                

                break;            

        }

 

and here is the dolphin one


        switch($aParams['type']) {

            case 'id':

                $sWhereClause = "`id`='" . $aParams['object_id'] . "' ";

                $sLimitClause = 'LIMIT 1';

                break;

            case 'owner':

                $sWhereClause = "`owner_id`='" . $aParams['owner_id'] . "' " . (isset($aParams['filter']) ? $this->_getFilterAddon($aParams['owner_id'], $aParams['filter']) : '');

                $sOrderClause = isset($aParams['order']) ? ' ORDER BY `date` ' . strtoupper($aParams['order']) : '';

                $sLimitClause = isset($aParams['count']) ? ' LIMIT ' . $aParams['start'] . ', ' . $aParams['count'] : '';                

                break;            

        }

Do you know how i can fix it know? so the wall mod work and the unregister.php

Thanks

Quote · 22 Aug 2011

anyone

Quote · 22 Aug 2011

You really must contact the author of the module.

I do not see anything in that code that would cause the error.

My guess is you have updated to 7.0.7 of dolphin. The wall module in this version of dolphin has changed. So the file BxWallDb.php included in the module is missing the function that is in the new version of the wall that is called by something in BxWallResponse.

The author needs to release a update to the module.


https://www.deanbassett.com
Quote · 22 Aug 2011

he fixed it you can download the new on 

Quote · 23 Aug 2011
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.