olivers
Forum Replies Created
-
this will be fixed properly in v11.6, out soon. among other jQuery related incompatibilities.
Forum: Fixing WordPress
In reply to: Form items to page then print.you can use the success message feature to create an elaborate and embellished feedback message showing all input etc.
see the cforms help page re: the use of {custom variables} etc.
Forum: Plugins
In reply to: Add new stye to CFormsyou can either copy it to the styling dir or into your custom cforms folder (see cforms help page on CSS/styling)
Forum: Plugins
In reply to: [Plugin: cformsII – contact form] Attachments have no idyou need to turn on db tracking so cforms can associate a unique ID
—
Please also visit the cforms forum »Forum: Plugins
In reply to: [Plugin: cformsII – contact form] Variables not passing?A URL always helps.
My guess: you changed the field name to something else thanYour Name
, you should use{something-else}
accordingly.Forum: Plugins
In reply to: [Plugin: cformsII – contact form] Blank error and success messagestry to enable link-love again and see if that makes a difference, or turn off Ajax.
Forum: Plugins
In reply to: [Plugin: cformsII – contact form] Blank error and success messagesthat link points to ebay…
Forum: Plugins
In reply to: [Plugin: cformsII – contact form] Blank error and success messagesURL(s) would be great to see the error.
Does it work when ajax is turned off?Forum: Plugins
In reply to: Please Help: cformsII captcha not showingA URL would be helpful.
Forum: Plugins
In reply to: Fatal error: Cannot redeclare cforms_activate()ok, thanks. so i think this topic is then resolved.
Forum: Plugins
In reply to: Fatal error: Cannot redeclare cforms_activate()the same error (redeclare..) ?
do you have a non standard WP setup (wp-content / plugin folders) ?do you possibly still have an old (corrupt) cforms_settings entry in wp_options?
did you deactivate and reactivate the plugin?
Forum: Plugins
In reply to: Fatal error: Cannot redeclare cforms_activate()Found the solution, which goes into the next release.
Quick fix:
Edit cforms.php and replace this line [close to the top line~57]
register_activation_hook( __FILE__, 'cforms_activate' );
with this:
register_activation_hook( basename(__FILE__), 'cforms_activate' );
Forum: Plugins
In reply to: Fatal error: Cannot redeclare cforms_activate()Still odd. I can’t see the connection between the ‘db_version’ record and the err displayed.
My wp_options show:
db_version = 9872
and it works just fine. To my knowledge, the err is a result of the cforms.php file being loaded twice, hence the ‘redeclare’ err.
EDIT: what’s your PHP MEM setting?
Forum: Plugins
In reply to: Fatal error: Cannot redeclare cforms_activate()do you have another copy/version of cforms in your plugins folder?
I can’t think of a reason why WP would try to load cforms.php twice and thus cause the redeclare conflict…Forum: Plugins
In reply to: Fatal error: Cannot redeclare cforms_activate()this is the first time I’m hearing about this, and then two times in a row…jeez.
not sure why this comes up, these are the orig lines, can you confirm?:
register_activation_hook( __FILE__, 'cforms_activate' ); function cforms_activate() { cforms_init(); require_once(dirname(__FILE__) . '/lib_activate.php'); }
did you also manipulate the cforms setting in SQL? If so, not a good idea, this will very likely break cforms.
cforms can adjust (the vital settings) to new hosts simply by deactivating and reactivating.