spbriggs
Forum Replies Created
-
Forum: Plugins
In reply to: [AJAX Thumbnail Rebuild] javascript error for me on 3.8I was able to fix this error on my site by making the following change at line 181 of ajax-thumbnail-rebuild.php
Replace this code
$attachments =& get_children( array( 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => -1, 'post_status' => null, 'post_parent' => null, // any parent 'output' => 'object', ) );
with this
$args = array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post_status' =>'any', 'post_parent' => null ); $attachments = get_posts($args);
Edit: fix might be even simpler : https://github.com/breiti/ajax-thumbnail-rebuild/issues/5
Forum: Plugins
In reply to: [My Blog Guest] Can't initialise pluginGot it working now. Rather counterintuitively there are two login boxes in the plugin admin screen and it’s the second one I needed to click.
Forum: Plugins
In reply to: [RSS Desktop Notifications] Popup won't closeWorks fine now. Thanks for the prompt fix.
I had the problem as you described. Are you able to access the web server logs? I was getting an error in there about the MySQL server going away which lead me to deduce the changes suggested above. Maybe you’ve got something different happening
I’ve had similar problems. Here’s what I did to fix
Edit php.ini
set:max_execution_time=1000
Edit MySQL config
Increase max_allowed_packet (I went up to 48meg – almost certainly overkill)
I get a 404 when I click through to the “more info” page. Likewise, it doesn’t show in my menu structure.
I then go to the backend to edit the page (don’t actually edit or save it) and suddenly the link works. I have permalinks enabled on the sites. See https://www.fridayemails.com for example.
I’ve installed on a couple of sites and found the cookie policy page only appears if I first try to edit it in the backend. Is this a bug or did I just miss a bit in the installation instructions in my haste?
Great plugin otherwise. Perfect, easy way to deal with a stupid bit of legislation.