Deleting Files Error

zipitshare1707

New Member
YetiShare User
Aug 14, 2012
85
0
0
Hi there i have been having a error message pop up every time i try and delete a file from the admin panel it keeps on saying
Database Error:
Unknown column 'adminNotes' in 'field list'
Last Query:
UPDATE file SET statusId = '3', adminNotes = '' WHERE id = '725'
I have had my host have a look at it and he said that my sql file is done correctly and its nothing to do with the files could you please help because i don't think it is deleting the files of my server properly and if i try and delete of my server i have no problem it just doesn't say what i want it to say.
 

adam

Administrator
Staff member
Dec 5, 2009
2,043
108
63
Hi,

It sounds like a column is missing within your db. Try applying the following on your database:

ALTER TABLE `file` ADD `adminNotes` TEXT NOT NULL;

It's part of the upgrade .sql file to v3.0 in that release but it looks like it's been missed on your install somehow.

Regards,
Adam.