Feb 24th, 2012, 2:34 PM
Update: I had to tweak the code from Ben's initial post a bit.
I tried using an empty 2nd directive (the mode), but that threw back either error #300 or error #200. So then I tried to use no 2nd directive, still got an error. I ended up having to tell the 2nd directive, rather than being blank, to use "live". So my new code would be:
ft_api_init_form_page(10, "live", "namespace1");
Quote:ft_api_init_form_page()
This function calls probably looks something like:
ft_api_init_form_page(10);
or
ft_api_init_form_page();
depending on where in the form they are.
Change them to:
ft_api_init_form_page(10, "", "namespace1");
and
ft_api_init_form_page("", "", "namespace1");
respectively.
I tried using an empty 2nd directive (the mode), but that threw back either error #300 or error #200. So then I tried to use no 2nd directive, still got an error. I ended up having to tell the 2nd directive, rather than being blank, to use "live". So my new code would be:
ft_api_init_form_page(10, "live", "namespace1");