bonnerl
Forum Replies Created
-
Awesome, thanks.
Forum: Plugins
In reply to: [Facebook Feed Grabber] Error loading websiteSorry I haven’t responded. I’m not currently maintaining this plugin. I’m guessing by now you’ve either resolved this or moved on. Let me know if that isn’t the case.
+1
Forum: Plugins
In reply to: [Manual Image Crop] Many PHP errors!P.S. If you’re seeing these errors in a production environment then you should disable PHP’s “display_errors” setting. You should only be displaying errors like this in a development environment. In a production environment you should be logging these errors. If you want to pursue changing these settings then I suggest googling how to make these changes and/or talking to your hosting provider.
Forum: Plugins
In reply to: [Manual Image Crop] Many PHP errors!I’ve just downloaded this plugin in my dev environment and get the same thing. Without looking at the code I’m guessing that the developer isn’t properly accounting for default settings. This should go away after you save the settings.
To the developer: This plugin is exactly what I’m looking for and I would be happy personally fix this error and some others I noticed like it. Do you have this plugin in a Git repository?
Forum: Plugins
In reply to: [W3 Total Cache] Clearing Varnish cache from Dashboard not workingAre you forcing the user side or the admin over HTTPS?
Note that Varnish does not support caching HTTPS connections. (Reference Why no SSL?)
Forum: Plugins
In reply to: [Facebook Feed Grabber] Date above postHi Weilo,
To display the date above the message you would move
$output .= $date;(line 602) to be below the following code at line 540-542.// See if we should display who posted it if ( $limit == false ) $output .= $from;The resulting code should look like,
// See if we should display who posted it if ( $limit == false ) $output .= $from; // Add date to output. $output .= $date;Hope that helps!
Forum: Plugins
In reply to: [The Events Calendar] Widget Displaying Past EventWe’re not currently running any caching plugins in our production environment.
Forum: Plugins
In reply to: [W3 Total Cache] Site still showing "?repeat=w3tc" on multisite home URLsWhat’s the latest regarding this update?
Forum: Plugins
In reply to: [WP Activity Log] WordPress Database ErrorI will have to schedule updating this on production with my manager. I will follow up here when we have done so and let you know how it goes.
Thanks,
-LucasForum: Plugins
In reply to: [WP Activity Log] PHP Warning: Invalid ArgumentExcellent. Thanks for being on top of things!
-Lucas
Forum: Plugins
In reply to: [The Events Calendar] Settings menu is not appearing.Well I feel somewhat less then intelligent at the moment.
We had all the “Hide the following settings tabs on every site” options selected at the network level in our test environment.
With those options selected it was still trying to display the tribe activation page (aka thanks for upgrading) and subsequently it was saying we didn’t have permissions to view the activation page.
Forum: Plugins
In reply to: [Quick Cache (Speed Without Compromise)] Cached page hackedI have not used this plugin before but my first suggestion would be to log into the admin and check the comments section and make sure you don’t have spam residing there.
Forum: Plugins
In reply to: [W3 Total Cache] Site still showing "?repeat=w3tc" on multisite home URLs+1
My company is looking to implement this and have installed it on our test server where we’re still seeing this problem. We’re on the latest version of W3TC and WordPress and this is still a problem.
Forum: Plugins
In reply to: [Facebook Feed Grabber] php Errors displaying on iPhone "classic" viewI can’t think of anything. Google doesn’t really reveal anything except for one comment on PHP’s website which wouldn’t fix the problem; if anything it will create an error down the line that would have to be accounted for.
Does the problem happen on the newer iPhones?