rockyshark
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Tracking for Gravity Forms] No options from plugin after activationHi Nathan,
I have just installed in on WP 4.1.1, using GF Version 1.9.4
In the same boat – the plugin is enabled but I can’t see any of the options.
PHP 5.5.22 if that assists.
Thanks!
Think we might have found the problem:
In /download-monitor/js/jqueryFileTree/connectors/jqueryFileTreeDir.php
We changed everyrequire_once
torequire
Then changed line 42 to be
$_POST['dir'] = rtrim(urldecode($_POST['dir']),'/').'/';
That’s got it working here!
Forum: Plugins
In reply to: [Plugin: Twitter for WordPress] No public Twitter messagesAnd almost an hour later it’s still okay.
Might just need to upgrade WP guys. ??
Forum: Plugins
In reply to: [Plugin: Twitter for WordPress] No public Twitter messagesIt was playing up for me too (displaying tweets from November last year!) but I just upgraded to WP 2.8.2 and it’s working…
Forum: Plugins
In reply to: [Plugin: WP-Cumulus] Changing the fontExcellent – just what I’m looking for. Thanks! ??
Forum: Fixing WordPress
In reply to: Import 44mb xml fileI actually Managed to get my XML file down from 13 Mb to 300-odd Kb by going in and deleting all the comments marked as spam from the wp_comments table!
Backup your database, then run this inside the SQL window in phpmyadmin:
DELETE FROM wp_comments WHERE comment_approved = 'spam'
After that, worked a treat for me! ??
Forum: Fixing WordPress
In reply to: 400 Bad Request when trying to update permalinksI had the same trouble – setting up a brand new site – worked fine without using any permalink structure, but the minute I chose something (even one of the standard suggestions) it generated this error.
After much conversation with my hosting provider, it turned out that the htaccess file was writable (777), and when wordpress tried to update it, some other security setting on the server had a fit.
The fix – log into the file manager in cPanel or Plesk, change the permissions on your htaccess file to 644 (rw- r– r–) and all should be good.
Well, it was for me anyway!