dsyd
Forum Replies Created
-
Forum: Plugins
In reply to: [Sharexy - Powerful Social Sharing Buttons] Error after installationMy client is also seeing this problem.
502 Bad Gateway when trying to get any content from the shuttle.sharexy.com domain.
Opajaap,
Just to let you know I figured out what was wrong.I had VI-8 (“Slideshow fullsize link”) set to “No link at all” and it needed to be set to “Lightbox”. Didn’t think to check that at first as I’m not using the Slideshow widget, I’m using the Photo of the Day widget.
Might help to have a note on that explaining that it also affects the POTD widget. Thanks again for your help and for the plugin.
Strange, I see standards mode. Hovering my mouse over the three boxes I see this (from left to right):
1. “Standards Compliance Mode” (Green tick)
2. “CSS Error: Error in parsing value for ‘filter’. Declaration dropped.” (Red cross)
3. “No JavaScript Errors” (Green tick)This is with version 1.1.9 of the Web Developer toolbar.
BTW that’s with Firefox 13.0.1, Chrome 19.0.1084.56 m, and IE 9.0.8112.16421.
Hi Opajaap,
That’s strange as I have “<!DOCTYPE html>” at the top of the page source and I had thought that HTML5 got rid of quirks mode. When I type this into the Firebug console:javascript:m=(document.compatMode=='CSS1Compat')?'Standards':'Quirks';window.alert('You are in ' + m + ' mode.');…it tells me I’m in standards mode. Same in Chrome and IE when I type it in the address bar.
I’m not sure what I should be looking for in terms of security settings. AFAIK, I’ve not done anything out of the ordinary.
Thanks again for your help!
Thanks Opajaap, that would be great if you could take a look. I’ve disabled Lightbox Plus and set the IX-A6 setting back to wppa.
The site’s here: http://progress.earthsharing.co.uk/ and the Photo of the Day widget about half way down the page on the right where it says “Archival Images”.
Hi Opajaap, I couldn’t figure it out either. I had IX-A6 set to wppa as it was by default. Nothing was happening – when I clicked the image I just got taken directly to the file. I checked to confirm that the wppa.js file was being included.
Using Lightbox Plus worked for me. But I don’t know how to get it showing the description for the image inside the Lightbox – is that possible?
Thanks for sharing the plugin.
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache – Status = not cached?This fixed it for me:
In .htaccess, I replaced…
# BEGIN W3TC Page Cache core <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^(.*\/)?w3tc_rewrite_test$ $1?w3tc_rewrite_test=1 [L] RewriteCond %{HTTP:Accept-Encoding} gzip RewriteRule .* - [E=W3TC_ENC:_gzip] RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} ="" RewriteCond %{REQUEST_URI} \/$ [OR] RewriteCond %{REQUEST_URI} (sitemap(_index)?\.xml(\.gz)?|[a-z0-9_\-]+-sitemap([0-9]+)?\.xml(\.gz)?) [NC] RewriteCond %{REQUEST_URI} !(\/wp-admin\/|\/xmlrpc.php|\/wp-(app|cron|login|register|mail)\.php|\/feed\/|wp-.*\.php|index\.php) [NC,OR] RewriteCond %{REQUEST_URI} (wp\-comments\-popup\.php|wp\-links\-opml\.php|wp\-locations\.php) [NC] RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|wordpress_\[a\-f0\-9\]\+|wordpress_logged_in) [NC] RewriteCond %{HTTP_USER_AGENT} !(W3\ Total\ Cache/0\.9\.2\.4) [NC] RewriteCond "%{DOCUMENT_ROOT}/wordpress/wp-content/w3tc/pgcache/%{REQUEST_URI}/_index%{ENV:W3TC_UA}%{ENV:W3TC_REF}%{ENV:W3TC_SSL}.html%{ENV:W3TC_ENC}" -f RewriteRule .* "/wordpress/wp-content/w3tc/pgcache/%{REQUEST_URI}/_index%{ENV:W3TC_UA}%{ENV:W3TC_REF}%{ENV:W3TC_SSL}.html%{ENV:W3TC_ENC}" [L] </IfModule> # END W3TC Page Cache corewith…
# BEGIN W3TC Page Cache core <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^(.*\/)?w3tc_rewrite_test$ $1?w3tc_rewrite_test=1 [L] #RewriteCond %{HTTP:Accept-Encoding} gzip #RewriteRule .* - [E=W3TC_ENC:_gzip] RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} ="" RewriteCond %{REQUEST_URI} \/$ [OR] RewriteCond %{REQUEST_URI} (sitemap(_index)?\.xml(\.gz)?|[a-z0-9_\-]+-sitemap([0-9]+)?\.xml(\.gz)?) [NC] RewriteCond %{REQUEST_URI} !(\/wp-admin\/|\/xmlrpc.php|\/wp-(app|cron|login|register|mail)\.php|\/feed\/|wp-.*\.php|index\.php) [NC,OR] RewriteCond %{REQUEST_URI} (wp\-comments\-popup\.php|wp\-links\-opml\.php|wp\-locations\.php) [NC] RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|wordpress_\[a\-f0\-9\]\+|wordpress_logged_in) [NC] RewriteCond %{HTTP_USER_AGENT} !(W3\ Total\ Cache/0\.9\.2\.4) [NC] RewriteCond "%{DOCUMENT_ROOT}/wordpress/wp-content/w3tc/pgcache/%{REQUEST_URI}/_index%{ENV:W3TC_UA}%{ENV:W3TC_REF}%{ENV:W3TC_SSL}.html%{ENV:W3TC_ENC}" -f RewriteRule .* "/wordpress/wp-content/w3tc/pgcache/%{REQUEST_URI}/_index%{ENV:W3TC_UA}%{ENV:W3TC_REF}%{ENV:W3TC_SSL}.html%{ENV:W3TC_ENC}" [L] </IfModule> # END W3TC Page Cache coreI think this means that my cached pages aren’t being gzipped, but at least now they are actually being cached and not regenerated each time.
Uncommenting these two lines, I get the “status: not cached” problem again:
#RewriteCond %{HTTP:Accept-Encoding} gzip #RewriteRule .* - [E=W3TC_ENC:_gzip]Thanks for the fix, it’s working again here.
The error I get is here:
jQuery(document).ready( function($) { function select2BlogStatFormat( blog ) { var formatted = blog.text.replace( /([^(]+)/, '<b>$1</b>' ); return formatted; } ===> jQuery( '#statsblog' ).select2( { formatResult: select2BlogStatFormat, formatSelection: select2BlogStatFormat } ); } );> jQuery( '#statsblog' ) [] > jQuery( '#statsblog' ).select2( { formatResult: select2BlogStatFormat, formatSelection: select2BlogStatFormat } ); TypeError: Object [object Object] has no method 'select2'Glad it’s not just me. I’m also using WordPress 3.4 and Jetpack 1.3.4. Everything’s working fine except the stats graphs. Stats graphs are showing on the dashboard, just not in the actual stats section.