Basicly muweb.php 44 line is $users_connected = $db->Execute("SELECT count(*) FROM MEMB_STAT WHERE ConnectStat='1'");
*Why Do You Get Error?
This means that in your Database [SQL Server] MuOnline database
is a problem.. There is'nt Table named MEMB_STAT or in that Table does not exists ConnectStat Field..
*Solving The Problem
There Are 2 Ways :
1)Create this Table:
--------------------------------------------------------------------------
open START>All programs>Microsoft SQL Server>Query analyzer..
HOST: . or localhost
open by Windows Authentication
In the Field Paste this code :
Code:
USE MuOnline
CREATE TABLE [MEMB_STAT] (
[memb___id] [varchar] (10) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[ConnectStat] [tinyint] NULL ,
[ServerName] [varchar] (10) COLLATE Chinese_PRC_CI_AS NULL ,
[IP] [varchar] (15) COLLATE Chinese_PRC_CI_AS NULL ,
[ConnectTM] [smalldatetime] NULL ,
[DisConnectTM] [smalldatetime] NULL
) ON [PRIMARY]
GO
--------------------------------------------------------------------------
2) Use other Database.
Just download any your server's other server files and restore DB..
[Best Condition because i think you will get another error after this error]
Good Luck Mate.. Don't listen to them ^^ above, i mean.. those are just real newbies..