Gateway Server Problems :(
it says in the last part of loading
cannot load module version data from DB
cannot load _PrivilegedIP Table
[Unknown query]
SQL Error State:01004, Native Error Code: 0, ODBC Error: [Microsoft][ODBC SQL Server Driver]String data, right truncation
[Unknown query]
Please i need your help//
Re: Gateway Server Problems :(
Do you have that table? _PrivilegedIP, if not create it.
Also check if you didn't deleted everything from _ModuleVersion or _ModuleVersionFile
PHP Code:
CREATE TABLE [dbo].[_PrivilegedIP] (
[IP1] tinyint NOT NULL ,
[IP2] tinyint NOT NULL ,
[IP3] tinyint NOT NULL ,
[IP4] tinyint NOT NULL ,
[IP5] tinyint NOT NULL ,
[IP6] tinyint NOT NULL ,
[IP7] tinyint NOT NULL ,
[IP8] tinyint NOT NULL
)
ON [PRIMARY]
GO