I've tried this module and just got a bunch of errors that shutdown my site. Is this working for anyone? Any examples of how it should be used? thanks.
I've tried this module and just got a bunch of errors that shutdown my site. Is this working for anyone? Any examples of how it should be used? thanks.
Comments
Comment #1
nedjoWorking on my testing. Please describe your errors.
To test:
* install and enable
* create a new 'page' node and set it to PHP type
* for body, put the following and then preview. You should get a rendered form.
Comment #2
jasonwhat commentedShuts down my whole site with this error:
Fatal error: Cannot redeclare form_clean_id() (previously declared in /home/mysite/public_html/drupal/includes/common.inc:1587) in /home/mysite/public_html/drupal/modules/backport/form.inc on line 1013
I'm not using standard 4.6, but a version before the forms change and have an ajax module running. Basically I tweaked it to have some 4.7 js features, but not use the new form api so I could use 4.6 modules. I guess I'm wondering if backport could help me span the gap, using both some 4.7 and 4.6 modules at once...is that it's purpose?
Comment #3
nedjoBecause you don't have 4.6, your code includes some of the functions introduced for 4.7, and so conflicts with this module.
Well, a small minority of 4.7 modules might work in 4.6 with backport. More likely, they will need some adjustments. Backport can be used to:
Comment #4
nedjoclosing.