CyberOto
Forum Replies Created
-
That is why you are installing cache plugin – to obey the CPU limit on shared hosting. The alternative is VPS =]
About comments – there is an option when the page cache is purged and regenerated. Check the bottom of Page Cache options.
Regards,
Forum: Plugins
In reply to: [W3 Total Cache] it causes problems in config.phpHi,
You can check permissions of the file/folder via FTP client or if you have cPanel via File Manager.
About malware – this could be JavaScript embedded in some of your files/database. Good lead is if there is a PHP base64_encode function added somewhere in your files/database. If this is not up to you to check, find some guy/gal that is more involved in programming/WP to do the check for you.
Just for precaution – change all your passwords for your site.
Regards,
Forum: Plugins
In reply to: [W3 Total Cache] it causes problems in config.phpHi,
The W3TC is adding/removing one line that is telling WP that there is a cache enabled/disabled.
Check you permissions to the config file.
Regards,
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache – Status = not cached?Happy face. Have some news.
Found the bugger that was messing with W3TC proper working (in my case). One plugin have this line ‘@ob_start(“ob_gzhandler”);’ and after commenting it the W3TC start to cache all pages.
It worked in my case, please check and see if there is something similar that is trying to do GZIP compression for the HTML and share you findings.
Regards,
Forum: Plugins
In reply to: [W3 Total Cache] Deploy problemHi,
Go to wp-content/plugins/ folder and delete folder named w3-total-cache. Then go to admin and reinstall it.
Regards,
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache Enabled but no cachingHi,
check this thread – https://www.ads-software.com/support/topic/page-cache-status-not-cached
Some more info there
Hi,
You can try to add some very long caching number for disk and browser cache.
Regards,
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache – Status = not cached?Got the same issue. Partially fixed it by adding trailing slash to the perma links structure.
Now I have some of mine pages cached, but not all. Weird.
Regards,
Forum: Plugins
In reply to: [Acunetix Secure WordPress] Missing file in 2.0.2Hi Majmar21
Try to clear browser cache.
Regards,
Forum: Plugins
In reply to: [Acunetix Secure WordPress] Missing file in 2.0.2Quick workaround is to download 2.0.1 and 2.0.2 and copy files from 2.0.2 archive over the 2.0.1 then upload the new merged folder and activate the plugin.
Still got some issues like:
Can't connect to server [110]. If the problem persists please continue at Website Defender.
but that I can live on =]
Regards,
Forum: Plugins
In reply to: [Author: WP Symposium] [0.55.1] Fixes for some missing translationsHi Simon,
Just checked 0.56 (backtracked in previous version too) and found:
ajax\symposium_forum_functions.php
around line #1359 – underscore in text domain, instead of dash:original
$html .= __("You replied", "wp_symposium")." ".symposium_time_ago($topic->topic_date);
fixed
$html .= __("You replied", "wp-symposium")." ".symposium_time_ago($topic->topic_date);
symposium_profile.php
around line #221 – underscore in text domain, instead of dash:original
$html = __("Member not found, sorry", "wp_symposium");
fixed
$html = __("Member not found, sorry", "wp-symposium");
Keep up the good work!
Forum: Plugins
In reply to: [Author: WP Symposium] [0.55.1] Fixes for some missing translationsSilly meh =[
Found 4 more not well translated “by” statements.
Here goes:
\ajax\symposium_forum_functions.php
around line #1269 – missing translation for “by”modified to:
//CyberOto missing translation for "by" $html .= ", ".symposium_time_ago($dt)." ".__("by", "wp-symposium")." ".$reply->display_name;
around line #1272 – missing translation for “by”
modified to:
//CyberOto missing translation for "by" $html .= ", ".__("last one", "wp-symposium")." ".symposium_time_ago($dt)." ".__("by", "wp-symposium")." ".$reply->display_name;
around line #1320 – missing translation for “by”
modified to:
//CyberOto missing translation for "by" $html .= ", ".symposium_time_ago($dt)." ".__("by", "wp-symposium")." ".$display_name.".</em>";
around line #1324 – missing translation for “by”
modified to:
//CyberOto missing translation for "by" $html .= ", ".__("last one", "wp-symposium")." ".symposium_time_ago($dt)." ".__("by", "wp-symposium")." ".$display_name.".</em>";
Regards,