TeroSalminen
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Changes in lates update excludes?Please disregard, turned out to be nginx fastcgi-cache. Sorry ??
This is quite interesting. No new tables exist in database.
I have no ‘ig_es_db_version’, I do have ‘ig_es_current_version_date_details’ that has text-data as
a:2:{s:18:"es_current_version";s:6:"4.0.10";s:15:"es_current_date";s:19:"2019-03-24 07:53:27";}
Changing 4.0.10 to 3.5.18 does not generate new tables etc when updating from 3.5.18 to 4.0.10 so it’s obviously wrong place.Cqn I just create the ig_es_db_version? what should the exast data in it be?
Thanks, I think I got it. I excluded “element.js, googleTranslateElementInit” in js and preliminary test’s looks good.
Thanks @optimizingmatters for a great plugin!
- This reply was modified 6 years, 6 months ago by TeroSalminen.
Forum: Plugins
In reply to: [W3 Total Cache] Small PHP 7.2 Compatibility BugReplacing a line in “function get_replaced_urls()” seems to work:
Replace the line
if ( count( $this->_replaced_urls ) ) {
with
if ( $this->_replaced_urls && count($this->_replaced_urls) ) {
and test.at least my errors seems to have been gone.
Forum: Plugins
In reply to: [W3 Total Cache] Small PHP 7.2 Compatibility BugCould you please share the fix? (Coding is not an issue)
Would like to politely bump this too.
I found the root-cause, PHP’s libxml was broken. So no fault whatsoever of W3TC ??
Thanks for the support, this is solved!
It’s enabled and active as before update.
Forum: Plugins
In reply to: [Top 10 - WordPress Popular posts by WebberZone] PHP Illegal string offsetNo more errors, excellent work, thank you! ??
Forum: Plugins
In reply to: [Top 10 - WordPress Popular posts by WebberZone] PHP Illegal string offsetEdited, will wait a while and see if errors are gone.
Forum: Plugins
In reply to: [WP Updates Notifier] No More #update idOpen /wp-content/plugins/wp-updates-notifier/wp-updates-notifier.php and change line:
$message .= "\t" . sprintf( __( "Changelog: %s%s", "wp-updates-notifier" ), $data->url, "changelog/" ) . "\n";
to
$message .= "\t" . sprintf( __( "Changelog: %s%s", "wp-updates-notifier" ), $data->url, "#developers" ) . "\n";
Forum: Themes and Templates
In reply to: [ColorNews] Align menu to middle?Works like charm, thank you ??
Forum: Themes and Templates
In reply to: [Amplify] Plugins like Lightboxes no longer workEdit wp-content/themes/amplify/js/scripts.js
Change line 59 from
$('a[href*=#]:not([href=#])').click(function() {
to
$('a[href*="#"]:not([href="#"])').click(function() {
And test.
Eip? kest?!
It took a while to search it this morning but solution is simple. I’m assuming a fix-update to pop up pretty soon ??
The line 976
$img = new Securimage_ctf();
in plugins/si-contact-form/includes/class-fscf-process.php should be
$img = new Securimage_Captcha_ctf();
since the class Securimage_ctf does not exist anymore in captcha/securimage.php, it is replaced with class Securimage_Captcha_ctf