I’m running debian jessie(8.1), nginx 1.9.6, php5.6-fpm and mariadb 10.18. Latest wordpress 4.3.1 as well with buildersociety’s light theme I customized for myself.
I noticed in editing w3-total-cache/pub/js/widget.js (inactive), that its first five lines are:
jQuery(function() {
var ajaxurl = window.ajaxurl;
jQuery('.w3tc-widget-ps-view-all').click(function() {
window.open('admin.php?page=w3tc_dashboard&w3tc_test_pagespeed_results&_wpnonce=' + jQuery(this).metadata().nonce, 'pagespeed_results', 'width=800,height=600,status=no,toolbar=no,menubar=no,scrollbars=yes');
modifying the window.open(‘admin.blabla string’) doesn’t change anything.
It used to be that I could write css, save the changes, clear all cache and check out the changes on the site, now instead I have to open the clear all caches in a new window. Clicking clear all caches used to keep me on my current /wp-admin/whatever page.
My webserver used to be on apache/nginx(serverpilot.io’s installed version) and I don’t remember w3tc doing this during that time. Maybe something’s wrong with the nginx config on my new server?
My site(https://inb4sales.com) isn’t that fantastic, but isn’t slow either https://tools.pingdom.com/fpt/#!/efpmbZ/https://inb4sales.com.
It’s hosted in California with Digitalocean 512MB plan.
Plugins I’m running are:
Disable google fonts
Tablepress
Tablepress responsive stuff
Easyazon core
Easyazon pro
W3tc community(in edge mode)
Google xml sitemaps
Disabling the plugins didn’t change anything.
I tried changing my nginx location conf from:
location / {
try_files $uri $uri/ /ec/index.php?q=$uri&$args;
}
location / {
# try_files $uri $uri/ /ec/index.php?q=$uri&$args;
try_files $uri $uri/ /ec/index.php;
}
but that doesn’t change anything either.
Thank you for your help.