You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With help from here, I got the first two working. The third, references avatars, does not work.
`SQL Error:
1054 - Unknown column 'a.id_attach' in 'field list'
Query:
SELECT u.id_member, u.avatar, a.id_attach, a.filename, a.file_hash, a.width, a.height FROM smfbb_members u LEFT JOIN PREFIX_attachments a ON (a.id_member=u.id_member AND id_msg=0) WHERE u.avatar != '' OR a.id_attach IS NOT NULL`
The last one "1054 - Unknown column 'a.id_attach' in 'field list'" is not letting me create a column because it has a period within it. I can create 'id_attach' but not "a.id_attach.' Should I push through the process with quotes or do something else? It's also listing two databases, _attachments and _members.
Using this command:
[code]ALTER TABLE smfbb_members
ADD COLUMN a.id_attach INT NOT NULL;[/code]
I am upgrading from SMF 2.0 and this appears to be an issue with MyBB 1.8.37. This appeared to be an issue previously but it has come back up.
See thread on MyBB community.
How was this resolved in previous versions? I would like to fix this.
The text was updated successfully, but these errors were encountered: