Osclass forums
Support forums => General help => 3.7.x => Topic started by: Nirav_radia on December 30, 2016, 04:24:19 pm
-
I am trying to access my admin panel but sometime it's not loading :(
Error log :
[30-Dec-2016 17:07:48 Asia/Kolkata] PHP Fatal error: Call to a member function numRows() on a non-object in /home/macularmetrics/public_html/oc-includes/osclass/model/Admin.php on line 63
[30-Dec-2016 17:21:25 Asia/Kolkata] PHP Fatal error: Call to a member function numRows() on a non-object in /home/macularmetrics/public_html/oc-includes/osclass/model/Admin.php on line 63
or sometime its taking long time to load.
PFA
Help really appreciated.
Thanks
-
Please search here before posting.
I hope this helps you out:
http://forums.osclass.org/general-help/fatal-error-call-to-a-member-function-numrows()-on-a-non-object-in-oc-includes/
-
In oc-includes/osclass/model/Admin.php replace lines 61-67 from
$return = $this->dao->query('SHOW COLUMNS FROM ' . $this->getTableName() . ' where Field = "b_moderator" ');
if( $return->numRows() > 0 ) {
$this->setFields( array('pk_i_id', 's_name', 's_username', 's_password', 's_email', 's_secret', 'b_moderator') );
} else {
$this->setFields( array('pk_i_id', 's_name', 's_username', 's_password', 's_email', 's_secret') );
}
to
$this->setFields( array('pk_i_id', 's_name', 's_username', 's_password', 's_email', 's_secret', 'b_moderator') );
-
Similar problems also from others using Godaddy hosting.
-
Thanks for your help . But probem is still there.
In oc-includes/osclass/model/Admin.php replace lines 61-67 from
Code: [Select]
$return = $this->dao->query('SHOW COLUMNS FROM ' . $this->getTableName() . ' where Field = "b_moderator" ');
if( $return->numRows() > 0 ) {
$this->setFields( array('pk_i_id', 's_name', 's_username', 's_password', 's_email', 's_secret', 'b_moderator') );
} else {
$this->setFields( array('pk_i_id', 's_name', 's_username', 's_password', 's_email', 's_secret') );
}
to
Code: [Select]
$this->setFields( array('pk_i_id', 's_name', 's_username', 's_password', 's_email', 's_secret', 'b_moderator') );
I tried this but same problem.
I am able to login directly on listing page
http://********.com/oc-admin/index.php?page=items
So I think there is a problem in oc-admin dashboard & Osclass Market area.
-
I don't get it. Did you try MY suggestion:
http://forums.osclass.org/general-help/fatal-error-call-to-a-member-function-numrows()-on-a-non-object-in-oc-includes/