frg
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache and CSS / JS Minify Cache Errorhad the exact same error as eric with wp 3.5.1 & W3TC 0.9.2.11 in minify auto mode.
Forum: Plugins
In reply to: [W3 Total Cache] Auto minify not workingsame here… ??
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] 3.0.1 completely brokenhi daniel,
did an update to 3.01, now i get errors:
– the backup hangs after
[28-Feb-2013 13:24:47 UTC] PHP Warning: putenv(): Warning: Cannot set environment variable 'TMPDIR' - it's not in the allowed list (setting: safe_mode_allowed_env_vars) in /customers/1/8/0/xxxxxx.org/httpd.www/w/wp-content/plugins/backwpup/inc/class-job.php on line 626
the tmpdir is empty except for index.php & .htaccess
in the backupdir i can find 128mb .zip.random files ans valid small .zip files of ~3% size of how they should be.– another thing i also recognized is that i can see the list of old logs but NOT the backup-files.
i hope that are only troubles of the new code & will be fixed soon ??
Forum: Plugins
In reply to: [Count per Day] [Plugin: Count per Day] Timeoutsthanks again for your answer,
“Current size of your counter table lv9w31_cpd_counter is 1.05 MB.”
yes, the script works, i switched off the ajax code (=no more timeouts!) & it still counts.
but again, to make my last question clear:
is there any difference in CdD′s ability to count, when i use a cache, but dont need the widget on my page – so have ajax counting off?
Forum: Plugins
In reply to: [Count per Day] [Plugin: Count per Day] Timeoutshi tom,
thanks for the quick answer!
yes, when i look at ..plugins/count-per-day/ajax.php?f=coun&page=27
i get “show===1967|getReadsAll===11489|…”i dont understand php, but is this ajax code only for to opionally show read on my page, which ich dont use, or is it also necessary for the counting mechanism in general, when i use a cache?
if it′s for this first option i just switch ajax counting off..
Forum: Plugins
In reply to: [Count per Day] [Plugin: Count per Day] TimeoutsAfter looking at other logs I have to add that also in cases when everything is fine (all page elements′ server status ok) ajax.php takes the longest time with +/- 3secs..
i guess i have to use this ajax count because i use W3TC as cache plugin.
yeah had similar glitches of “You do not have sufficient permissions..” and self de-activation after i did the requiered .htaccess updates. but then re-activatated & everything is fine now – i even have the feeling it works faster than ever!
webpagetest.org confirms that.
i m on wp 3.2.1..
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] PGcache not runningok – got it fixed. i swiztch from page cache disk (enhanced), which is recommended, to page cache disk (basic)..
still dont know why it didnt work..
hi ucero,
you seem to have solved it: it looks ok in the latest opera 11.50..WP 3.1.3 + W3TC 0.9.2.2 just works flawless – i just gave it a test ride.
https://foto.arcor-online.net/palb/alben/49/8355549/6264323639353066.jpg
@titusch: good point!
i am about to test the next “full” version 0.9.2.2..
let′s see ??Forum: Plugins
In reply to: [W3 Total Cache] WHEN IS THE UPDATE TO FIX THIS COMING? OH MY GOD… DAMNpraying to the author? ??
i also guess it′s b) cause frederick twittered he is in the process of testing out the beta version thoroughly before releasing within days.
here is a fix for version 0.9.2.1:
https://www.ads-software.com/support/topic/plugin-w3-total-cache-how-i-got-my-w3tc-working-with-minify-gzip& the development version Gary mentions seems to work out as well.
Forum: Plugins
In reply to: [W3 Total Cache] Reference to an incorrect file locationthe location is correct. check it with your other installs.. ??
later you may need this to get rid of minify/gzip problems:
https://www.ads-software.com/support/topic/plugin-w3-total-cache-how-i-got-my-w3tc-working-with-minify-gzipForum: Plugins
In reply to: [W3 Total Cache] CSS Bad file param format.or the short version here:
https://www.ads-software.com/support/topic/plugin-w3-total-cache-how-i-got-my-w3tc-working-with-minify-gzip
Addition by martinlbb (didnt try it yet [frg])
BTW, to avoid auto erasing of modified settings in /wp-content/w3tc/min/.htaccess after each Minify update, you can modify following file:
/wp-content/plugins/w3-total-cache/lib/W3/Plugin/Minify.php
At lines 1076 and 1085 and 1088 add ‘QSA,’Before:
$rules .= " RewriteRule ^w3tc_rewrite_test$ index.php?w3tc_rewrite_test=1 [L]\n"; if ($engine == 'file') { if ($compression) { $rules .= " RewriteCond %{HTTP:Accept-Encoding} gzip\n"; $rules .= " RewriteRule .* - [E=APPEND_EXT:.gzip]\n"; } $rules .= " RewriteCond %{REQUEST_FILENAME}%{ENV:APPEND_EXT} -f\n"; $rules .= " RewriteRule (.*) $1%{ENV:APPEND_EXT} [L]\n"; } $rules .= " RewriteRule (.*) index.php?file=$1 [L]\n";
After:
$rules .= " RewriteRule ^w3tc_rewrite_test$ index.php?w3tc_rewrite_test=1 [QSA,L]\n"; if ($engine == 'file') { if ($compression) { $rules .= " RewriteCond %{HTTP:Accept-Encoding} gzip\n"; $rules .= " RewriteRule .* - [E=APPEND_EXT:.gzip]\n"; } $rules .= " RewriteCond %{REQUEST_FILENAME}%{ENV:APPEND_EXT} -f\n"; $rules .= " RewriteRule (.*) $1%{ENV:APPEND_EXT} [QSA,L]\n"; } $rules .= " RewriteRule (.*) index.php?file=$1 [QSA,L]\n";