<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rich Bui &#187; WordPress MU</title>
	<atom:link href="http://richbui.com/tag/wordpress-mu/feed/" rel="self" type="application/rss+xml" />
	<link>http://richbui.com</link>
	<description>Welcome to my website.</description>
	<lastBuildDate>Mon, 19 Sep 2011 15:23:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Set Default Number of Columns for WordPress Gallery</title>
		<link>http://richbui.com/2010/01/13/set-default-number-columns-wordpress-gallery/</link>
		<comments>http://richbui.com/2010/01/13/set-default-number-columns-wordpress-gallery/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 14:45:47 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WordPress Multi-User]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=3719</guid>
		<description><![CDATA[Having problems finding a simple solution to changing the WordPress Gallery's default 3-column display to any amount of columns like 4? Thanks to Zeo, we have a solution.]]></description>
			<content:encoded><![CDATA[<p>WordPress version 2.5 introduced a very useful feature for many bloggers: a built-in gallery system. All your photos uploaded to a specific Post or Page and using the <a href="http://codex.wordpress.org/Gallery_Shortcode">Gallery Shortcode</a>, <code>&#091;gallery]</code>, will display a set of thumbnails anywhere in your Post or Page. When used with most WordPress themes, the default 3-column thumbnail display works very well. But for some WordPress themes, such as this one, the default 3-column thumbnail display has too much space between each thumbnail. <img src="http://bui4ever.com/files/2010/01/WordPress-Gallery-4-columns-495x281.png" alt="WordPress-Gallery-4-columns" width="495" height="281" class="alignright size-medium wp-image-3737 hang-2-column" />Fortunately, you can make the Gallery display 4-or-more-columns by adding <code>columns=4</code> inside the Gallery Shortcode like <code>&#091;gallery columns=4]</code>. That can be a pain because you have to remember to do each time you add a Gallery to a Post or Page and all your prior Posts or Pages will continue to be 3-columns. So how do you reset the default number of Gallery thumbnails? Fortunately a Google search led me to this post by <a href="http://zeo.unic.net.my/wordpress-gallery-force-x-number-of-columns/">Zeo</a> who has a solution in which you enter the code below in your <em>functions.php</em> file:</p>
<p>[sourcecode language="PHP"]<br />
function gallery_columns($content){<br />
	$columns = 2;<br />
	$pattern = array(<br />
		&#8216;/(&#091;gallery(.*?)columns=&quot;(&#091;0-9&#093;)&quot;(.*?)&#093;)/ie&#8217;,<br />
		&#8216;/(&#091;gallery&#093;)/ie&#8217;,<br />
		&#8216;/(&#091;gallery(.*?)&#093;)/ie&#8217;<br />
	);<br />
	$replace = &#8216;stripslashes(strstr(&quot;1&quot;, &quot;columns=&quot;$columns&quot;&quot;) ? &quot;1&quot; : &quot;&#091;gallery 2 4 columns=&quot;$columns&quot;&#093;&quot;)&#8217;;</p>
<p>	return preg_replace($pattern, $replace, $content);<br />
}</p>
<p>add_filter(&#8216;the_content&#8217;, &#8216;gallery_columns&#8217;);<br />
[/sourcecode]</p>
<p>Make sure you change <code>$columns = 2;</code> to however many columns you like. Also the above code has to be wrapped in <code>&amp;#lt;?php and ?&gt;</code> or it will not work.</p>
<p>Very nice and elegant. This way if you change themes, you don&#8217;t have to manually edit every Post or Page to adjust how the Gallery column thumbnails display. Thanks Zeo.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2010/01/13/set-default-number-columns-wordpress-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress How To Break Content Into Two Columns</title>
		<link>http://richbui.com/2010/01/01/wordpress-how-to-break-content-into-two-columns/</link>
		<comments>http://richbui.com/2010/01/01/wordpress-how-to-break-content-into-two-columns/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 15:51:22 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Allan Cole]]></category>
		<category><![CDATA[Basic Maths]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Khoi Vinh]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Shortcode]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WordPress Multi-User]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=3271</guid>
		<description><![CDATA[So you want to design a WordPress theme or modify an existing theme to have your Post content to display as two columns much like printed newspapers and magazines? Well here&#8217;s an ingenious idea I learned from the Khoi Vinh&#8217;s and Allan Cole&#8217;s Basic Maths WordPress theme on how to do that. The beauty of [...]]]></description>
			<content:encoded><![CDATA[<p>So you want to design a WordPress theme or modify an existing theme to have your Post content to display as two columns much like printed newspapers and magazines? Well here&#8217;s an ingenious idea I learned from the <a href="http://subtraction.com">Khoi Vinh&#8217;s</a> and <a href="http://fthrwght.com/">Allan Cole&#8217;s</a> <a href="http://basicmaths.subtraction.com/demo/">Basic Maths</a> WordPress theme on how to do that. The beauty of this technique is that no JavaScript is required and everything is processed through WordPress and PHP so nothing can get blocked by security settings on a visitor&#8217;s browsers. This method also solves the problem with blogs that have non-technical writers who aren&#8217;t accustomed to using the HTML tab in the Post Editor or aren&#8217;t familiar with HTML markup and it allows writers to just write. So how do we do this:</p>
<p><img class="alignnone size-large wp-image-3273" src="http://bui4ever.com/files/2009/12/basic-maths-wordpress-theme-2-column-sample-725x366.jpg" alt="basic-maths-wordpress-theme-2-column-sample" width="725" height="366" /></p>
<h3>Directions</h3>
<p>You will need a <em>functions.php</em> file in the theme template folder. If it already exists, open it. Otherwise, open you&#8217;re favorite HTML editor (I use <a href="http://www.emeraldeditor.com/">Emerald Editor</a> for the PC and <a href="http://www.barebones.com/products/TextWrangler/">TextWrangler</a> for the Mac) and save the blank file as <em>functions.php</em> inside the WordPress theme template folder.</p>
<p>Open up the <em>functions.php</em> file and paste the code below anywhere inside the file. Be sure that you don&#8217;t accidentally place this function inside another function or you&#8217;ll get a blank screen when trying to load your website. If you&#8217;re new to the <em>functions.php</em> file, it may take some trial and error to get this right.</p>
<p>[sourcecode language="PHP"]<br />
//	Page Paragraph column short code (http://basicmaths.subtraction.com/demo/)<br />
//	Right<br />
function basic_rightcolumn($atts, $content = null) {<br />
	return &#8216;&lt;div class=&quot;&lt;span class=&quot;&gt;rightcolumn&quot;&gt;&#8217; . $content . &#8216;&lt;/div&gt;&#8217;;<br />
}<br />
add_shortcode(&quot;rightcolumn&quot;, &quot;basic_rightcolumn&quot;);</p>
<p>//	Top<br />
function basic_topcolumn($atts, $content = null) {<br />
	return &#8216;&lt;div class=&quot;&lt;span class=&quot;&gt;topcolumn&quot;&gt;&#8217; . $content . &#8216;&lt;/div&gt;&#8217;;<br />
}<br />
add_shortcode(&quot;topcolumn&quot;, &quot;basic_topcolumn&quot;);</p>
<p>//	Left<br />
function basic_leftcolumn($atts, $content = null) {<br />
	return &#8216;&lt;div class=&quot;&lt;span class=&quot;&gt;leftcolumn&quot;&gt;&#8217; . $content . &#8216;&lt;/div&gt;&#8217;;<br />
}<br />
add_shortcode(&quot;leftcolumn&quot;, &quot;basic_leftcolumn&quot;);<br />
[/sourcecode]</p>
<p>So what does all of this code do exactly? Let&#8217;s look at each part of code individually and the how to use it when writing Posts or Pages.</p>
<p>The first part of code:</p>
<p>[sourcecode language="PHP"]<br />
//	Right<br />
function basic_rightcolumn($atts, $content = null) {<br />
	return &#8216;&lt;div class=&quot;&lt;span class=&quot;&gt;rightcolumn&quot;&gt;&#8217; . $content . &#8216;&lt;/div&gt;&#8217;;<br />
}<br />
add_shortcode(&quot;rightcolumn&quot;, &quot;basic_rightcolumn&quot;);<br />
[/sourcecode]</p>
<p>sets up a new WordPress Shortcode, <code>[rightcolumn][/rightcolumn]</code>, that you can use in your Posts and Pages. So when you write a Post or Page and you enclose some text in the Shortcode, that will cause WordPress to wrap your text in HTML markup. For example, if I was to write:</p>
<pre>[rightcolumn]This should appear in the right column.[/rightcolumn]</pre>
<p>and then Publish the Post, looking at the source code of the published page, I should see:</p>
<pre>&lt;div class="rightcolumn"&gt;&lt;p&gt;This should appear in the right column.&lt;/p&gt;&lt;/div&gt;</pre>
<p>The second part of code:</p>
<p>[sourcecode language="PHP"]<br />
//	Top<br />
function basic_topcolumn($atts, $content = null) {<br />
	return &#8216;&lt;div class=&quot;&lt;span class=&quot;&gt;topcolumn&quot;&gt;&#8217; . $content . &#8216;&lt;/div&gt;&#8217;;<br />
}<br />
add_shortcode(&quot;topcolumn&quot;, &quot;basic_topcolumn&quot;);<br />
[/sourcecode]</p>
<p>sets up another new WordPress Shortcode,<code>[topcolumn][/topcolumn]</code>, that maybe necessary depending on how your theme is laid out. The biggest advantage I see with the <code>[topcolumn]</code> is that you can use it right after the <code>[leftcolumn]</code> and <code>[rightcolumn]</code> to fix any CSS float issues.</p>
<p>The final part of code:</p>
<p>[sourcecode language="PHP"]<br />
//	Left<br />
function basic_leftcolumn($atts, $content = null) {<br />
	return &#8216;&lt;div class=&quot;&lt;span class=&quot;&gt;leftcolumn&quot;&gt;&#8217; . $content . &#8216;&lt;/div&gt;&#8217;;<br />
}<br />
add_shortcode(&quot;leftcolumn&quot;, &quot;basic_leftcolumn&quot;);<br />
[/sourcecode]</p>
<p>adds <code>&lt;div class="leftcolumn"&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</code> to whatever is enclosed in the <code>[leftcolumn][/leftcolumn]</code> Shortcode.</p>
<p>Now you need to style those divs appropriately in order for the two columns to appear. This is what I use in my style sheet, but you mileage may vary:</p>
<p>[sourcecode language="CSS"]<br />
.entry .leftcolumn, .entry .rightcolumn {width: 50%; }<br />
.entry .leftcolumn {float: left;  }<br />
.entry .rightcolumn {float: right; }<br />
.entry .leftcolumn p {padding-right: 0.5em; }<br />
.entry .rightcolumn p {padding-left: 0.5em; }<br />
.entry .topcolumn {clear: both; }<br />
[/sourcecode]</p>
<p>Now to use this, you start a new Post or you can edit an existing Post, and decide where you want the 2-columns to appear and write:</p>
<pre>[leftcolumn]This is the stuff that I'll be putting in my left column.[/leftcolumn]
[rightcolumn]This is the stuff that will go into the right column. Isn't it pretty?[/rightcolumn]
[topcolumn]This will span the entire width and be a normal one-column paragraph.[/topcolumn]</pre>
<p>With the Shortcodes, you can put them next to each other or do a hard-return, it doesn&#8217;t matter. In actuality, the WordPress Visual Editor will probably move it all to one line. You can also put <code>[rightcolumn]</code> before the <code>[leftcolumn]</code> as the right column will always be right so long as you have the CSS correct.</p>
<p><img class="alignnone size-large wp-image-3322" src="http://bui4ever.com/files/2009/12/wordpress-two-column-post-visual-editor-sample-725x173.jpg" alt="wordpress-two-column-post-visual-editor-sample" width="725" height="173" /></p>
<p>The only thing you can&#8217;t do is something like this:</p>
<pre>[leftcolumn]This is the stuff that I'll be putting in my left column.[/leftcolumn]
[topcolumn]This will span the entire width and be a normal one-column paragraph.[/topcolumn]
[rightcolumn]This is the stuff that will go into the right column. Isn't it pretty?[/rightcolumn]</pre>
<p>as you&#8217;ll have some weird styling errors.</p>
<h3>Example</h3>
<p><div class="leftcolumn"><p>It wouldn&#8217;t be any good without a sample to show right? So if you copied the code and put it in the <em>functions.php</em> file correctly, then in the WordPress Post Editor, you should be able to use the new Shortcodes to create a two-column post article. Also don&#8217;t forget that you need to style the <em>divs</em> in-order for this to work properly.</p></div>  <div class="rightcolumn"><p>If you notice that you still only have one-column, but no errors, check your source code for the chunk of code to see if it the Shortcode is being properly called. If it is, that means you&#8217;re missing the style information in the style sheet.</p></div> <div class="topcolumn"><p>Here&#8217;s a wide column that returns to &#8220;normal&#8221; and spans the entire width. You don&#8217;t necessarily need to use the <code>[topcolumn]</code> Shortcode, but if you notice that your having design float issues, then you need to use the<br />
<code>[topcolumn]</code> Shortcode on the paragraph immediately following the two columns. Make sure you have <code>clear: both;</code> entered into your style sheet under<code>.topcolumn</code>.</p>
<p>I would recommend doing this as good practice anyways; especially if one column is longer than the other column.</p></div> </p>
<h3>Conclusion</h3>
<p>There are a number of ways you can accomplish two-column post layouts. There a number of <a href="http://plugins.jquery.com/project/columnize">jQuery</a> <a href="http://www.systemantics.net/en/columnize">techniques</a> including this <a href="http://welcome.totheinter.net/columnizer-jquery-plugin/">WordPress plugin</a> that accomplishes the task but I&#8217;m a big fan of less. The less plugins you have to use, the faster your website will load. Also you want to make it as easy as possible for non-techie writers to be able to implement easily. One of the hardest part is to have the non-techie writer try to use the HTML Editor, see a garble of code, mess around and everything is screwed up. Extreme case, but it happens. With the use of WordPress Shortcodes, they can easily implement the feature from the Visual Editor and focus on writing.</p>
<p>Thank you to the Basic Maths WordPress Theme for the very useful code.</p>
<p><strong>UPDATE (2010-05-17):</strong> <a href="http://www.wprecipes.com/wordpress-hack-automatically-output-the-content-in-two-columns">Here&#8217;s a trick</a> by <a href="http://www.wprecipes.com/">WPRecipes.com</a> on how to automatically output content into two columns using the functions.php for those who are looking for a method that doesn&#8217;t require users to remember code.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2010/01/01/wordpress-how-to-break-content-into-two-columns/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>iFrames in WordPress Post Editor Using Shortcodes and Custom Fields</title>
		<link>http://richbui.com/2009/12/23/iframes-in-wordpress-post-editor-using-shortcodes-and-custom-fields/</link>
		<comments>http://richbui.com/2009/12/23/iframes-in-wordpress-post-editor-using-shortcodes-and-custom-fields/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 04:41:57 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[VividVisions.com]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WordPress Multi-User]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=3109</guid>
		<description><![CDATA[I was looking for a way to embed a Google Map into one of my Reviews, but the FCKEditor, otherwise known as the Visual (or pretty) Editor, would remove any iFrame code. Posting it via the HTML tab works so long as you don&#8217;t click to the Visual tab, as it will strip the iFrame [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for a way to embed a Google Map into one of my Reviews, but the FCKEditor, otherwise known as the Visual (or pretty) Editor, would remove any iFrame code. Posting it via the HTML tab works so long as you don&#8217;t click to the Visual tab, as it will strip the iFrame code. This can get pretty frustrating. I didn&#8217;t want to have to install another plugin to do iFrames either. Fortunately through a quick Google search I found Walt had a very <a href="http://www.vividvisions.com/2009/02/11/wordpress-add-iframes-to-your-post/">elegant solution</a> using WordPress Shortcodes and Custom Fields.</p>
<p>His technique worked out quite nicely and will allow me to post other iFrame content while still using the Visual Editor and not worry about the iFrame code getting stripped out. So I&#8217;m reposting his technique here for future reference.</p>
<p>You need to have a <em>functions.php</em> file in your theme for this to work. If it doesn&#8217;t exist, just create one and drop this line of code into it, making sure it is wrapped by &lt;?php and ?&gt; (thanks to <a href="http://www.smick.net/">Smick</a> for reminding me):</p>
<p>[sourcecode language="php"]<br />
function field_func($atts) {<br />
global $post;<br />
$name = $atts['name'];<br />
if (empty($name)) return;</p>
<p>return get_post_meta($post-&gt;ID, $name, true);<br />
}</p>
<p>add_shortcode(&#8216;field&#8217;, &#8216;field_func&#8217;);<br />
[/sourcecode]</p>
<p>Upload that file into the theme folder that you are using or want to enable iFrames for.</p>
<div class="text-adsense"><script type="text/javascript"><!--
	google_ad_client = "pub-2950609764289329";
	google_ad_slot = "0427355621";
	google_ad_width = 468;
	google_ad_height = 60;
	//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>
<p>Now any anytime you want to embed a Google Map iFrame, all you have to do in your Post Editor is decide where you want the iFrame to appear and put:</p>
<pre><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=106+W.+25th+Ave.,+San+Mateo,+CA+94403&amp;sll=37.0625,-95.677068&amp;sspn=49.71116,73.300781&amp;ie=UTF8&amp;hq=&amp;hnear=106+W+25th+Ave,+San+Mateo,+California+94403&amp;ll=37.543998,-122.307227&amp;spn=0.000766,0.001118&amp;t=h&amp;z=20&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=106+W.+25th+Ave.,+San+Mateo,+CA+94403&amp;sll=37.0625,-95.677068&amp;sspn=49.71116,73.300781&amp;ie=UTF8&amp;hq=&amp;hnear=106+W+25th+Ave,+San+Mateo,+California+94403&amp;ll=37.543998,-122.307227&amp;spn=0.000766,0.001118&amp;t=h&amp;z=20" style="color:#0000FF;text-align:left">View Larger Map</a></small></pre>
<p>Then scroll down to the Custom Fields box and under <strong>Name</strong> write iframe and under <strong>Value</strong> paste in the exact code. Here&#8217;s an example:</p>
<p><img class="alignnone size-full wp-image-3114" src="http://richbui.com/files/2009/12/WordPress-iframe-shortcode-functions-example.jpg" alt="WordPress-iframe-shortcode-functions-example" width="688" height="271" /></p>
<p>Make sure you click<strong> Add Custom Field</strong> to save the entry or it won&#8217;t show up in your post when you publish or update the changes. Now you can easily edit the existing post using the Visual Editor and not have to worry about losing any of your iFrame code.</p>
<p>Also note that unlike a plugin where you can switch themes and the code will continue to work, once you switch to a new theme, the iFrame code will no longer appear in any of your posts so make sure to include this line of code in your new theme. You could also save yourself the headache and make this function into a WordPress plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2009/12/23/iframes-in-wordpress-post-editor-using-shortcodes-and-custom-fields/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>WordPress MU and File Upload Permission Issues</title>
		<link>http://richbui.com/2009/07/30/wordpress-mu-file-upload-permission-issues/</link>
		<comments>http://richbui.com/2009/07/30/wordpress-mu-file-upload-permission-issues/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 19:56:09 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Dedicated Virtual]]></category>
		<category><![CDATA[Media Temple]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WordPress Multi-User]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=2663</guid>
		<description><![CDATA[Does this sound familiar to you: &#8220;The uploaded file could not be moved to the upload folder.&#8221; If it does and you&#8217;re trying to find a solution, read on. This took a bit for me to figure out, had me banging my head for a little awhile. I&#8217;m on Media Temple (dv) Dedicated Virtual hosting [...]]]></description>
			<content:encoded><![CDATA[<p>Does this sound familiar to you: &#8220;The uploaded file could not be moved to the upload folder.&#8221; If it does and you&#8217;re trying to find a solution, read on.<span id="more-2663"></span></p>
<p>This took a bit for me to figure out, had me banging my head for a little awhile. I&#8217;m on Media Temple (dv) Dedicated Virtual hosting and have two installations of WordPress Multi-User (MU) each pointing to a different IP address. One day, I was trying to upload a file via FireZilla FTP to my <em>/wp-contents/blogs.dir/[blog.id]/</em> folder and it said permission denied. I thought that was odd, but stupidly did a CHOWN on the entire httpdocs folder (this is Media Temple&#8217;s public_html folder) to set it to the account user. Problem solved. Unfortunately then the WordPress Media uploader stopped function and I was getting the message: &#8220;The uploaded file could not be moved to the upload folder.&#8221;</p>
<div class="text-adsense"><script type="text/javascript"><!--
	google_ad_client = "pub-2950609764289329";
	google_ad_slot = "0427355621";
	google_ad_width = 468;
	google_ad_height = 60;
	//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>
<p>So did a Google search and found <a href="http://mu.wordpress.org/forums/topic/12397">a</a> <a href="http://mu.wordpress.org/forums/topic/9888">few</a> <a href="http://premium.wpmudev.org/forums/topic/user-cant-upload-files">informative</a> forum threads discussing the problem and possible solutions:</p>
<ul>
<li><em>CHMOD</em> the <em>wp-content</em> folder to <em>777</em>, which is a HUGE security risk. I don&#8217;t recommend you do this, but it works for some people.</li>
<li><em>CHMOD</em> the <em>wp-content</em> folder to <em>755</em>, doesn&#8217;t really work</li>
<li><em>CHOWN</em> the <em>blogs.dir</em> folder to <em>nobody</em>, BINGO!</li>
</ul>
<p>So the answer turns out to be that the <em>blogs.dir</em> folder&#8217;s ownership has to be set to nobody or essentially the server. If the ownership is set to the user account, you are able to upload content to the <em>blogs.dir</em> folder, but WordPress Media Uploader can no longer. So to solve the problem, I SSH into the server and browsed to the wp-content folder and:</p>
<pre>chown apache blogs.dir -R</pre>
<p>Afterwards, the WordPress Media Uploader was able to upload files once again. It&#8217;s funny because WPMU version 2.8.1 and prior never had an issue like this, so not sure what was changed.</p>
<p><strong>2009-01-25 UPDATE:</strong> So I ran into the permissions issue again. Oddly, it cropped up after I added another account on my MediaTemple (dv). I followed my steps above and it no longer seemed to work for me. After spending a couple of frustrating hours on Google for a solution, I decided to take some people&#8217;s <a href="http://www.wains.be/index.php/2007/07/19/wordpress-the-uploaded-file-could-not-be-moved-to/">advice</a> and <a href="http://kb.mediatemple.net/questions/050/How+can+I+turn+off+safe_mode+on+an+%28dv%29+Dedicated-Virtual+Server+with+Plesk%3F">turn-off Safe_Mode</a> (<a href="http://kb.mediatemple.net/questions/35/PHP+Safe+Mode,+problems+and+work-arounds">read more</a>). Obviously there are some inherent security issues with doing so, but since I don&#8217;t grant anyone else access to my web server, it shouldn&#8217;t be a huge problem. I also had to do:</p>
<pre>chown apache:apache blogs.dir -R</pre>
<p>since that was the account my web-server uses to write. Things are now working as they should.</p>
<p><strong>2011-01-14 UPDATE:</strong> See the directions on this website as well: http://hereshowi.com/wordpress/fix-wordpress-permissions-on-mediatemple-dv-server.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2009/07/30/wordpress-mu-file-upload-permission-issues/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Migrated To WordPress MU 2.7</title>
		<link>http://richbui.com/2009/02/01/migrated-to-wordpress-mu-27/</link>
		<comments>http://richbui.com/2009/02/01/migrated-to-wordpress-mu-27/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 18:49:16 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Brian's Threaded Comments]]></category>
		<category><![CDATA[domain mapping]]></category>
		<category><![CDATA[Donncha O Caoimh]]></category>
		<category><![CDATA[Happy Cog Studios]]></category>
		<category><![CDATA[Lester Chan]]></category>
		<category><![CDATA[Viper007Bond]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WP Comment Remix]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=2482</guid>
		<description><![CDATA[Thanks to Donncha&#8217;s ever amazing work, I&#8217;ve finally upgraded my site from WordPress MU 2.6.5 to WordPress MU (WPMU) 2.7. There were some hiccups during the initial WPMU 2.7 beta upgrade, so I ended up wiping all the WordPress files except for my config file (wp-config.php) and the contents of blogs.dir inside the wp-content folder [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://ocaoimh.ie/">Donncha&#8217;s</a> ever amazing work, I&#8217;ve finally upgraded my site from WordPress MU 2.6.5 to WordPress MU (WPMU) 2.7. There were some hiccups during the initial <a href="http://ocaoimh.ie/2009/01/22/wordpress-mu-27-beta/">WPMU 2.7 beta upgrade</a>, so I ended up wiping all the WordPress files <strong>except</strong> for my config file (wp-config.php) and the contents of blogs.dir inside the wp-content folder and re-uploading all the files from the <a href="http://ocaoimh.ie/2009/01/28/wordpress-mu-27/">stable release WPMU 2.7</a>. So for those who are having a problem with their WPMU installation after an upgrade, you could always delete everything but the wp-config.php file and blogs.dir folder and re-upload all the files fresh. I&#8217;ve found doing a drag-and-drop via FTP of new files on top of old files has never failed to produce errors. Another good option might be <a href="http://svn.automattic.com/wordpress-mu/trunk/">Subversion</a>.</p>
<p>So how is the new WordPress MU 2.7, the new user interface, and functionality? Well so far, it&#8217;s excellent. Read on to hear more about my thoughts on the new WPMU 2.7.<span id="more-2482"></span></p>
<h3>New Changes</h3>
<p><strong>Completely new user interface back-end.</strong> With the introduction of WordPress 2.5/WPMU 2.5, the administration user interface was quite different. It was the &#8220;prettiest&#8221; to date, easier to use, <a href="http://bobulate.com/2007/07/22/how-not-to-get-noticed/">designed</a> in some part by <a href="http://www.zeldman.com/2008/03/29/wordpress-25-unleashed/">Happy Cog Studios</a> (<a href="http://www.happycog.com/design/wordpress/">more background here</a>), but cumbersome to navigate when trying close comments, change the post date/time, or change authors. Now with the new WP/WPMU 2.7, the admin back-end has changed yet again; for the better this time. What the 2.5 admin back-end did was to refocus on people who write rather than developers as a majority of WordPress users are not always developers. The 2.7 admin back-end does a very good job of organizing all the important &#8220;writing&#8221; tools within reach and in sensible locations. I find people who use the new 2.7 back-end spend less time looking for things such as how to change a published post back to a draft, future posting, and so forth. Things are much easier to find and use now, although it will take a bit of time getting use to Design is now Appearance and a few other things have been moved around.</p>
<p><strong>Viper007Bond&#8217;s Admin Bar Plugin.</strong> I&#8217;ve used Viper007Bond&#8217;s Admin Bar plugin (<a href="http://wordpress.org/extend/plugins/wordpress-admin-bar/">download from WordPress Plugin Directory</a>) for quite a while now and have it deployed on my office&#8217;s WPMU intranet to much rave reviews. I&#8217;m particularly excited to find that as of WPMU 2.7, it is now <a href="http://www.viper007bond.com/wordpress-plugins/wordpress-admin-bar/">included into the WP core</a>! Congrats Viper! The Admin Bar is great because it gives users a single point of access through drop down menus on the front-end to all of the back-end admin tasks such as posting, comment moderation, and so forth. User of WP 2.7 will still have to download and activate the Admin Bar as a plugin, whereas WPMU 2.7 users will have it built-in, but disabled on the front page by default. To turn it on for the front-end, login and go to Settings &gt; Admin Bar and under Show the admin menu bar, check the box for On the site. If it doesn&#8217;t appear on your front page, most likely the theme you are using is missing wp_head() and wp_footer() template tags (directions <a href="http://www.themelab.com/2008/04/22/5-quick-ways-to-fix-up-your-wordpress-theme/">here</a> and <a href="http://www.thewpmag.com/issue-1/make-a-theme-series-part-1-the-loop/">here</a>). Also if you are running WPMU pre-2.7, I highly suggest removing the Admin Bar plugin before upgrading or you will get the dreaded &#8220;already defined&#8221; php error.</p>
<p><strong>Comments: Reply, Threading, and Pagination</strong>. WP/WPMU 2.7 also opens up a host of new template tags, one of which is really exciting is the new functionality for comments. No longer is there a need to use plugins (you still could I guess) such as <a href="http://pressography.com/plugins/wp-comment-remix/">WP Comment Remix</a> (a great plugin BTW), <a href="http://meidell.dk/archives/2004/09/04/nested-comments/">Brian&#8217;s Threaded Comments</a>, and/or <a href="http://www.keyvan.net/code/paged-comments/">WordPress Paged Comments</a> as WP/WPMU 2.7 has all that functionality built-in. Although it&#8217;s worth noting that built-in WP/WPMU features such as these tend to be conversative and not have as many customization options so be expecting more plugins like Lester Chan&#8217;s <a href="http://lesterchan.net/wordpress/2008/11/04/wp-commentnavi-100-beta/comment-page-1/">WP-CommentNavi</a> that take the existing and expands it with more options. To take full advantage of the new comment system, you will have to make some changes to your theme(s). Directions on how to do that can be found at the <a href="http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7/Enhanced_Comment_Display">WordPress Codex</a>. I look forward to incorporating these new features into my theme, just not sure when I&#8217;ll be able to do so.</p>
<p><strong>Automatic Plugin Upgrades, kind of.</strong> Another cool new feature of WP/WPMU 2.7 is the inclusion of searching for new plugins from the WP/WPMU back-end as opposed to visiting the <a href="http://wordpress.org/extend/plugins/">WordPress Plugin Directory</a>. You can also install or upgrade plugins found in the Plugin Directory directly to your WordPress install with the new One-click plugin install feature. I haven&#8217;t been able to get it properly working for reasons unknown at the moment, and continue to rely on an FTP program to install and upgrade my plugins. I do have it working on my office&#8217;s WPMU intranet though.</p>
<p><strong>Media Uploader Works With Flash 10.</strong> It was quite annoying when Adobe released Flash 10 and made some security changes that affected SWFUpload (<a href="http://swfupload.org/forum/generaldiscussion/551">read more here</a>) because it rendered the WordPress media flash uploader unusable in that when you pressed the Select Files, nothing would happen. Fortunately WordPress 2.7 fixes that issue and now we&#8217;re back in business!</p>
<p>There are a host of other features that I won&#8217;t spend time discussing, but if you are interested, you can read the entire <a href="http://codex.wordpress.org/Version_2.7">WP/WPMU 2.7 feature list</a> to see other new included features such as the Sticky Post feature.</p>
<h3>Conclusion</h3>
<p>WordPress MU 2.7 represents how far WPMU and WordPress have come. WordPress usage is growing and is being used by major outlets such as CNN, Time, Ford, and so forth for their blogging software (read the USAToday interview of WordPress co-creator and Automattic co-founder Matt Mullenweg <a href="http://www.usatoday.com/tech/news/2009-01-27-wordpress-creator-blog_N.htm?csp=34">here</a>).</p>
<p>With the new 2.7 administration panel and features, WordPress is demonstrating how Open Source can be a workable and thriving model.</p>
<p>As an aside, for those who are using Donncha&#8217;s wonderful <a href="http://ocaoimh.ie/2008/08/11/wordpress-mu-domain-mapping-01/">Domain Mapping plugin</a>, there is a new update that addresses one of the <a href="http://bui4ever.com/2008/10/problems-with-donnchas-domain-mapping-plugin/">biggest flaws</a> (link to the updated files in the comments). It&#8217;s worth noting that the problem still exist, but only affects those using the Flash Uploader. So the good news is that you can now finally upload images to a domain mapped subdomain, but the bad news is that it only works with the file browser uploader.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2009/02/01/migrated-to-wordpress-mu-27/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SlideShowPro, SlideShowPro Director, and WordPress</title>
		<link>http://richbui.com/2008/11/05/slideshowpro-slideshowpro-director-and-wordpress/</link>
		<comments>http://richbui.com/2008/11/05/slideshowpro-slideshowpro-director-and-wordpress/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 13:37:29 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[SlideShowPro]]></category>
		<category><![CDATA[SlideShowPro Director]]></category>
		<category><![CDATA[SlideShowPro.net]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=2290</guid>
		<description><![CDATA[For my photography site, I&#8217;ve been trying to figure out a way to best display slideshows quickly and easily on a WordPress install, as my photography site is entirely run by WordPress. After a bit of research, and trial &#38; error, I&#8217;ve got the perfect technique down. Introduction For those who don&#8217;t know what SlideShowPro [...]]]></description>
			<content:encoded><![CDATA[<p>For my <a href="http://buiphotography.com">photography site</a>, I&#8217;ve been trying to figure out a way to best display slideshows quickly and easily on a WordPress install, as my photography site is entirely run by WordPress. After a bit of research, and trial &amp; error, I&#8217;ve got the perfect technique down.<span id="more-2290"></span></p>
<h3>Introduction</h3>
<p>For those who don&#8217;t know what <a href="http://slideshowpro.net/">SlideShowPro</a> is, it is a Flash based software that allows you to easily create Flash slideshows for your website. It&#8217;s a great piece of software for only $29.99. It&#8217;s quite configurable and relatively easy to setup and use. <a href="http://slideshowpro.net/products/slideshowpro_director/slideshowpro_director">SlideShowPro Director</a> is a web based application that is used in conjunction with SlideShowPro for an additional $29.99 per domain. It&#8217;s not required, but I highly recommend SlideShowPro Director as it will save you enormous time in creating slideshows with SlideShowPro.</p>
<h3>Requirements</h3>
<ul>
<li>WordPress/WordPress MU installed and functioning</li>
<li>SlideShowPro</li>
<li>SlideShowPro Director (optional)</li>
<li><a href="http://kimili.com/plugins/kml_flashembed/wp">Kimili Flash Embed for WordPress plugin</a> installed</li>
</ul>
<h3>Directions</h3>
<ol>
<li>Download Kimili Flash Embed for WordPress plugin, upload to WP-Contents/Plugins folder and activate</li>
<li>Download the SlideShowPro Flash add-in module, <a href="http://wiki.slideshowpro.net/SSPfl/Installation">setup, and configure it</a>. Downoad, <a href="http://wiki.slideshowpro.net/SSPdir/Installation">setup, and configure</a> SlideShowPro Director if you opted to purchase it.</li>
<li>Create a slideshow following the <a href="http://wiki.slideshowpro.net/SSPfl/QuickStart">Quick Start Guide</a> to create a slideshow. If you are using SlideShowPro Director, use these directions <a href="http://wiki.slideshowpro.net/SSPdir/QuickStart">here</a>. Make sure you remember where you published your SWF and XML files to.</li>
<li>Login to your WordPress dashboard and create a new Post or Page</li>
<li>Click on the Media Upload button (the star button next to &#8220;Add media:&#8221;) and upload both the SWF and XML file. Most likely, you will have to change the paths inside the XML file to match the location of where the uploaded file is being stored based on your permalink structure. If you are using SlideShowPro Director, you will only need to upload the SWF file.</li>
<li>Copy the link that appears in the Link URL field (e.g. http://bui4ever.com/files/2008/11/ar-carnival-cruise-d02.swf)</li>
<li>Use this code where you want the slideshow to appear: <code>[ kml_flashembed movie="/path/to/your/movie.swf" height="300" width="300" /]</code> with <strong>NO</strong> space between &#8220;[&#8221; and &#8220;kml_flashembed&#8221; and be sure to replace /path/to/your/movie.swf with the URL that you copied in Step 6. Change the height and width to match the slideshow. The <strong>default</strong> dimensions for a slideshow created in SlideShowPro is <strong>548</strong> width x <strong>373</strong> height.</li>
<li>Click Save or Publish and you should see the slideshow appear. If not, check that you followed all the steps exactly. If no images appear, most likely the paths in the XML file are wrong.</li>
</ol>
<h3>Conclusion</h3>
<p>These directions are based off the information that I found <a href="http://forums.slideshowpro.net/viewtopic.php?id=4949">here</a>. For the most part, you could create a physical directory on your webserver if you want more control, but I didn&#8217;t like that solution as it involves a two step process: using a FTP program to upload the file and then embedding it into WordPress. My method is more elegant in that you use WordPress&#8217; file management system to store the Flash files and then plug the URL into the Kimili Flash Plugin. While this may not seem that important in a single WordPress install, if you use WordPress MU, you are quite aware that any physical directories created are accessible by all domains on that WordPress MU install (e.g. http://bui4ever.com/downloads/ is the same as http://buiphotography.com/downloads/) which can lead to file issue nightmares. By using the WordPress media uploading method, you allow others to upload their SlideShowPro slideshows without granting them dangerous FTP access and allow them to keep their content separate and organized. For the most part, this method works quickly and easily. Your mileage may vary, as I use SlideShowPro Director to house all my photos and thus negate the need (and fustration) of having to manually create an XML file. Also keep in mind that you need to grant access to <strong>all</strong> website that will be accessing SlideShowPro Director by using the crossdomain.xml file <a href="http://wiki.slideshowpro.net/SSPdir/Installation">tip</a> (see Step 4).</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2008/11/05/slideshowpro-slideshowpro-director-and-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6.3 and Media Flash Uploader</title>
		<link>http://richbui.com/2008/10/27/wordpress-263-and-media-flash-uploader/</link>
		<comments>http://richbui.com/2008/10/27/wordpress-263-and-media-flash-uploader/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 22:29:43 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Art Vandelay]]></category>
		<category><![CDATA[MacNN]]></category>
		<category><![CDATA[Otto42]]></category>
		<category><![CDATA[ottodestruct.com]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=2274</guid>
		<description><![CDATA[I&#8217;ve been having a problem for the last four days trying to figure out why the WordPress 2.6.3 Media Flash Uploader hasn&#8217;t been working. I would click and click the button but it wouldn&#8217;t pop-up the file browser to select the files for upload. I thought it was a plugin issue, but finally figured out [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been having a problem for the last four days trying to figure out why the WordPress 2.6.3 Media Flash Uploader hasn&#8217;t been working. I would click and click the button but it wouldn&#8217;t pop-up the file browser to select the files for upload. I thought it was a plugin issue, but finally figured out what the problem was: I foolishly updated to Adobe Flash player version 10.<span id="more-2274"></span></p>
<p>I came upon this epiphany via Google search and found this <a href="http://wordpress.org/support/topic/164999">sticky thread</a> by <a href="http://ottodestruct.com/">Otto42</a>. If you look down at number 3:</p>
<blockquote><p>3. Update your Adobe Flash to the latest version (esp you Linux users!): <a href="http://www.adobe.com/products/flashplayer/">Flash</a>.<br />
NOTE: NOT TO VERSION 10. The new Flash version 10 is incompatible. The latest version 9 of Flash is what you want. There will likely NOT be a fix for this any time soon, since the problem is actually with Flash 10 itself. Stick with Flash 9 for the time being.</p></blockquote>
<p>therein, lies the answer.</p>
<p>So now how does one roll back to Flash Player 9? A Google search produced <a href="http://forums.macnn.com/82/applications/379887/i-need-downgrade-flash-player-9-a/">this result</a> on MacNN Forums with a solution by <a rel="nofollow" href="http://forums.macnn.com/members/art-vandelay/">Art Vandelay</a>. He suggested deleting the Flash Player 10 plugin and using the <a href="http://www.apple.com/support/downloads/macosx1055comboupdate.html">Mac OS X 10.5.5 software update</a> (file size: 601MB) which includes Flash Player 9.</p>
<p><strong>2008-11-01 UPDATE:</strong> So how to roll back to Flash Player 9 is easy. First delete the flash player plugins by going to /Library/Internet Plug-Ins/ and delete Flash Player.plugin, flashplayer.xpt and anything else that says Flash Player. Download the Mac OS X 10.5.5 software update and run it again. It will ask you to restart your computer and after restart, open up FireFox and load up <a href="http://www.adobe.com/products/flash/">http://www.adobe.com/products/flash/</a> and right click on the flash movie, at the bottom it should say &#8220;About Adobe Flash Player 9&#8243;.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2008/10/27/wordpress-263-and-media-flash-uploader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems With Donncha&#8217;s Domain Mapping Plugin</title>
		<link>http://richbui.com/2008/10/21/problems-with-donnchas-domain-mapping-plugin/</link>
		<comments>http://richbui.com/2008/10/21/problems-with-donnchas-domain-mapping-plugin/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 23:41:37 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[buiphotography.com]]></category>
		<category><![CDATA[Donncha O Caoimh]]></category>
		<category><![CDATA[ocaoimh.ie]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=2248</guid>
		<description><![CDATA[I have been using Donncha&#8217;s very cool WordPress MU plugin, Domain Mapping, for awhile now with great success. Before anyone thinks anything, this post isn&#8217;t to highlight anything bad about the Domain Mapping plugin, but rather assure other users they are not alone when they experience issues with using the plugin. Donncha is a great [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using <a href="http://ocaoimh.ie/">Donncha&#8217;s</a> very cool <a href="http://bui4ever.com/2008/08/domain-mapping-for-wpmu-that-makes-sense/">WordPress MU plugin</a>, Domain Mapping, for awhile now with great success. Before anyone thinks anything, this post isn&#8217;t to highlight anything bad about the Domain Mapping plugin, but rather assure other users they are not alone when they experience issues with using the plugin. Donncha is a great assets to the <a href="http://mu.wordpress.org">WPMU community</a> and he is obviously very busy with <a href="http://automattic.com/">Automattic</a> projects.<span id="more-2248"></span></p>
<p>The problems that I have noticed with the plugin, so far, when used with WPMU 2.6.2 is that:</p>
<ul>
<li>When you write a post and upload a picture via the Media uploader, the image uploads fine, but when you try to embed an image into the post: the Media uploader frame goes blank and the image is not embedded in FireFox and Safari; or you get a host of security error messages and <a href="http://bui4ever.com/files/2008/10/picture-1.png">permission denied</a> in Internet Explorer and then you get the <a href="http://bui4ever.com/files/2008/10/picture-21.png">login screen</a>.</li>
<li>In the Write Post screen, when you try to &#8220;Add New Category&#8221; and click Add, the new category is not created.</li>
<li>The <a href="http://bui4ever.com/files/2008/10/flash-uploader.png">Flash Uploader</a> reverts to the <a href="http://bui4ever.com/files/2008/10/browser-uploader.png">browser uploader</a> (uploading multiple files vs single files) for the <strong>first</strong> picture uploaded, but changes to the Flash uploader afterward.</li>
<li>You will sometimes get a funky error when trying to activate/deactivate multiple plugins simultaneously.</li>
</ul>
<p>I&#8217;m not 100% sure, but I think with WPMU version 2.6.1 and previous, the Domain Mapping plugin worked completely, but since upgrading to WPMU 2.6.2, it&#8217;s been a bit off.</p>
<p>From what I can tell, it has something to do with authentication. For example, <a href="http://buiphotography.com">http://buiphotography.com</a> is mapped to <a href="http://buiphotography.bui4ever.com">http://buiphotography.bui4ever.com</a>. Based on what Donncha designed the Domain Mapping plugin to do:</p>
<blockquote><p>The domain mapping is for blogs only, not sites. The domain mapping hack always annoyed me because it mixed the two concepts up so much. <cite><a href="http://ocaoimh.ie/2008/08/11/wordpress-mu-domain-mapping-01/#comment-653418">Donncha</a></cite></p></blockquote>
<p>What that means is that http://buiphotography.bui4ever.com is the actual site. When you domain map http://buiphotography.com, both the URLS continue to work on the back-end (WordPress Dashboard/Administration Panel), but anyone visiting http://buiphotography.bui4ever.com, the URL will rewrite to http://buiphotography.com.</p>
<p>I think the problem lies in that you if you login via http://buiphotography.com/wp-admin/, the cookies do not populate to http://buiphotography.bui4ever.com. Some where there is where the media uploader is not getting the correct permissions. So I&#8217;m not sure if this problem existed before WPMU 2.6.2 or after.</p>
<p>There is one solution, but I personally (and I imagine Donncha) don&#8217;t find this the best solution, but it works. <a href="http://wpmututorials.com/">Andrea R.</a> <a href="http://mu.wordpress.org/forums/topic.php?id=9790#post-59095">suggested editing</a> all the blog fields from http://subdomain.domain.tld/ to http://domain.tld/.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2008/10/21/problems-with-donnchas-domain-mapping-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress MU 2.6.2 Released</title>
		<link>http://richbui.com/2008/09/30/wordpress-mu-262-released/</link>
		<comments>http://richbui.com/2008/09/30/wordpress-mu-262-released/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 20:18:07 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Donncha O Caoimh]]></category>
		<category><![CDATA[ocaoimh.ie]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=2179</guid>
		<description><![CDATA[Through the hardwork of Donncha, WordPress MU 2.6.2 is now ready for download. I&#8217;ll be updating soon. Hopefully the Sticky Posts feature is incorporated in 2.6.2. UPDATE: All the sites are now upgraded and running WordPress Multi-User 2.6.2.]]></description>
			<content:encoded><![CDATA[<p>Through the hardwork of <a href="http://ocaoimh.ie/2008/09/30/wordpress-mu-262/">Donncha</a>, WordPress MU 2.6.2 is now ready for <a href="http://mu.wordpress.org/download/">download</a>. I&#8217;ll be updating soon. Hopefully the <a href="http://en.blog.wordpress.com/2008/09/08/sticky-posts/">Sticky Posts</a> feature is incorporated in 2.6.2.</p>
<p><strong>UPDATE:</strong> All the sites are now upgraded and running WordPress Multi-User 2.6.2.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2008/09/30/wordpress-mu-262-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Gallery Exif and Displaying Shutter Speed</title>
		<link>http://richbui.com/2008/09/04/wordpress-gallery-exif-and-displaying-shutter-speed/</link>
		<comments>http://richbui.com/2008/09/04/wordpress-gallery-exif-and-displaying-shutter-speed/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 21:19:36 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[EXIF]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WordPress Multi-User]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=1958</guid>
		<description><![CDATA[Finally, an answer to my question about how to display the shutter speed in fractions when using the WordPress Gallery Exif. Anwer can be found at A Moment of EnLitenment.]]></description>
			<content:encoded><![CDATA[<p>Finally, an answer to my question about how to display the shutter speed in fractions when using the WordPress Gallery Exif. Anwer can be found at <a href="http://www.enliteart.com/blog/2008/08/30/quick-shutter-speed-fix-for-wordpress-exif/">A Moment of EnLitenment</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2008/09/04/wordpress-gallery-exif-and-displaying-shutter-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

