<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support User Favorites: kherge</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support User Favorites: kherge</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 13:17:22 +0000</pubDate>

<item>
<title>Skyzyx on "Safari 4 Sees Blank Pages on New Changes in WordPress 2.8"</title>
<link>http://wordpress.org/support/topic/288160#post-1227896</link>
<pubDate>Mon, 28 Sep 2009 18:52:36 +0000</pubDate>
<dc:creator>Skyzyx</dc:creator>
<guid isPermaLink="false">1227896@http://wordpress.org/support/</guid>
<description>&#60;p&#62;&#60;a href=&#34;https://bugs.webkit.org/show_bug.cgi?id=26621&#34; rel=&#34;nofollow&#34;&#62;https://bugs.webkit.org/show_bug.cgi?id=26621&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>wrayco on "Safari 4 Sees Blank Pages on New Changes in WordPress 2.8"</title>
<link>http://wordpress.org/support/topic/288160#post-1170250</link>
<pubDate>Mon, 10 Aug 2009 21:15:54 +0000</pubDate>
<dc:creator>wrayco</dc:creator>
<guid isPermaLink="false">1170250@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am also having this problem and tearing my hair out. For me it seems to have something to do with whether or not I have the .www with my domain name. I'm locked in a catch 22 because if I do have it I have no more blank pages but my dynamic images won't load. If I don't have it my images load but I get blank pages. &#60;/p&#62;
&#60;p&#62;I've read in other places it's worth checking your .htaccess file for path changes. I'm still trying to get this sorted out. Only happens in Safari.
&#60;/p&#62;</description>
</item>
<item>
<title>kherge on "Safari 4 Sees Blank Pages on New Changes in WordPress 2.8"</title>
<link>http://wordpress.org/support/topic/288160#post-1133005</link>
<pubDate>Fri, 10 Jul 2009 17:36:54 +0000</pubDate>
<dc:creator>kherge</dc:creator>
<guid isPermaLink="false">1133005@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is no one really seeing this?&#60;/p&#62;
&#60;p&#62;I could really use some help trying to figure this one out:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://kherge.com/&#34; rel=&#34;nofollow&#34;&#62;http://kherge.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Try registering an account, logging in, and then logging out.  You may also trigger the blank page if you try and refresh.
&#60;/p&#62;</description>
</item>
<item>
<title>kherge on "Safari 4 Sees Blank Pages on New Changes in WordPress 2.8"</title>
<link>http://wordpress.org/support/topic/288160#post-1131746</link>
<pubDate>Thu, 09 Jul 2009 17:52:40 +0000</pubDate>
<dc:creator>kherge</dc:creator>
<guid isPermaLink="false">1131746@http://wordpress.org/support/</guid>
<description>&#60;p&#62;When ever I make a new post, or make a change to an existing post, and I view it using Safari 4, I receive absolutely no feedback aside from a few standard HTTP headers.&#60;/p&#62;
&#60;p&#62;This never happens in Firefox.&#60;/p&#62;
&#60;p&#62;I re-installed WordPress 2.8 and the issue still occurred.  The only plugin I had active at the time was Akismet.&#60;/p&#62;
&#60;p&#62;Anybody else experiencing the same thing?
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "Plugin Order of Execution?"</title>
<link>http://wordpress.org/support/topic/176392#post-760798</link>
<pubDate>Sat, 17 May 2008 00:19:27 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">760798@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Also&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Writing_a_Plugin&#34;&#62;Writing_a_Plugin&#60;/a&#62; and the resource section.&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Plugin_API&#34;&#62;Plugin_API&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>kherge on "Plugin Order of Execution?"</title>
<link>http://wordpress.org/support/topic/176392#post-760693</link>
<pubDate>Fri, 16 May 2008 21:54:10 +0000</pubDate>
<dc:creator>kherge</dc:creator>
<guid isPermaLink="false">760693@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@MichaelH: Thanks.  I saw that but its still vague with what I am actually looking for: &#60;em&#62;When&#60;/em&#62; is the activation hook triggered?&#60;/p&#62;
&#60;p&#62;@harknell:  That will be handy but not quite what I was looking for.&#60;/p&#62;
&#60;p&#62;I'll just end up dissecting WordPress's _hook()* functions and I'll post back when I have more information.  Heck, I'll even try to include it in the documentation some where.
&#60;/p&#62;</description>
</item>
<item>
<title>harknell on "Plugin Order of Execution?"</title>
<link>http://wordpress.org/support/topic/176392#post-760519</link>
<pubDate>Fri, 16 May 2008 18:29:49 +0000</pubDate>
<dc:creator>harknell</dc:creator>
<guid isPermaLink="false">760519@http://wordpress.org/support/</guid>
<description>&#60;p&#62;The hooks have an optional second parameter which adds a position number to when the plugin should become active. If you don't add a number it defaults to &#34;10&#34;. Many people place a very high number in there (like 50 or even 1000) if they really want their plugin to fire last. Obviously putting a smaller number makes it go earlier in the chain. Since many plugin developers never add this optional element into the activation hook it's a toss up as to what order all of the 10's get activated.
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "Plugin Order of Execution?"</title>
<link>http://wordpress.org/support/topic/176392#post-760454</link>
<pubDate>Fri, 16 May 2008 17:11:26 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">760454@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Guess I can only point you to the Codex:&#60;/p&#62;
&#60;p&#62;According to &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/register_activation_hook&#34;&#62;Function Reference/register activation hook&#60;/a&#62;, the function register_activation_hook (introduced in WordPress 2.0) registers a plugin function to be run when the plugin is activated.&#60;/p&#62;
&#60;p&#62;Also see:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/register_deactivation_hook&#34;&#62;Function_Reference/register_deactivation_hook&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>kherge on "Plugin Order of Execution?"</title>
<link>http://wordpress.org/support/topic/176392#post-759653</link>
<pubDate>Thu, 15 May 2008 18:30:54 +0000</pubDate>
<dc:creator>kherge</dc:creator>
<guid isPermaLink="false">759653@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am writing my own plugin but it is entirely embedded in its own class to prevent function name collisions.&#60;/p&#62;
&#60;p&#62;As I wrote the code to hook my plugin into WordPress's activation and deactivation events, I wondered how my plugin would know that it has already been activated.&#60;/p&#62;
&#60;p&#62;I know I can create an option and then check its value once my activation/deactivation methods are called, but there must be a built-in way that WordPress uses.&#60;/p&#62;
&#60;p&#62;Does the register_activation_hook() and register_deactivation_hook() immediately trigger my activation and deactivation methods (functions) once they are called with the appropriate parameters?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
