megamurmulis
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache 2.9.3 – REST API broken / Site Health errorTested
w3-total-cache-2.9.4-rc.1.zipin ~17 sites = IWP/iwp-client working ok..Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache 2.9.3 – REST API broken / Site Health errorI can confirm that
IWP/iwp-clientcommunication still has same issues with bothv2.9.3orv2.9.4-beta.1– when either of these plugins are active (could be more):gravity-formswp-reviews-plugin-for-google- (really old theme)
construction
- This reply was modified 2 months, 2 weeks ago by megamurmulis. Reason: added more info
Nope, had a trouble logging in to HelpDesk, so haven’t created a ticket..
I overwrote those old files using this bundle: https://curl.se/ca/cacert.pem
1.IWP
2. uploaded on every WP website moddediwp-clientplugin (via IWPManage -> Plugins & Themes -> Install+[x] Overwrite, if plugins already exist)Forum: Fixing WordPress
In reply to: Checkmarks disappeared (6.9 issue?)This problem is cause by 2 things:
1. WP now by default hides checkbox styling for Firefox:-webkit-appearance:none;but checked style uses a svg that is invalid:
= this will work on newer version as they will ignore the /” part,input[type=checkbox]:checked::before{ content:url("data:image/svg+xml; utf8,…")/''; }but FF 115 will fail to load this..
Manual solution (in your FF profile: userContent.css):
body input[type="checkbox"],
body input[type="radio"] {
-webkit-appearance: checkbox !important;
appearance: checkbox !important;
}Forum: Plugins
In reply to: [Contact Form 7] How to download version 5.6.4 helpPage link:
https://ww.wp.xz.cn/plugins/contact-form-7/advanced/
Direct link:https://downloads.wp.xz.cn/plugin/contact-form-7.5.6.4.zipForum: Plugins
In reply to: [Slash Admin] Fix for Fatal Error with WP 6.1Update v3.8.1 confirmed to work ok..
(I guess was dueget_settingsbeing called in__construct()while class instanced oninit– thus preplugins_loadedcall)Sounds like same issue as this:
https://ww.wp.xz.cn/support/topic/big-log-files-fatal-error-in-backend-add-log-purge/Latest update (
v1.8.27) seems to improve things (less memory required for log file reading)If you still experience problems:
a) you can delete big log files manually from:/wp-content/uploads/sucuri/,
b) or use that plugin to delete them automatically every week..For now – something like this should help:
https://github.com/megamurmulis/sucuri-log-cleanup (use zip from Release page)
Can be deployed & installed via IWP – runs every7days, check viaadmin_init..This..
At the moment forced to add lots of rules in email client to automatically delete such emails..Forum: Plugins
In reply to: [Direct Stripe] Beta tests resultsTried various error situations – seems many not handled (not showing anything, gif just keeps spinning)..
Enter bad card:
4000000000003220400/Bad Request https://api.stripe.com/v1/payment_methods Response: {"error": {"code": "card_declined", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined. Your request was in live mode, but used a known test card.", "param": "", "type": "invalid_request_error"}}=> should show some error messages to user..
—
– top line too low in fieldset – maybe add:
.ds-element.in-form fieldset legend{top: -8px;}
—Forum: Plugins
In reply to: [Social Share Icons & Social Share Buttons] WTF…AGAIN???Problem: some files are in incorrect path:
/analyst/analyst/= should have been just one folder..Fix:
1. Navigte on FTP to:/wp-content/plugins/ultimate-social-media-plus/analyst/analyst/
2. Move the contents (files and folders) to the parent folder:
So they are in:/ultimate-social-media-plus/analyst/*
(as include looks for it there:require_once 'analyst/main.php';)
—
<b>Resolved in:</b> v3.2.1- This reply was modified 6 years, 10 months ago by megamurmulis. Reason: clearer phrasing
- This reply was modified 6 years, 10 months ago by megamurmulis.
Forum: Plugins
In reply to: [Shortcoder — Create Shortcodes for Anything] Last Updated: 1 year agov4.0.1 = working ok..
—
Typo in plugin (“shortcoder.php”) description text: “exceuted” => “executed”..Forum: Plugins
In reply to: [Shortcoder — Create Shortcodes for Anything] Last Updated: 1 year ago@rajatgavri – version v4.0.1 with the fix isn’t out yet..
Until then – You can either apply fix manually / disable plugin (via FTP)..Note: If your site is down due “Fatal Error” = you will need FTP access to edit that line of code..
Forum: Plugins
In reply to: [Shortcoder — Create Shortcodes for Anything] Last Updated: 1 year agoVersion 4.0 causes Fatal Error (or Error 500) on PHP <5.4:
(dueempty(): Can’t use function return value in write context)Fix:
FILE: shortcoder/admin/sc-admin.php LINE: 248 public static function save_shortcode(){ - if( empty( trim( $p[ 'sc_name' ] ) ) ){ + if( ! trim( $p[ 'sc_name' ] ) ){Forum: Plugins
In reply to: [Contact Form 7] Error 500 ajax wpcf7Not true how? You can easily verify this yourself..
When using newer CF7 (like 4.3.x) on older WP (like v3.9.9) – you will get message:
Contact Form 7 4.3.1 requires WordPress 4.2 or higher. Please update WordPress first.Note:
– create, edit, display form on frontend = all working ok;
– but when form is submitted – AJAX POST request will fail.What happens next depends on your server config:
You either get a non-descripticError 500or if you have Debug/Error logging enabled – you can see actual error instead ofError 500:Fatal error: Call to undefined function wp_json_encode() in wp-content/plugins /contact-form-7/includes/controller.php on line 97..
Solution:
If updating to WP 4.1+ is not possible then:
a) use older CF7 version;
b) or you can just add missing functions using a fix plugin:You will need to copy 3 functions from:
wordpress-4.1.8.zip/wordpress/wp-includes/functions.phpwp_json_encode _wp_json_sanity_check _wp_json_convert_stringSample plugin:
http://pastebin.com/urhmsP9k