<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.web.wordpress.devel">
    <title>gmane.comp.web.wordpress.devel</title>
    <link>http://blog.gmane.org/gmane.comp.web.wordpress.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44200"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44197"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44196"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44195"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44193"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44187"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44182"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44179"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44178"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44176"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44172"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44171"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44163"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44161"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44160"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44153"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44148"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44146"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44139"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44137"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44200">
    <title>Translating external help files for a plugin</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44200</link>
    <description>&lt;pre&gt;Hello there,

I'm trying to localize a plugin and it cames with a html help file that popups when clicking the plugin at front end.

Is there someway to localize this file?! I only find examples on creating/localizing files for admin pages.

THanks for any help!
&lt;/pre&gt;</description>
    <dc:creator>Diana K. C</dc:creator>
    <dc:date>2012-05-26T03:48:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44197">
    <title>Add same widget to multiple sidebars</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44197</link>
    <description>&lt;pre&gt;Hi folks,

in my template I have multiple sidebars, one for the homepage, one for 
the archive page, and so on. Each of them has a different set of widgets 
in it, but some widgets should be shared among sidebars. I've written 
the usual code

function my_widget(){

}
wp_register_sidebar_widget(...)

But as soon as I assign a widget to a sidebar, it disappears from the 
list of available filters, making it unavailable for other sidebars. I 
see the Text Widget, though, can be reused multiple times. I've found a 
few different ways of doing this, but I'd like to ask this list about 
what's the 'final' and best way of making a 'reusable' widget.

Thanks folks,
Dino.
&lt;/pre&gt;</description>
    <dc:creator>Dino Termini</dc:creator>
    <dc:date>2012-05-25T11:56:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44196">
    <title>Replace One Plugin With Another</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44196</link>
    <description>&lt;pre&gt;Hi all,

Background:  I have a plugin that I wrote to replace another widget that is
missing features. The problem is that I need to programmatically replace
the widget with the new one. I wrote a function that replaces them that
hooks on the 'admin_init'. I picked that because it runs after the widgets
are loaded. I wanted to be able to use the functions such
as get_settings(), save_settings(), wp_get_sidebars_widgets(),
and wp_set_sidebars_widgets(). I guess I could have done all this before
the widgets were loaded, but I already have it working this way... but 1
problem.

Problem: The widget does not display the form properly on the page load
when the widget switch happens. The widget's ['callback'] property when it
gets set to 'wp_widget_control' returns false with is_callable(). This
makes the widget settings empty. When viewing the other widgets objects
that weren't converted, they have the same properties, but it returns true.
I can't figure out the difference. I'm guessing that my widget's object
isn&lt;/pre&gt;</description>
    <dc:creator>Matt Slocum</dc:creator>
    <dc:date>2012-05-25T04:38:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44195">
    <title>fast question - which action or filter to change smthwith uploaded image?</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44195</link>
    <description>&lt;pre&gt;hi there,

in my plugin i am using javascript function tb_show() to use standard
wordpress image uplader, as described here:

http://www.webmaster-source.com/2010/01/08/using-the-wordpress-uploader-in-your-plugin-or-theme/

works great. but i want to change something in files uploaded this way
(if you ask what: i want to encode file content using my 'secret'
function).

which hook should i use to do it?

and pro-question: how to recognise in hook action/filter that file
which i attempt to encode if file uploaded via my plugin? i want to
encode only files uploaded in my plugin. if someone will upload
regular attachment to post (ie image inserted into post content) file
shouldn't be encoded


--
(en) regards / (pl) pozdrawiam
Konrad Karpieszuk
http://tradematik.pl wtyczka do WordPressa do tworzenia sklepów dla
klientów z Polski
&lt;/pre&gt;</description>
    <dc:creator>Konrad Karpieszuk</dc:creator>
    <dc:date>2012-05-24T14:09:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44193">
    <title>Advanced taxonomy queries</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44193</link>
    <description>&lt;pre&gt;Hi all,

I have a custom post with 3 taxonomies ( Country, State, City ) I can get
the terms for a single taxonomy using "get_terms( $taxonomy )".

