XF 2.0 Issue with importer

Jake B.

Well-known member
I'm sure that I'm just doing something wrong, but running into this issue with the importer:

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.

The contents on this page are loaded from renderBaseConfigOptions.

I've got validateBaseConfig returning true, renderStepConfigOptions returning an empty template currently (which is what the xf2 importer has), getSteps is defined and the function for the defined step exists and is just dumping out $state, but nothing happens. No error in console
 
Is validateBaseConfig being called? If not, I'm guessing your inputs aren't named as expected (in a "config" array -- there must always be at least 1 value of that passed through when doing based config).

If validatedBaseConfig is being called and it's returning a truthy value, then the code can only go onto the step config stuff.
 
If not, I'm guessing your inputs aren't named as expected (in a "config" array -- there must always be at least 1 value of that passed through when doing based config).

Yep, that was it! had a typo in my field name which was being looped confg instead of config... oops!
 
Top Bottom