<?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; Autica</title>
	<atom:link href="http://richbui.com/tag/autica/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>Media Temple DV, Plesk, and Multiple FTP Accounts</title>
		<link>http://richbui.com/2009/06/26/media-temple-dv-plesk-multiple-ftp-accounts/</link>
		<comments>http://richbui.com/2009/06/26/media-temple-dv-plesk-multiple-ftp-accounts/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 23:02:45 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Autica]]></category>
		<category><![CDATA[Dedicated Virtual]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Media Temple]]></category>
		<category><![CDATA[mt]]></category>
		<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=2645</guid>
		<description><![CDATA[One of the things I didn&#8217;t realize when I switched from Autica to Media Temple Dedicated Virtual (dv) is that Plesk, unlike CPanel, doesn&#8217;t support creating multiple FTP accounts. Of course, this is by far would not sway my switching to Media Temple in the least bit as I hardly have the need for multiple [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things I didn&#8217;t realize when I switched from Autica to Media Temple Dedicated Virtual (dv) is that Plesk, unlike CPanel, doesn&#8217;t support creating multiple FTP accounts. Of course, this is by far would not sway my switching to Media Temple in the least bit as I hardly have the need for multiple FTP accounts. In any case, this is what  I had to do.<span id="more-2645"></span></p>
<p>There are some rare cases that I do need to have more than 1 FTP account and while you can&#8217;t do anything about it with Plesk, fortunately by SSHing into your (dv), you can create multiple FTP accounts. I found these directions on <a href="http://marcgrabanski.com/article/plesk-multiple-ftp-accounts-per-domain">Marc Grabanski&#8217;s website</a> who found the directions on <a href="http://kb.parallels.com/en/415">Parallels&#8217; knowledge base</a> and I&#8217;m going to reproduce the directions here on my website for my reference (and others). And in case it isn&#8217;t obvious, you replace <strong>USER_NAME</strong> with the actual user name you wish to use.</p>
<p>[sourcecode language="bash"]<br />
ssh domain.tld -l root<br />
/usr/sbin/useradd -d /your_domain/some/location -s /bin/false USER_NAME<br />
/usr/sbin/usermod -G psacln USER_NAME<br />
chmod 755 $HTTPD_VHOSTS_D/your_domain/some/location<br />
chown USER_NAME:psacln $HTTPD_VHOSTS_D/your_domain/some/location<br />
chmod 751 $HTTPD_VHOSTS_D/your_domain/httpdocs<br />
passwd USER_NAME<br />
[/sourcecode]</p>
<p>Also one user, Dan, noted that if you don&#8217;t set the user password first, it chowns it to the user without a password and won&#8217;t allow you to connect, so he recommends this:</p>
<p>[sourcecode language="bash"]<br />
ssh domain.tld -l root<br />
/usr/sbin/useradd -d /your_domain/some/location -s /bin/false USER_NAME<br />
passwd USER_NAME<br />
/usr/sbin/usermod -G psacln USER_NAME<br />
chmod 755 $HTTPD_VHOSTS_D/your_domain/some/location<br />
chown USER_NAME:psacln $HTTPD_VHOSTS_D/your_domain/some/location<br />
chmod 751 $HTTPD_VHOSTS_D/your_domain/httpdocs<br />
[/sourcecode] </p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2009/06/26/media-temple-dv-plesk-multiple-ftp-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6 and EXIF Extraction</title>
		<link>http://richbui.com/2008/08/02/wordpress-26-and-exif-extraction/</link>
		<comments>http://richbui.com/2008/08/02/wordpress-26-and-exif-extraction/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 07:08:21 +0000</pubDate>
		<dc:creator>Richard Bui</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[AN Hosting]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Autica]]></category>
		<category><![CDATA[eAccelerator]]></category>
		<category><![CDATA[EXIF]]></category>
		<category><![CDATA[IPTC]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[MidPhase]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://bui4ever.com/?p=943</guid>
		<description><![CDATA[I&#8217;ve been having this problem for a better part of almost two weeks now. I finally figured out the solution to the problem. With WordPress 2.6, one of the new built in features is the ability to extract EXIF data from a JPEG, store it in the database, and allow you to make a call [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been having this problem for a better part of almost two weeks now. I finally figured out the solution to the problem. With WordPress 2.6, one of the new built in features is the ability to extract <a href="http://en.wikipedia.org/wiki/Exchangeable_image_file_format">EXIF</a> data from a JPEG, store it in the database, and allow you to make a call for it. This is to complement the new built in gallery feature that was introduced in WordPress 2.5.<span id="more-943"></span></p>
<div id="attachment_945" class="wp-caption alignright" style="width: 267px"><a href="http://bui4ever.com/files/2008/08/picture-2.png"><img class="size-medium wp-image-945" src="http://bui4ever.com/files/2008/08/picture-2.png" alt="MAMP stands for Mac, Apache, MySQL, and PHP. It's great software that let's you develop offline." width="257" height="79" /></a><p class="wp-caption-text">MAMP stands for Mac, Apache, MySQL, and PHP. It&#039;s great software that let&#039;s you develop offline.</p></div>
<p>My problem had been that no matter what images I would upload, the EXIF data was not being extracted. Interestingly enough, the <a href="http://en.wikipedia.org/wiki/International_Press_Telecommunications_Council">IPTC</a> tags were. People kept telling me that maybe it was my images and the EXIF data didn&#8217;t exist in the images I was uploading. But that wasn&#8217;t the problem because I could upload it to Flickr and the EXIF would display fine. I also checked the EXIF in Photoshop CS3 and it was fine also. Couldn&#8217;t figure out the issue.</p>
<p>I had about given up on ever being able to display the EXIF data on my blog until today, I was making some design changes to this theme on <a href="http://bui4ever.com/macs/mamp">MAMP</a> and decided to just layout the look of the EXIF data just in case I figured out a solution one day and to my surprise, the EXIF data showed up!</p>
<div id="attachment_944" class="wp-caption alignleft" style="width: 448px"><a href="http://bui4ever.com/files/2008/08/picture-1.png"><img class="size-medium wp-image-944" src="http://bui4ever.com/files/2008/08/picture-1.png" alt="This is what you should see in your PHPInfo to know that the EXIF extension has loaded correctly." width="438" height="114" /></a><p class="wp-caption-text">This is what you should see in your PHPInfo to know that the EXIF extension has loaded correctly.</p></div>
<p>After a bit of digging, turns out that the PHP EXIF extension was not enabled on my VPS (virtual private server). The beauty of MAMP is that practically all the extensions are turned on and I was able to immediately see the problem.</p>
<p>Now enabling the EXIF extension on PHP takes a bit of work and the wonderful techs at my web host, <a href="http://autica.com">Autica</a> (a part of <a href="http://midphase.com">MidPhase</a> that is also part of <a href="http://anhosting.com">AN Hosting</a>), are currently working on getting it enabled for me. It sounds easy, but it&#8217;s complicated and easy to screw up if you&#8217;re not careful. You have to uncomment the line that executes the EXIF extension in your php.ini file and then recompile Apache. I think most people on shared hosting won&#8217;t have to worry about this, depending on host, it should be enabled and compiled. But if you notice that the EXIF data isn&#8217;t be extracted, then create a phpinfo file and run it on your web server to see if EXIF is installed. Now I have to go back and reupload all the images that I uploaded when the EXIF extension wasn&#8217;t active. Fortunately that only means some 9 albums as I hadn&#8217;t put up all the old and new albums just yet.</p>
<p>Also if you are interested in the code that is necessary to extract the EXIF, <a href="http://www.bloggingtips.com/2008/07/20/wordpress-gallery-and-exif/">please see this post by Sarah</a> as this was the first post I could find via Google that showed the code on how to do it.</p>
<p>[UPDATE 2008-08-02: My webhost has successfully enabled the EXIF extension! Apparently what was causing the delay was that the Apache version, for some reason, wouldn't recompile with <a href="http://eaccelerator.net/">eaccelerator</a>. So now Apache has been recompiled with EXIF but no eaccelerator until a partch by Apache comes out. Thanks Autica!] </p>
]]></content:encoded>
			<wfw:commentRss>http://richbui.com/2008/08/02/wordpress-26-and-exif-extraction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