But let's say  that i want to get the terms in the taxonomy "state", but
that the taxonomy 'country' is equal to 'X'

And later search for the cities that the state is equal to Y and country
equal to X.

i have been reading the docs but i can't find something that help me.

Any suggestions?

Best Regards!

--
Enrique Chávez &amp;lt;http://tmeister.net&amp;gt;
Freebies &amp;amp; Updates &amp;lt;http://facebook.com/ecdevelopment&amp;gt;
&amp;lt; at &amp;gt;tmeister &amp;lt;http://twitter.com/tmeister&amp;gt;
&lt;/pre&gt;</description>
    <dc:creator>Enrique Chavez</dc:creator>
    <dc:date>2012-05-23T20:19:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44187">
    <title>ajax and posts</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44187</link>
    <description>&lt;pre&gt;I have been trying to figure this one out for a while, but to no avail.

How can I I retrieve posts via ajax? Specifically, I would like to click a
button on a page, which would send an ajax request to another page which
has a custom loop and get the results back and spit them out. Also, do I
have to load the wordpress environment manually on the page I am requesting
from(So that the loop will work)?

Thank you in advance!

&lt;/pre&gt;</description>
    <dc:creator>Roman Sharf</dc:creator>
    <dc:date>2012-05-21T12:06:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44182">
    <title>getting post counts for multiple tags</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44182</link>
    <description>&lt;pre&gt;What would be the best way to go about, finding the amount of posts for
multiple tags.

I will be using it on a tag archive page.

        $tag_count = get_term_by('name', get_query_var('tag'),'post_tag');
        echo $tag_count-&amp;gt;count;

this works fine for one tag, but I want to check via tag1,tag2,tag3 and
tag1+tag2+tag3 how many posts match those
&lt;/pre&gt;</description>
    <dc:creator>Chris McCoy</dc:creator>
    <dc:date>2012-05-20T15:14:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44179">
    <title>Buy, Sell -liberty Reserve, Credit Card -&gt; Debit Card, Wu/mg, Bank Transfer !</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44179</link>
    <description>&lt;pre&gt;
Cvv,fullz,banklogins,dumps+pin,track1/2+pin,bank Transfer,wu 

                   Transfer,shop admin, etc 

I AM BOOKING FLIGHT TICKETS AND I PAY ALL BILLS CONTACT ME FAST FOR 

DEAL 


If you want to have deals with good quality please contact me with 



Contact Info 


yahoo ID: troll.seller 




mail: transfer24h&amp;lt; at &amp;gt;gmail.com


SOFTWARES AT good take away prices 
CC fullz info, CC DOBDomain hosting. 


PRICE LIST ALL CVV CVV2. 
1 US ( visa,master) = 3$/ ( buy &amp;gt; 50 Price $1.2/ 1cvv) 
1 US (Amex,dis) = 5$/ ( buy &amp;gt; 50 price $3 /1cvv) 
1UK = 5$/ ( Buy &amp;gt; 50 price 4$/1cvv) 
1UK CVV with DOB = 15$/CVV ( Buy &amp;gt; 50 CVV Price 12$ = 1CVV) 
1 Ca CVV = 5$/CVV 
1 CA CVV(Amex,dis) = 7$/cvv 
1 EU CVV = 15$/CVV 
1 EU CVV(Amex,dis) = 5$/cvv 
1 US CVV full info = 20$/CVV 
1 UK CVV full info = 40$/CoVV 
Australia (AU) 10.00 $ 
Switzerland (VE) 14.00 $ 
France (FR) 15.00 $ 
Germany (GE) 15.00 $ 
Mexico (MX) 12.00 $ 
New Zealand (NZ) 13.00 $ 
ITALY 15$. And many country orther 


Demo US 
VISA | 4039959177849993 | 08 | 2011 | 1&lt;/pre&gt;</description>
    <dc:creator>admin.hacker</dc:creator>
    <dc:date>2012-05-19T18:52:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44178">
    <title>permalinks</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44178</link>
    <description>&lt;pre&gt;How do I change the posts to have 'articles' base in front of the
