Great you like the package. Seems like the installation failed to create the database tables. Please use the following sql to install the table into your sql server.
CREATE TABLE MediaProtectLog( LogId bigint IDENTITY(1,1) NOT NULL, MediaId int NOT NULL, Path nvarchar(500) NOT NULL, Protected bit NOT NULL, UserName nvarchar(150) NOT NULL, UserIP nvarchar(50) NOT NULL, LogDateTime datetime NOT NULL, PRIMARY KEY([LogId]))
Invalid object name 'MediaProtectLog'
Hi Richard,
First up, Kudos on this fantastic package! Easy to use and easy for our client to use :)
I have an issue though, when i click on Media root folder I am getting the error:
Invalid object name 'MediaProtectLog'
Any ideas?
Kenny
Hi Kenny,
Great you like the package. Seems like the installation failed to create the database tables. Please use the following sql to install the table into your sql server.
CREATE TABLE MediaProtectLog(
LogId bigint IDENTITY(1,1) NOT NULL,
MediaId int NOT NULL,
Path nvarchar(500) NOT NULL,
Protected bit NOT NULL,
UserName nvarchar(150) NOT NULL,
UserIP nvarchar(50) NOT NULL,
LogDateTime datetime NOT NULL,
PRIMARY KEY([LogId]))
Thanks,
Richard
is working on a reply...