Cameron
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Instagram] No photos are appearing just the loading animationWe’re still having problems too which makes me think that wp-super-cache might not have been (entirely) at fault. I’m contemplating trying to debug the ajax call next. :/
Forum: Plugins
In reply to: [Easy Instagram] No photos are appearing just the loading animationA quick follow up to my earlier comments. I encountered this problem again, and after some additional digging found how to tell our main caching plugin, WP-Super-Cache, how to ignore easy-instagram’s cache folder.
Settings > advanced tab. 2/3rds of the way down the page, you can configure URI patterns for wp-super-cache to ignore. I added “easy-instagram\cache\*” to the list of URI patterns to ignore, refreshed, and my instagram feed reappeared.
Forum: Plugins
In reply to: [Easy Instagram] No photos are appearing just the loading animationTo the plugin Author, I would suggest the following:
- Provide a direct link from the plugin on the installed plugins page to the */wp-admin/options-general.php?page=easy-instagram page. I was unaware of this page at first and we’ve used other plugins (Akismet for one) that do this.
- Provide a clearer message than “folder */easy-instagram/cache is not writable”. A non-existant folder should be easy enough to detect and report back through the admin.
Forum: Plugins
In reply to: [Easy Instagram] No photos are appearing just the loading animationFor me, it looks like my WP install can’t create a needed cache folder:
./wp-content/plugins/easy-instagram/cache. I found this error message on the admin page for the plugin (Dashboard > Settings > easy-instagram).Once I created that /cache folder, this plugin worked. I’m not sure why easy-instagram wasn’t able to create this folder on its own, but there you go.
Forum: Plugins
In reply to: [Easy Instagram] No photos are appearing just the loading animationI encountered the same issue on another site. I think it’s a caching issue. We also use WP-Super-Cache for managing caching of our entire site so I’m not 100% certian yet which is at fault. Whenever I force flush WP-Super-Cache, our instagram feed comes back. If I figure it out, I’ll post an update.
Forum: Plugins
In reply to: [Responsive Video Embeds] Way to specify different reference width of video?Thanks Kevin. Before you posted, I figured out a way to work around my issue by controlling the size of the parent element, which ended up working out better for me in the long run.
Cheers!
Forum: Plugins
In reply to: [Custom Menu Wizard Widget] 'Current root item' bug or behavior?Thank you for your quick reply.
Late yesterday, I discovered an issue with the permalink on the page that was giving me problems. I ended up deleting and recreating that page and the plugin works as I expect it to. Not sure how that page ended up with the home page as its permalink, but mystery solved.
Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] RSS feed not availableIn my case, the facebook feed started working again once my client deleted the offending post.
In my view, there are some definite shortcomings with how the parser (fetch_feed and SimplePie) reports errors and how this plugin handles those errors and how it reports those failures back to users. In my case, non-programmers would not have been able to do this level of investigation and would have written off this plugin as “broken” even though the problem is deeper than the plugin.
Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] RSS feed not availableok… hopefully this helps some people.
In my case, it appears that the error message that fetch_feed()/SimplePie spits back to the plugin is wrong. I found and used this validator on the URL the plugin generates: http://validator.w3.org/
This was the output:
Line 91, Column 2644: non SGML character number 25
…health, safety or efficacy claims, itâs also brought the potential for a retu…You have used an illegal character in your text. HTML uses the standard UNICODE Consortium character repertoire, and it leaves undefined (among others) 65 character codes (0 to 31 inclusive and 127 to 159 inclusive) that are sometimes used for typographical quote marks and similar in proprietary character sets. The validator has found one of these undefined characters in your document. The character may appear on your browser as a curly quote, or a trademark symbol, or some other fancy glyph; on a different computer, however, it will likely appear as a completely different character, or nothing at all.
Your best bet is to replace the character with the nearest equivalent ASCII character, or to use an appropriate character entity. For more information on Character Encoding on the web, see Alan Flavell’s excellent HTML Character Set Issues reference.
This error can also be triggered by formatting characters embedded in documents by some word processors. If you use a word processor to edit your HTML documents, be sure to use the “Save as ASCII” or similar command to save the document without formatting information.
This illegal character wasn’t in my client’s FB post, it appears to be in the article they linked to. I tried digging deeper into fetch_feed and SimplePie, regarding how these parse the XML document from FaceBook, but there doesn’t appear to be a quick/easy solution there.
I’m not sure what can be done within the plugin to cope with this parsing error from wordpress core. It seems like fetch_feed/SimplePie have to parse the entire XML document just so the plugin can pull the X most recent posts, so even if a problematic post falls outside of the first X entries, it can still foul up the plugin.
Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] RSS feed not availableChrome only spit this error out when I tried to view a copy of the XML file I saved to my hard drive (and not when I viewed the response by visiting the URL http://www.facebook.com/feeds/page.php?id=326882600704811&format=rss20 directly):
error on line 91 at column 29: Input is not proper UTF-8, indicate encoding !
Bytes: 0x19 0x73 0x20 0x61Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] RSS feed not availableThis is line 91 from my XML:
<description><![CDATA[Our Sherry Emery quoted on ...it looks like the problem is with “[Our”, which to me is bizarre.
Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] RSS feed not availableHello,
I’m seeing this same problem too (wp v3.6, plugin v1.2.1). (https://www.healthmediacollaboratory.org/) This is my facebook page ID: 326882600704811. I manually constructed a url to match what the plugin generates (http://www.facebook.com/feeds/page.php?id=326882600704811&format=rss20) and I seem to get a reasonable XML document. However, this is the HTML that the widget is outputting:
<div id="message" class="error"><p>Array</p></div><p>RSS Feed currently unavailable.</p>I hacked the plugin to var_dump
$feed->get_error_message()and I got this:array 0 => string ‘This XML document is invalid, likely due to invalid characters. XML error: Invalid character at line 91, column 29’
I’m still digging into the XML I got from Facebook and will circle back if I find anything else that’s helpful.
Thanks! I overlooked the “Extra CSS Classes” field.
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] accordions do not work in pagesThis is the H3 with “()”:
<h3 class=”wp-tab-title”> Access Management Guidelines (AMG) </h3>This is my H3 without the “()”:
<h3 class=”wp-tab-title ui-accordion-header ui-helper-reset ui-state-default ui-accordion-header-active ui-state-active ui-corner-top ui-accordion-icons” id=”access_management_guidelines” role=”tab” aria-controls=”ui-accordion-1-panel-0″ aria-selected=”true” tabindex=”0″><span class=”ui-accordion-header-icon ui-icon ui-icon-triangle-1-s”></span> Access Management Guidelines</h3>Hopes this helps other people.
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] accordions do not work in pagesIf I throw the H3-Div pairs inbetwen the [wptabs] shortcodes, it works. Unfortunately, I can’t ask a client to do this whenever they need to update their content.
Playing around with this and my content, I did notice that having parenthesis inside the
wptabtitleshortcode seems to screw up the accordion formatting. Once I removed the parenthesis, that seemed to fix things. Maybe that’s the key? If that’s the case, it seems like an odd shortcoming/bug.