%post-name% witohut effecting url on the rest of the site?


category base: category
sample url :   mysite.com/category/featured-videos

I wanted to prefix all my posts with /articles/ base in front of it.

So I went to the permalinks screen and set up a custom structure as follows

/articles/%post-name%

that fixed the posts url to be the way I want.

but then all of a sudden the url what used to be

mysite.com/category/featured-videos

become

mysite.com/articles/category/featured-videos

Is there a way to get the bosy of both worlds that is

keep the rest of the non-post url as is ( so that category urls work
the way you expect them work ) and have control over the posts url
base?
&lt;/pre&gt;</description>
    <dc:creator>Haluk Karamete</dc:creator>
    <dc:date>2012-05-17T20:39:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44176">
    <title>paginate_links() empty href in some cases -&gt; bug orfeature?</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44176</link>
    <description>&lt;pre&gt;On the definition of the paginate_links() in
wp-includes/general-template.php&amp;lt;http://core.trac.wordpress.org/browser/tags/3.3.2/wp-includes/general-template.php#L1921&amp;gt;,
i see that it gives $link an empty value on at least two cases:

If $current page is number 2 (lines 1954-55)

if ( $prev_next &amp;amp;&amp;amp; $current &amp;amp;&amp;amp; 1 &amp;lt; $current ) :


        $link = str_replace('%_%', 2 == $current ? '' : $format, $base);

and during the for loop, if $n == 1 (lines 1968-69)

if ( $show_all || ( $n &amp;lt;= $end_size || ( $current &amp;amp;&amp;amp; $n &amp;gt;= $current -
$mid_size &amp;amp;&amp;amp; $n &amp;lt;= $current + $mid_size ) || $n &amp;gt; $total - $end_size )
) :


                $link = str_replace('%_%', 1 == $n ? '' : $format, $base);

After that, it goes on to formatting the now empty string, adds whatever is
on the 'add_args' and 'add_fragment' inputs and  builds the array of links.

Can anyone point me the reasons for that? Should i bother dive into it to
try and make it work or is it really designed to work like this?

ps.:
I've posted a complete summary of my troubles&lt;/pre&gt;</description>
    <dc:creator>Ricardo Moraleida</dc:creator>
    <dc:date>2012-05-17T13:27:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44172">
    <title>Change theme per user / mobile</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44172</link>
    <description>&lt;pre&gt;Is there an action/filter to change the WordPress theme per user / onload?

