ClaytonL
Forum Replies Created
-
Could you guys try manually navigating to /wp-admin/upgrade.php after getting a 500 error on the login screen? For some reason after I upgrade wordpress, I get 500 errors on my admin panel until I manually navigate to the above file after a 500 error on log in. I’m curious if something about this plugin causes my problems. Thanks.
Forum: Plugins
In reply to: [All In One Favicon] Favicon Not DisplayingMember Shonu provided the fix in another thread. Worked for me.
Navigate to your Multisite:
/wp-admin/network/settings.php#upload_filetypes
add ICO as a file extension!Forum: Plugins
In reply to: [Broadcast] Blogs not listing in Broadcast boxI just wanted to come back and say thanks. That was the problem.
Forum: Plugins
In reply to: [Broadcast] Blogs not listing in Broadcast boxI appreciate the help. Not every plugin author would do that.
Unfortunately, I don’t think I can grant you access to this particular client’s website. I’m going to debug the code and see why I I’m getting an empty list of blogs. I’ll keep you posted.
Forum: Plugins
In reply to: [Broadcast] /blog/ questionObviously, this is a sub-domain setup.
You could put the following in your functions.php if you wanted.
remove_action( 'wp_head', 'googleanalytics'); if (!is_admin() && !is_user_logged_in()) { add_action('wp_head', 'googleanalytics'); }
Since this plugin is no longer in the mu-plugins folder, are some plugins running before the ‘plugins-url’ filter is added?
Thanks for the fix Egypt. Worked for us.
Forum: Plugins
In reply to: [Broadcast] [Plugin: ThreeWP Broadcast] Brodcast errorsRight, 1.18. Your PHP requirements are a bit ahead of Ubuntu’s packages.
Forum: Plugins
In reply to: [ShareThis: Free Sharing Buttons and Tools] Parse Error Upon UpdateI ftp’d into our site and changed that line to
$_stversion=7.0;
. That fixed it for us.Forum: Plugins
In reply to: [Broadcast] [Plugin: ThreeWP Broadcast] Brodcast errorsI was having the same problem as luba, only on 3.5.2. The problem was, wp_get_attachment_metadata() was returning an empty array for the pdf attachments on our site.
We solved it by making the following change to threewp-broadcast/AttachmentData.php:
Change
$metadata = wp_get_attachment_metadata($attachment_id); $rv->filename_base = basename( $metadata['file']);
to
$metadata = wp_get_attachment_metadata($attachment_id); $metadata['file']= $metadata['file'] ? $metadata['file'] : get_attached_file($attachment_id); $rv->filename_base = basename( $metadata['file']);
We ran into this issue too. May have to switch to the ‘Reloaded’ version of this plugin as the posts that kill us our contest posts, and could be selectively disabled.
Forum: Plugins
In reply to: [Simple Backup] Requires WP 3.3 for add_help_tab()Thanks. Could you delete this topic? Didn’t mean to leave my site’s details in there.
Forum: Fixing WordPress
In reply to: Limit on shortcodes?Ok, so I can still add more shortcodes of other types, but not more than 54 of the same shortcode.
Forum: Fixing WordPress
In reply to: Limit on shortcodes?I’ve tried stripping my shortcode function of everything but an echo statement, but the limit was still there.