BugfreeSystems
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Captcha] Problems with W3 Total CacheHi @websource,
I disabled the hide/show option by css. The captcha is now always visible, but the problem remains on pages which are cached with W3 Total Cache.
You can test It here:
1. https://www.dosoni-vt.de/kontakt/ Caching on this page is disabled
-> Captcha is working fine
2. https://www.dosoni-vt.de/test/ Caching on this page is enabled
-> Captcha is working only the first time the page is called. If I reload the page the Calculation stays always the same, but the result is wrong. Even if I call the page in a different browser, the calculation stays always the same, but the result is wrong.Forum: Plugins
In reply to: [WC Captcha] Multiple captchas not working on same pageHi @websource,
I have checked this again and multiple forms with captcha works, but not with W3 Total Cache activated. With page caching the calculations are not changing, event if the browser cache is cleared and pages are reloaded.Forum: Plugins
In reply to: [WC Captcha] Multiple captchas not working on same pageNote: W3 Total Cache is deactivated on pages with forms, but the problem still exists.
Forum: Plugins
In reply to: [WC Captcha] Problems with W3 Total CacheNote: As an interim solution, I have deactivated the cache on the pages with forms.
Forum: Plugins
In reply to: [WC Captcha] PHP errorHi @webcource,
today I updated wc_captcha to version 1.2.1.
The php error is still there.
The cause is, that setcookie() defines a cookie to be sent along with the rest of the HTTP headers. Like other headers, cookies must be sent before any output from your script (this is a protocol restriction). This requires that you place calls to this function prior to any output, including <html> and <head> tags as well as any whitespace, see: https://stackoverflow.com/questions/2658083/setcookie-cannot-modify-header-information-headers-already-sentThis would be useful.
Thank’s for your quick reply and the advice.
I switched WP debug mode off, deactivated BPS, activated BPS and run setup wizard again. Now the warnings are gone =)
Forum: Plugins
In reply to: [10Web Social Post Feed] Can’t create FeedI have the same problem.
My version is 1.1.29 and WP is 5.5.3Forum: Plugins
In reply to: [WC Captcha] PHP errorHi,
I have the same problem on my site.
Greetings, TJ
- This reply was modified 4 years, 4 months ago by BugfreeSystems.
Forum: Plugins
In reply to: [Download Manager] JS problem in IE11Hi,
the problem is the parameter initialization in the function call.
My fix:
notify: function(message, type, position) { if (typeof type == "undefined" || type == '') type = 'info'; if (typeof position == "undefined" || position == '') position = 'top-right';
floatify: function(html, position){ if (typeof position == "undefined" || position == '') position = 'top-right';
function wpdm_iframe_modal(url, closebutton) { if (typeof closebutton == "undefined" || closebutton == '') closebutton = false;
Forum: Plugins
In reply to: [Password Protect Wordpress] Autologin with referer IP addressIt’s me again,
with a solution for the feature request “autologin with specific referer host name(s)”.
Now it is possible to autologin into the blog frontend, if the user is comming from a specific website.
I extended the function doHeadActions() in file wp-content/plugins/password-protect-wordpress/pluginCallbacks.php after this lines of code:
function doHeadActions() { $isEnabled = $this->_settings()->fetchSetting( "enabled" )->getValue(); if( $isEnabled == "off" ) { //protection is disabled return; }
with my new code:
// autologin by referer host $referer = @$_SERVER['HTTP_REFERER']; $checkRefererHosts = array('www.source.net'); if (isset($referer)) { $aParsedUrl = parse_url($referer); if (isset($aParsedUrl['host'])) { $refererHost = $aParsedUrl['host']; if (in_array($refererHost, $checkRefererHosts)) { //refresh logged in cookies $this->setCookie(); return; } else { $isLoggedIn = apply_filters( $this->_slug( "isLoggedIn" ), false ); if (false === $isLoggedIn ) { do_action( $this->_slug( "displayLoginPage" ) ); exit; } } }
It works fine, but It’s not update safe.
Couldn’t it be a new feature in further releases of the plugin?
The referer hosts (checkRefererHosts) should be defined in settings of the plugin.Greets TJ
Forum: Plugins
In reply to: [Social] social causes JS-Error "tinyMCE is not defined"Thanks for the note.
I found out that the problem had nothing to do with the content in the post. In revisions of the post were formatting-markup from MS Word.
So I deleted the revisions and the related metadata and the JS problem was gone =)
Forum: Plugins
In reply to: [Plugin: WP Captcha-Free] Invalid Data: Please go back and try again.I’m using WordPress 3.1. In order to bring it to work with wp-captcha-free v0.7 I had also to modify the the following two lines in wp-content/plugins/captcha-free.php:
(78) document.getElementById(‘commentform’).onsubmit = null;
document.getElementById(‘comment_form’).onsubmit = null;(93) document.getElementById(‘commentform’).onsubmit = gethash;
document.getElementById(‘comment_form’).onsubmit = gethash;