Seems something went wrong in migration. Try this:Manard wrote: Tue Jan 17, 2023 9:44 am I just disabled the extension, the fatal error keeps appearing
In the table "phpbb_user_notifications" there are 45 rows that refer to "gfksx.thanksforposts.notification.type.thanks"
Maybe deleting them or replacing gfxsx with naguissa would remove this fatal error?
Code: Select all
UPDATE phpbb_user_notifications SET notification_type_name = 'naguissa.thanksforposts.notification.type.thanks' WHERE notification_type_name LIKE 'gfksx.thanksforposts.notification.type.thanks'
Code: Select all
UPDATE phpbb_user_notifications SET item_type = 'naguissa.thanksforposts.notification.type.thanks' WHERE item_type LIKE 'gfksx.thanksforposts.notification.type.thanks'
Code: Select all
UPDATE phpbb_user_notifications SET item_type = 'naguissa.thanksforposts.notification.type.thanks_remove' WHERE item_type LIKE 'gfksx.thanksforposts.notification.type.thanks_remove'
Manard wrote: Tue Jan 17, 2023 10:56 am I changed the name of the field which is different and just ran these two SQL queries in the table
andCode: Select all
UPDATE phpbb_user_notifications SET item_type = 'naguissa.thanksforposts.notification.type.thanks' WHERE item_type LIKE 'gfksx.thanksforposts.notification.type.thanks'
I have also deleted these two rows in the table "phpbb_notification_types"Code: Select all
UPDATE phpbb_user_notifications SET item_type = 'naguissa.thanksforposts.notification.type.thanks_remove' WHERE item_type LIKE 'gfksx.thanksforposts.notification.type.thanks_remove'
Since these changes, the fatal errors have not come up
Thank for your very much for your help
Yes, these two rows exist in the tableAbout deleting it from phpbb_notification_types table, have you checked that naguissa.xxxxxx ones exist?
yesNaguissa wrote: Tue Jan 17, 2023 9:07 ampeyman974 wrote: Fri Jan 13, 2023 9:33 am like previous message created table and dont show this error message but in acp dont show setting of this extension! and extension dont work
SQL ERROR [ mysqli ]
Table 'forum_thanks' doesn't exist [1146]
SQL
SELECT MAX(tally) AS max_post_thanks FROM (SELECT post_id, COUNT(*) AS tally FROM forum_thanks GROUP BY post_id) t
BACKTRACE
FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()
Seems extension is not correctly installed. Do you have access to database?
This will force execution of installation/migration script:
Naguissa wrote: Wed Feb 16, 2022 2:25 pm Seems any kind of weirdness with migration, not carrying old notifications.
Try, with latest version:
1) Disable extension
2) Execute this in database (SQL command):3) Re-enable extensionCode: Select all
DELETE FROM phpbb_migrations where migration_name like '%naguissa%';
ErrorNaguissa wrote: Wed Jan 18, 2023 6:37 amThis will force execution of installation/migration script:
Naguissa wrote: Wed Feb 16, 2022 2:25 pm Seems any kind of weirdness with migration, not carrying old notifications.
Try, with latest version:
1) Disable extension
2) Execute this in database (SQL command):3) Re-enable extensionCode: Select all
DELETE FROM phpbb_migrations where migration_name like '%naguissa%';
Your installations has a different prefix, correct SQL is:peyman974 wrote: Wed Jan 18, 2023 6:30 pm
Error
SQL query:
DELETE FROM phpbb_migrations where migration_name like '%naguissa%'
MySQL said: Documentation
#1146 - Table 'phpbb_migrations' doesn't exist
Code: Select all
DELETE FROM forum_migrations where migration_name like '%naguissa%';
sql query worked but after disable extension then enable extension forum show this message again:Naguissa wrote: Wed Jan 18, 2023 6:58 pmYour installations has a different prefix, correct SQL is:peyman974 wrote: Wed Jan 18, 2023 6:30 pm
Error
SQL query:
DELETE FROM phpbb_migrations where migration_name like '%naguissa%'
MySQL said: Documentation
#1146 - Table 'phpbb_migrations' doesn't exist
Code: Select all
DELETE FROM forum_migrations where migration_name like '%naguissa%';
"forum" instead "phpbb".
It's possible to add it, but it's a new feature. Just as code is now it's not possible to do so just changing config options.halil16 wrote: Sat Feb 18, 2023 3:59 pm How about that request over there:
https://www.phpbb.com/customise/db/exte ... pic/241946
Frankly, I'm not interested in Tapatalk or average score indicators right now. I'm trying to make the likes simpler this way. can you help me?