Not switch_theme (I don't want to change it for everyone), just to 
change it for certain users, sometimes ...

I'm using the following two filters:
add_filter('template', 'mobile_theme_name');
add_filter('stylesheet', 'mobile_theme_name');

Which seem to update the StyleSheet path and Image paths to use the new 
theme, however WordPress is still loading the physical *.php (index.php, 
front-page.php, home.php etc) files from the *database* set themes 
folder, and not the new themes folder.

Obviously I'm missing a filter/action somewhere.

Thanks,
Rob.
&lt;/pre&gt;</description>
    <dc:creator>Robert Lusby</dc:creator>
    <dc:date>2012-05-17T11:58:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44171">
    <title>Two URLs - One WP Install? (And the silly way WordPress stores full URLs in the database)</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44171</link>
    <description>&lt;pre&gt;Hello,

We're setting up a mobile version of a website we run. We decided to do 
this by creating a mobile specific template.

However we'd quite like to switch the URL to a mobile version of the site:

E.g.
-&amp;gt; normal visitor reaches the site, and stays at http://www.example.com
-&amp;gt; mobile visitor reaches the site, and gets redirected to 
http://m.example.com

Behind the scenes, the only difference between the two is the template 
picked. It's the same blog + DB.

I get how to do the template switching etc ... but how do I get 
WordPress to answer on http://m.example.com and stop redirecting all 
requests back to the www....?

Also, I now have to do a find and replace on ALL the urls in the 
database everytime the mobile site is loaded, for that site, to map to 
http://m.example.com ... Why does WordPress do this! Why not just keep 
the content as content! And let us decide what wrappers we want to put 
around it!

Cheers,
Rob.
&lt;/pre&gt;</description>
    <dc:creator>Robert Lusby</dc:creator>
    <dc:date>2012-05-17T10:05:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44163">
    <title>Best svn software</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44163</link>
    <description>&lt;pre&gt;I was using Turtle SVN but is gets loaded everytime, is there any light software out there?
&lt;/pre&gt;</description>
    <dc:creator>Diana K. C</dc:creator>
    <dc:date>2012-05-16T18:33:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44161">
    <title>How to check if a plugin has been removed fromwordpress and why</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44161</link>
    <description>&lt;pre&gt;Today, I found that my plugin page on wordpress.org is not working - "We couldn't find that plugin."
I think my plugin may have been removed from WordPress but I am not sure.
I can see the plugin when I login with my username (that's the administrator account for the plugin) but all contributors cannot see the plugin.
The email I used when I registered on wordpress has been deactivated and I had to reactivate it this morning so if any message has been sent to that email it 
has probably bounced back :/
Who can I contact to find out if my plugin has been removed from wordpress and how can I find out the reason that my plugin has been removed.
I've always tried to follow the plugin guidelines as listed on wordpress.org
I am sorry if this is not the correct mail list to send this question to, if so please point me to the right place.
&lt;/pre&gt;</description>
    <dc:creator>Yanislav Iliev</dc:creator>
    <dc:date>2012-05-16T17:14:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44160">
    <title>any idea why this custom rewrite isnt working?</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44160</link>
    <description>&lt;pre&gt;// multiple keywords works fine domain.com/search/keyword-keyword2.html

from : loop-search.php

$search_query = str_replace('-',' ', $wp_query-&amp;gt;query_vars['s']);
$mysearch = new WP_Query("s=$search_query&amp;amp;showposts=-1"); 

// multiple tag doesnt work domain.com/tag/tag-tag2.html

from: loop-tag.php

$tag_query = str_replace('-',',',$wp_query-&amp;gt;query_vars['tag']); 
$mytag = new WP_Query("tag=$tag_query&amp;amp;showposts=-1");

// rewrites

add_action('generate_rewrite_rules', 'hotlinkers_add_rewrite_rules'); 

function hotlinkers_add_rewrite_rules( $wp_rewrite ) { 
    $new_rules = array(
    "^search/(.+)\.html$" =&amp;gt; 'index.php?s=' . $wp_rewrite-&amp;gt;preg_index(1),
    "^tag/(.+)\.html$" =&amp;gt; 'index.php?tag=' . $wp_rewrite-&amp;gt;preg_index(1)
    );
    $wp_rewrite-&amp;gt;rules = $new_rules + $wp_rewrite-&amp;gt;rules; 
} 

add_filter('query_vars', 'hotlinkers_queryvars' ); 

function hotlinkers_queryvars( $qvars ){ 
    $qvars[] = 's'; 
    $qvars[] = 'tag'; 
    return $qvars; 
} 

add_action('init','hotlinkers_flush_rules'); 

function ho&lt;/pre&gt;</description>
    <dc:creator>Chris McCoy</dc:creator>
    <dc:date>2012-05-16T16:45:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44153">
    <title>WP_Query and orderby - outside of WP</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44153</link>
    <description>&lt;pre&gt;Hi,

I have a regular PHP script that bootstraps WordPress by including
wp-load.php (as previously discussed on this list).

I'm doing something relatively simply --

a) loading WP
b) grabbing posts of a certain custom post type

I'd like to change the orderby, but no matter what I pick for orderby,
the posts come back in the same order (ie. date).

Here's my code:

--

global $wp_the_query, $wp_query, $wp_rewrite, $wp;
define('DISABLE_WP_CRON', true);
require_once('/home/wheaton/public_html/wp-load.php');
$quilts = new WP_Query('post_type=profiles&amp;amp;post_status=publish&amp;amp;orderby=rand' );
while ( $quilts-&amp;gt;have_posts() ) : $quilts-&amp;gt;the_post();
// etc

