bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] errors on updateBased on your path I guess you run on a shared hosting solution. Which provider is it? Can you paste the session settings from phpinfo? Did you empty your session cache or try another browser?
Forum: Plugins
In reply to: [cformsII] Delete Tracking dataThese features were removed because of a possible SQL injection. As I plan to remove database tracking in the long run in favour of CFDB plugin, I did not fix the SQL injection but rather removed the features.
You can still delete a single entry on viewing it.
Forum: Plugins
In reply to: [cformsII] Cannot Update Form – Get Blank ScreenDoes this version fix your issue? https://github.com/bgermann/cforms2/archive/master.zip
Forum: Plugins
In reply to: [cformsII] errors on updateWhich update did you want to do (from which version to wich version)?
To me it seems like you are having problems with your PHP sessions in general.Forum: Plugins
In reply to: [cformsII] new bug after last updateThis will be fixed in version 14.13.2, but you should really update your PHP version as with versions that are not end of life this would not have happened!
Forum: Plugins
In reply to: [cformsII] Cannot Update Form – Get Blank ScreenPlease add your findings to the thread (and follow the instructions I gave there) https://wordpress.org/support/topic/am-i-missing-something-30/
I am sorry for this bug. It is fixed in the new version 14.13.1.
Forum: Plugins
In reply to: [cformsII] Could not instantiate wp_mail functionPlease update to cformsII 14.13. Then you will see the cause of the error “Could not instantiate wp_mail function.” I guess your provider changed the PHP mail() setup. Please use the “Check Email” plugin to check your setup.
Forum: Plugins
In reply to: [cformsII] am i missing something?I guess there is a PHP error. If you do not know how to show it:
https://codex.wordpress.org/Debugging_in_WordPress gives you an overview how to configure WordPress to show errors. Essentially you put
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_DISPLAY', true );into your wp-config.php file. The error should appear on the screen now.
Forum: Plugins
In reply to: [cformsII] am i missing something?Which cformsII version do you use?
Forum: Plugins
In reply to: [cformsII] PHP Fatal error: eregi()You seem to be using the old cformsII version from delicious:days. That version is not supported anymore and has serious security issues. It does not support PHP 7, which accounts for your error.
This forum is about my fork of cformsII, which is available at https://wordpress.org/plugins/cforms2
Please upgrade to this version if you want PHP 7 compatibility.
Forum: Plugins
In reply to: [cformsII] Help, we cant delete the plugin without affecting the siteSomething on your page creates a Reveal modal view that is not displayed by default. Search for “reveal-modal” in the HTML source of your homepage. That is where cformsII is used.
You have to find out how this modal view is generated. It is either hard coded in the theme or generated by a plugin.
Forum: Plugins
In reply to: [cformsII] Help, we cant delete the plugin without affecting the siteDid you read through the “Debugging in WordPress” article and set the given defines? That should enable error messages. Then reproducing the blank page should show an error. I am trying to help you, but if you do not set the things up as instructed, I cannot help you.
We have to find the error cause together, then I can tell you how to get the plugin removed. I guess there is something on your page (most probably in your theme) calling a cformsII function that is not available on deactivating it. But to locate that call, you have to get the error message.
Forum: Plugins
In reply to: [cformsII] Help, we cant delete the plugin without affecting the sitehttps://codex.wordpress.org/Debugging_in_WordPress give you an overview how to configure WordPress to show errors. Essentially you put
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_DISPLAY', true );in your wp-config.php file. The error should appear on the screen now.
Forum: Plugins
In reply to: [cformsII] Help, we cant delete the plugin without affecting the siteA blank page means a fatal PHP error. Do you know how to have a look at it?