MyBB Community Forums

Full Version: site not loading give sql column how to fix
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
site not loading  give sql column how to fix

anyone how to fix let me know 

Thank you i am add here screen shot 

[Image: Screenshot_1394.png]
Are you using ABP User Map?

It looks like the field aum_hide was recently added but the upgrade query was slightly wrong.

If you are using the latest code including this fix: https://gitlab.com/ab-plugins/abp-user-m...26d4e53762
Then deactivate & reactivate the plugin.

If not, run the following query against your database (for example by using phpMyAdmin):
ALTER TABLE mybb_users ADD aum_hide TINYINT NOT NULL DEFAULT 0


And if after that you receive an error for aum_latlng being unknown run this query too:
ALTER TABLE mybb_users ADD aum_latlng VARCHAR(50) NULL
(2020-06-25, 08:08 PM)JordanMussi Wrote: [ -> ]Are you using ABP User Map?

It looks like the field aum_hide was recently added but the upgrade query was slightly wrong.

If you are using the latest code including this fix: https://gitlab.com/ab-plugins/abp-user-m...26d4e53762
Then deactivate & reactivate the plugin.

If not, run the following query against your database (for example by using phpMyAdmin):
ALTER TABLE mybb_users ADD aum_hide TINYINT NOT NULL DEFAULT 0


And if after that you receive an error for aum_latlng being unknown run this query too:
ALTER TABLE mybb_users ADD aum_latlng VARCHAR(50) NULL
 yeah got it sir .. i was just deactivate them its working ..

awesome guide from you about sql query  ..


Thank you so much