Looking through existing code, seems the problem would lie within one of the stored procs.
I looked through the .sql scripts for 1.9.3 and do not see any misspellings of Ignore versus Ignored when referencing the tables, so I'm wondering if you modified the database after installation?
To help you track it down, load up SQL Studio and run this against your YAF database:
SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%yaf_IgnoredUser%'
AND ROUTINE_TYPE='PROCEDURE'
It will bring up all stored procs that might reference that table. From that list, open them up individually and take a look around - you're looking for references to the table itself that might have been misspelled accidentally.
If you see any that reference the table as Ignored, fix them to Ignore instead of Ignored and you should be good.
Edited by user
14 years ago
|
Reason: I kan spel gud