DFC005
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP] Pretty Permalinks not workingWe do use W3 Total Cache and Varnish setup. Perhaps it’s causing issues?
Forum: Plugins
In reply to: [AMP] Pretty Permalinks not workingAhhh yes, I was. I have now removed the manual insertion.
Permalinks are custom structure:
/%postname%-%post_id%/Forum: Plugins
In reply to: [AMP] Pretty Permalinks not working# BEGIN W3TC Page Cache core <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTP:Accept-Encoding} gzip RewriteRule .* - [E=W3TC_ENC:_gzip] RewriteCond %{HTTP_COOKIE} w3tc_preview [NC] RewriteRule .* - [E=W3TC_PREVIEW:_preview] RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} ="" RewriteCond %{REQUEST_URI} \/$ RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle) [NC] RewriteCond %{HTTP_USER_AGENT} !(iPhone|iPod|Android|BB10|BlackBerry|webOS|IEMobile/7\.0|IEMobile/9\.0|IEMobile/10\.0|MSIE\ 10\.0|iPad|PlayBook|Xoom|P160U|SCH\-I800|Nexus\ 7|Touch) [NC] RewriteCond "%{DOCUMENT_ROOT}/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}" -f RewriteRule .* "/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}" [L] </IfModule> # END W3TC Page Cache core # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressThat are the only ReWrite rules in my .htaccess
Forum: Plugins
In reply to: [AMP] Pretty Permalinks not workingNo one else facing this problem? I’ve tried re-saving Permalinks in the settings and the new version doesn’t resolve the issue.
A problem with my .htaccess perhaps?
http://www.zerohanger.com/hogan-puts-contract-talks-on-hold-3703/amp/
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Import comments no longer worksHmmm, on closer inspection, perhaps it is a cronjob issue.
Let me monitor for another day or so and I’ll let you know.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Import comments no longer worksAs far as I’m aware.
I have run the crontest via the Show Cron Test Results on the Help/Support page and it suggests there is no problem.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Import comments no longer worksImporting comments manually seems to work. It’s just not doing it automatically.
And it was doing it a few weeks ago.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Import comments no longer worksUPDATE: I’m an idiot, the option to import comments for a particular account is under the Advanced tab.
But, my pages are setup correctly it seems and they still aren’t importing any comments.
Seem to have the same problem as this thread: https://wordpress.org/support/topic/import-facebook-comments-stopped
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Import Facebook Comments stoppedAhhhh, it’s under “Advanced”. Has it always been there? Perhaps I’m just a bit slow… HAHA.
Anyway, so it looks like it’s setup correctly then, it’s simply not importing comments. So, same problem as you.
I haven’t made any changes to my hosting in the last few months.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Import Facebook Comments stoppedI’ve checked the Enable “Comments Import” in the settings section but I’m not seeing the option to import comments under the Show Settings for a particular account.
This seems to have been removed/stopped working in a recent update?
Forum: Plugins
In reply to: [W3 Total Cache] PHP Warning: BrowserCache.php on line 191I was able to suppress this error from happening by changing the following. Doesn’t seem have had any adverse side effects (yet!).
Change Line 191 in BrowserCache.php from…
if (trim($exception) && preg_match('/' . $exception . '/',$test_url))to…
if (trim($exception) && preg_match('/' . preg_quote($exception, '/') . '/',$test_url))Forum: Plugins
In reply to: [W3 Total Cache] PHP Warning: BrowserCache.php on line 191That’s a shame. I found my error_log was around 20gig the other day, filled with the above error.
Might have to have quick look myself into the issue.
Forum: Plugins
In reply to: [W3 Total Cache] PHP Warning: BrowserCache.php on line 191I’m having the same issue here.
Did either of you find a resolution?
Same issues here. Also excerpt not working.
Forum: Plugins
In reply to: [Broadcast] Force broadcast to blogI use the Admin Javascript plugin.
Then in the Admin jQuery JavaScript textbox, I add the following code…
$('#plainview_sdk_broadcast_form2_inputs_checkboxes_blogs_1').attr('checked',true) $( "#plainview_sdk_broadcast_form2_inputs_checkboxes_blogs_1" ).click(function() { return false; }); $('#plainview_sdk_broadcast_form2_inputs_checkboxes_blogs_1').attr('readonly',true)This forces all blogs to be broadcasted to the parent blog. And also makes it readonly so users can’t uncheck it.