gingerdog
Forum Replies Created
-
Forum: Reviews
In reply to: [Blog Designer] Old version of plugin infects site with remote malware@anevins yes, you’re correct. I’ve amended my review a little… thanks 🙂
Forum: Plugins
In reply to: [Simple Cache] github version != 1.5.5Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache and PHP 7.0.9Thanks all – this fixed it for me too (another dotdeb user).
Thank you 🙂
I’m seeing this too :
[18-Jul-2016 12:34:42 UTC] PHP Fatal error: Call to undefined function get_plugin_data() in /var/www/htdocs/wp-content/plugins/tiny-compress-images/src/class-tiny-plugin.php on line 36Forum: Plugins
In reply to: [Comet Cache] Fatal Error with CometCacheTry removing the wp_options for zencache (e.g.
wp-cli.phar –path=/var/www/whatever option delete zencache_options
That fixed it allowing me to then install / use it.
Forum: Plugins
In reply to: [Comet Cache] Fatal Error with CometCacheI have one site that had the same problem.
Forcefully deleting (rm -Rf’ing) the wp-content/plugins/zencache directory seemed to not break the site however….
Forum: Fixing WordPress
In reply to: Image Issues: CroppingGiven you’ve hopefully got the right permissions, I’d suggest that it’s probably not cropping because you’re missing the PHP GD extension (often called php5-gd).
Forum: Plugins
In reply to: [Google News Sitemap Generator] Google News Sitemap Generator – Fatal ErrorThere is a second <? within the code; that’s what is probably breaking the admin panel.
$_SERVER[‘DOCUMENT_ROOT’] would probably be the right place to put it –
ie.. editing the line which is $xmlFile = …. to be
$xmlFile = $_SERVER[‘DOCUMENT_ROOT’] . ‘/google-news-sitemap.xml’;
$fp = fopen($xmlFile, ……..You could use PHP’s strip_tags().
i.e. $xmlOutput .= htmlspecialchars(strip_tags($row->post_title));(I’m suggesting the permalink field as this seems to be the only one which isn’t escaped with htmlspecialchars… perhaps I’ll rewrite it.
I suspect your permalink has a character in it which annoys your XML parser.
If you still had that sitemap, running something like the unix xmllint over it would identify the field in question and allow you to ensure the problem is solved.
(well, it mostly works ok – there a performance optimisation you’ll probably want to do to the plugin to stop it using DATEDIFF and instead just compare against a string date…
It works OK for a customer of mine who has approx 100,000 posts