Gerald Cox
Forum Replies Created
-
Forum: Plugins
In reply to: [SlimStat Analytics] started to crash websiteUnfortunately, my site is an intranet so it wouldn’t be possible for me. I don’t really need the plugin so it’s disabled; however, I’d be happy to send you any info that would help you troubleshoot.
Forum: Plugins
In reply to: [SlimStat Analytics] started to crash websiteI found that my website wouldn’t load today. After removing my last posts and deactivating every plugin, I found that WP Slimstat was the problem. Of course, it was the last plugin on the list. Nothing has changed on the website in weeks I figure it’s a cache thing or it pulls a shared script that is no longer available. No biggie, I don’t use it so I’ll leave it off.
TrishaM, did you ever resolve your issue?
Welp, I was wrong. WP-Cache wasn’t the problem. It only resolved the issue momentarily due to the space it freed up. We were hitting the limit of the storage slotted to us on our account. 781MB in thumbnail cache! Clearing up the space really did fix the problem. My captchas is back in action.
My images seemed to stop appearing after I installed WP-Cache. Deactivating WP-Cache did not fix the problem but it started working again as soon as I deleted WP-Cache.
Forum: Plugins
In reply to: WP-Cycle Image size Bug in Internet explorer 8 (ei8)Wow, that seemed to do the trick! However, it seems that the latest version (1.10) may have created an issue in the logic so that the rotation is not turned on. It appears that the jquery.js file script code is not being written into the head and the javascript code is not being written in php. I tracked this down and manually added those things and it worked. I’d like to figure out why it’s not obeying the check box in the settings. If anyone figures it out, please let me know. Thanks!
Forum: Plugins
In reply to: WP-Cycle Image size Bug in Internet explorer 8 (ei8)Did you find a resolution for this? I’m having the same trouble.
My images are set for 500×180. The first one appears as 500×180 but then all succeeding images (including the first when cycled back through) appear to be stretched. I can only see 500×180 of the stretched image but when I check the properties, it says that the image is 1247×180.
I’ve determined that the 1247 is the size of my IE window. When I look at the source code, only 500 is specified. Anyone have any ideas?
Any help would be greatly appreciated. Thanks!
I need the same behavior. The old next_post function says that it will not work for child categories: https://codex.www.ads-software.com/Function_Reference/next_post
But the newer next_post_link says nothing about this limitation.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Widgzt thumbnail doesn’t respect the ratioOk, this has driven me crazy for months. I finally tracked down the problem. It seems to be in the widgets.php file under the nextgen widgets folder. There, I found this code:
if ( $instance[‘show’] == ‘original’ )
$out .= ‘<img src=”‘ . get_option (‘siteurl’) . ‘/’ . ‘index.php?callback=image&pid=’.$image->pid.’&width=’.$instance[‘width’].’&height=’.$instance[‘height’]. ‘” title=”‘.$alttext.'” alt=”‘.$alttext.'” />’;
else
$out .= ‘<img src=”‘.$image->thumbURL.'” width=”‘.$instance[‘width’].'” height=”‘.$instance[‘height’].'” title=”‘.$alttext.'” alt=”‘.$alttext.'” />’;From my elementary programming experience, this appears to look for the Fixed Dimension value and either pull static heights and widths set in the options or pull the actual thumbnail height and widths information. I do not know enough about how the data is stored to actually permanently fix this in the code, but I just changed
if ( $instance[‘show’] == ‘original’ )
to
if ( $instance[‘show’] <> ‘original’ )
and that was good enough for me. I’m assuming that the <> condition will never be met so this will hardcode the php to respect ratio.
My thumbnails now show the correct ratio without distortion and stretching. I would appreciate any feedback from someone that can figure out a permanent fix for this beyond my workaround. Either way, I’m happy for now. ??
I hope this helps.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Fatal errorI’m getting the same error on any images above 1MB. Is there a solution outside of reducing the images before uploading? I’m developing a gallery that allows multiple novice computer users to upload pictures and I need the process to be as simple as possible. Any help would be appreciated.