XF 2.3 Importing IPS 4 to XF 2.3 problem

Bob de Bouwer

Active member
Licensed customer
I'm trying to import from IPS 4 to XF 2.3, but i get an error and don't know what to do.
Hoping someone can help me!

Thanks

1776061381501.webp
 
Any idea where to find that? I'm looking, but i don't see the display order in IPS.
Check the values on IPB:
Code:
SELECT g_id, g_name, g_order
FROM core_groups;

if any of them is inconsistent (null, non numeric or empty) fix it by running this
SQL:
UPDATE core_groups
SET g_order = g_id
WHERE g_order IS NULL OR g_order = 0 OR g_order = '';

Also make sure SQL is not on strict mode.
 
Back
Top Bottom