--

In short, changing the orderby parameter has no effect. ie. title, rand, etc.

What could be causing this? Might it have to do with bootstrapping WP
in this way?

Doc: http://codex.wordpress.org/Class_Reference/WP_Query

Thanks-
Bill
&lt;/pre&gt;</description>
    <dc:creator>Bill Dennen</dc:creator>
    <dc:date>2012-05-14T15:55:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44148">
    <title>Thoughts on Softpedia and PHPKode Directories?</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44148</link>
    <description>&lt;pre&gt;Recently after releasing a new plugin, I received messages from 
webscripts.softpedia.com and phpkode.com, congratulating me on having my 
plugin included in their directory.

I went to check it out, and while it seems benign, I am leery of them 
hosting my plugin archive - which seems to remove some of the control I 
have over distribution and making sure that the most current version is 
what is downloaded. It's unclear how and when changes I make to the 
official WordPress.org repository get applied to their hosted version.

I imagine they are scraping the new plugin releases from WordPress.org 
and using them to create more content on their site.

Personally, I'd prefer to channel everything through one distribution 
channel, and have asked to have the plugin removed.

Does anyone have any experience with this? Curious to hear what others 
have done or think of this.

Thanks in advance,

Jackson
&lt;/pre&gt;</description>
    <dc:creator>Jackson Whelan</dc:creator>
    <dc:date>2012-05-14T12:55:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44146">
    <title>WP Query  - OrderBy Author</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44146</link>
    <description>&lt;pre&gt;I was using orderby =&amp;gt; author in WP_Query, and wondering why I was 
getting a strange order.

Then I suddenly twigged - it's sorting by Author ID, rather than Author 
Name.

How would you order by Author Display Name, rather than ID, within WP_Query?

Thanks,
Rob.
&lt;/pre&gt;</description>
    <dc:creator>Robert Lusby</dc:creator>
    <dc:date>2012-05-13T19:01:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44139">
    <title>Using symlinks in WP installations</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44139</link>
    <description>&lt;pre&gt;Hi all

I am wondering if there are likely to be any issues with using
symlinks to run multiple installs of WP from one set of core, plugin
and theme files, and thought it might be a good idea to post here.

I'm currently playing with a setup where everything in my DocumentRoot
directories are actually symlinks to a central install with the
exception of WP-content and .htaccess. Inside WP-content, both /themes
and /plugins are also symlinks.

I'm not really looking to this as a solution for production, but have
been playing around with it on a whole bunch of dev and staging sites.
Apart from running into file path related problems with some plugins,
everything seems fine. Can anyone foresee any problems hiding around
the corner waiting to bite me if all the appropriate constants are set
in WP-config?

Cheers
Neil
&lt;/pre&gt;</description>
    <dc:creator>Neil Pie's Bacon</dc:creator>
    <dc:date>2012-05-12T06:57:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44137">
    <title>register_activation_hook for themes?</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44137</link>
    <description>&lt;pre&gt;Is it true its only available to plugins?

Im creating a page on theme activation and setting the page template.
&lt;/pre&gt;</description>
    <dc:creator>Chris McCoy</dc:creator>
    <dc:date>2012-05-11T19:20:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.wordpress.devel/44135">
    <title>Best Backup Plugin</title>
    <link>http://comments.gmane.org/gmane.comp.web.wordpress.devel/44135</link>
    <description>&lt;pre&gt;Can anyone tell me what they think is the best backup plugin.

I am looking for something with the following features.

1.  Reliably makes a DB backup.
2.  Exports files to Amazon / FTP / or another place and saves a local copy
3.  Is cheap or free.   (Vaultpress is too expensive for some of the clients)

What do you like?

thanks,

Andrew
&lt;/pre&gt;</description>
    <dc:creator>Andrew Gray</dc:creator>
    <dc:date>2012-05-11T15:21:37</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.wordpress.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.wordpress.devel</link>
  </textinput>
</rdf:RDF>

