My site was just upgraded from Dolphin 7.0.6 to 7.0.7 to 7.0.8. Now, I receive the following message:
Database error in (my site)
Query:
INSERT INTO `sys_ip_members_visits` SET `MemberID` = 'number', `From`='other number', `DateTime`=NOW()
Mysql error: Unknown column 'MemberID' in 'field list'
Found error in the file '/home/xxxx/public_html/member.php' at line 675.
Called 'db_res' function with erroneous argument #0.
I've found the error. Unfortunately, I have no clue what to do with it. Any advice would be welcome.
[3] => Array
(
[file] => /home/xxxx/public_html/member.php
[line] => 675
[function] => db_res
[args] => Array
(
[0] => INSERT INTO `sys_ip_members_visits` SET `MemberID` = 'number', `From`='other number', `DateTime`=NOW()
Thank you in advance.
JPAres1 |
The error says the column MemberID was not found in the table sys_ip_members_visits https://www.deanbassett.com |
So far, so good. Thank you Deano! Appreciate your help! |