Mirko
Forum Replies Created
-
Forum: Plugins
In reply to: [Redis Object Cache] Code 500 on pluginlistI’m sorry, there is no information, which would be helpfull, only logging messages from other things… and of course:
_2016-09-17T20:30:23+02:00 JennyUndMirko [Sat Sep 17 20:30:23 2016] [error] [client 192.168.0.123] (104)Connection reset by peer: FastCGI: comm with server “/php-fpm-handler” aborted: read failed, referer: https://www.yellowstoneaussies.de/wp-admin/index.php _os
ir_2016-09-17T20:30:23+02:00 JennyUndMirko [Sat Sep 17 20:30:23 2016] [error] [client 192.168.0.123] FastCGI: incomplete headers (0 bytes) received from server “/php-fpm-handler”, referer: https://www.yellowstoneaussies.de/wp-admin/index.php(Sorry for the “Durcheinander”/garbage – this is a copy from a multitail history… which works “quite fine” with ncurses and tmux >.< ).
And similar errors – the cause of the 500 I think.
FYI WP Redis works. They say I should delete all transient options, I did (and tried redis cache after that). Everything works but the plugin list I think.
PHP Memory limit is 300MB.
- This reply was modified 8 years, 2 months ago by Mirko.
Forum: Plugins
In reply to: [Redis Object Cache] Code 500 on pluginlistFYI no helpful information in wordpress debug.log…
Forum: Plugins
In reply to: [Redis Object Cache] Code 500 on pluginlistIn the apache-log I get:
mirko [Sat Sep 17 20:31:33 (104)Connection reset by peer: FastCGI: comm with server “/php-fpm-handler” aborted: read failed, referer: https://www.yellowstoneaussies.de/wp-admin/index.php
mirko [Sat Sep 17 20:31:33 FastCGI: incomplete headers (0 bytes) received from server “/php-fpm-handler”, referer: https://www.yellowstoneaussies.de/wp-admin/index.phpI tried disabling the Zend opcache. But now I’m quite clueless… the php.ini settings are quite common I think:
memory_limit = 300M
max_input_time = 360
max_execution_time = 4000
output_buffering = 16384
post_max_size = 96M
upload_max_filesize = 64M(I tried without output_buffering).
Forum: Plugins
In reply to: [Autoptimize] Move CSS to inline – no html optimization?!Thanks for clarifying!
Forum: Plugins
In reply to: [Autoptimize] Move CSS to inline – no html optimization?!Thanks! I’m currently testing out, if the pageloadtime (and scores on the multiple performance measuring services… it’s like an addiction sometimes *g*) will decrease if I inline the main stylesheet into the page itself. But I think you are right, so far this does not seem to be a good idea.
Please check his website out if you speak a little bit french. His solution is the only one that really works as far as I have been able to research.
function register_jquery() { if (!is_admin()) { wp_deregister_script('jquery-core'); wp_register_script('jquery-core', 'https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js', TRUE, '2.2.2'); wp_enqueue_script('jquery-core'); wp_deregister_script('jquery-migrate'); wp_register_script('jquery-migrate', 'https://cdn.jsdelivr.net/jquery.migrate/1.2.1/jquery-migrate.min.js', TRUE, '1.2.1'); wp_enqueue_script('jquery-migrate'); wp_deregister_script('jquery-ui'); wp_register_script('jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js', TRUE, '1.11.4'); wp_enqueue_script('jquery-ui'); } } add_action('wp_enqueue_scripts', 'register_jquery');
Attention: jQuery 2 dropped support for IE below 9. So you have to have some functionality to dynamically go back to the older jQuery, e.g. like that (this is code from my redis caching engine):
if (preg_match('/(?i)msie [5-8]/', $_SERVER['HTTP_USER_AGENT'])) { // if IE<=8 $content = str_replace('https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js', 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js', $content); }
Forum: Plugins
In reply to: [Use Google Libraries] Will this run ok on wordpress 4.2Just posting here to get notified when/if the plugin is getting updated.
@nate: I already got this in my config, maybe this is why the planned backups worked.
Just to add a positive message: The planned backup jobs DO work! Only starting through the interface is not working.
Same problem here:
Fehlender order nicht erwarteter HTTP response header:
date: Sat, 20 Feb 2016 00:18:37 GMT
server: Apache
set-cookie: PHPSESSID=(removed by me); path=/
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
pragma: no-cache
vary: Accept-Encoding
content-encoding: gzip
connection: close
content-type: text/html; charset=UTF-8Forum: Plugins
In reply to: [BJ Lazy Load] When I updated to 1.0 version, thumbnail display is not normalSame here. After updating to 1.0 some images inside the starting viewport get loading, some are not. If I scroll a minimum amount all pictures in the viewport get loaded.
I noticed another false behaviour, too: I’m using upprev. The images inside the upprev-box are getting loading right at the beginning of a page visit. The images inside could be lazy loaded because the images are only shown if the visitor scrolls about 70% down the page. But at the moment the page is loaded, the image-name is shown an the site of the page (and is hidden if I scroll a minimum amount down…).
Downgraded to 0.75 for now, first impression is important ??
Forum: Plugins
In reply to: [upPrev] Showing always the same posts (Caching issue?)Thanks for suggesting, but the developer version cannot be used with yarpp (or I didn’t find the right option) and I have to use yarpp to use a custom template.
Forum: Plugins
In reply to: [Yoast SEO] Update notification shown every few reloadsThanks, I didn’t notice this is a recurring request. As far as I know for now your solution works, great – thanks again!
Forum: Plugins
In reply to: [List category posts] User gets logged outp.s. it only happens when switching to the catlist-page and back – not on other pages, the settings in general are correct.
Forum: Plugins
In reply to: [a3 Lazy Load] Issue with PaginationI have the same problem.
https://www.yellowstoneaussies.de/blog/?lcp_page1=10#lcp_instance_1Is not loading any images if using a3 lazy load – I’m using bj lazy load at this time: It has the same problem but I can disable the plugin using a filter:
if ( ( is_category(‘BLOG’) ) || (strpos($_SERVER[“HTTP_HOST”] . $_SERVER[“REQUEST_URI”], ‘www.yellowstoneaussies.de/blog/’) !== false )) {
add_filter(‘bj_lazy_load_run_filter’, ‘__return_false’);
}I would prefer using a3 lazy load, the spinning effect is quite nice.