<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Prion Interactive</title>
	<atom:link href="http://www.prioninteractive.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.prioninteractive.com</link>
	<description>A Web Development Company in Toronto, Canada</description>
	<lastBuildDate>Mon, 05 Dec 2011 08:43:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Exploring Data Encryption with MySQL by Scott</title>
		<link>http://www.prioninteractive.com/2011/02/exploring-data-encryption-with-mysql/#comment-578</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 05 Dec 2011 08:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=19#comment-578</guid>
		<description>One last question...

In a more practical implementation, decryption would be done in a separate call to the script, rather than immediately after encryption on the same run.

So I would assume you need to call mhash again.

And, to decrypt, would you need the original &#039;initialization vector&#039; used to encrypt, or could a new &#039;iv&#039; be generated for subsequent decryption?

Also, why do you strip out the \4 sequence at the end?

Thanks again!</description>
		<content:encoded><![CDATA[<p>One last question&#8230;</p>
<p>In a more practical implementation, decryption would be done in a separate call to the script, rather than immediately after encryption on the same run.</p>
<p>So I would assume you need to call mhash again.</p>
<p>And, to decrypt, would you need the original &#8216;initialization vector&#8217; used to encrypt, or could a new &#8216;iv&#8217; be generated for subsequent decryption?</p>
<p>Also, why do you strip out the \4 sequence at the end?</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sub-domain changes on Media Temple DV 4 by Joseph McCullough</title>
		<link>http://www.prioninteractive.com/2011/04/sub-domain-changes-on-media-temple-dv-4/#comment-576</link>
		<dc:creator>Joseph McCullough</dc:creator>
		<pubDate>Mon, 05 Dec 2011 02:55:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=32#comment-576</guid>
		<description>Dude, you thank you SO Much. Seriously. We thought we were having DNS issue, but it was this quirk. I would&#039;ve never found this out on my own.</description>
		<content:encoded><![CDATA[<p>Dude, you thank you SO Much. Seriously. We thought we were having DNS issue, but it was this quirk. I would&#8217;ve never found this out on my own.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring Data Encryption with MySQL by Scott</title>
		<link>http://www.prioninteractive.com/2011/02/exploring-data-encryption-with-mysql/#comment-574</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 05 Dec 2011 00:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=19#comment-574</guid>
		<description>I would also suggest obfuscating any PHP source code containing full path information above the webroot (just to be on the safe side).</description>
		<content:encoded><![CDATA[<p>I would also suggest obfuscating any PHP source code containing full path information above the webroot (just to be on the safe side).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring Data Encryption with MySQL by Scott</title>
		<link>http://www.prioninteractive.com/2011/02/exploring-data-encryption-with-mysql/#comment-573</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Sun, 04 Dec 2011 23:46:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=19#comment-573</guid>
		<description>Excellent article on implementing MySQL encryption from the scripting side.

One question...

If a hacker already has access to mysqlbinlog and /var/lib/mysql, wouldn&#039;t he also have access to the secret key file above the webroot?

If so, it seems like it&#039;s at the &quot;game over&quot; point to me.

Your thoughts?</description>
		<content:encoded><![CDATA[<p>Excellent article on implementing MySQL encryption from the scripting side.</p>
<p>One question&#8230;</p>
<p>If a hacker already has access to mysqlbinlog and /var/lib/mysql, wouldn&#8217;t he also have access to the secret key file above the webroot?</p>
<p>If so, it seems like it&#8217;s at the &#8220;game over&#8221; point to me.</p>
<p>Your thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing Files Above the Web Root on Media Temple DV by Shanan</title>
		<link>http://www.prioninteractive.com/2011/01/storing-files-above-the-web-root-on-media-temple-dv/#comment-512</link>
		<dc:creator>Shanan</dc:creator>
		<pubDate>Wed, 23 Nov 2011 22:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=7#comment-512</guid>
		<description>A quick update to my previous comment -- I received feedback from mediatemple. There was an error in their wiki documentation that they have now fixed. The previous version: 
&lt;code&gt;
php_value open_basedir &quot;/var/www/vhosts/example.com/httpdocs:/tmp/:/usr/share/pear&quot;
&lt;/code&gt;

The corrected version: 
&lt;code&gt;
php_admin_value open_basedir &quot;/var/www/vhosts/example.com/httpdocs:/tmp/:/usr/share/pear&quot;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>A quick update to my previous comment &#8212; I received feedback from mediatemple. There was an error in their wiki documentation that they have now fixed. The previous version:<br />
<code><br />
php_value open_basedir "/var/www/vhosts/example.com/httpdocs:/tmp/:/usr/share/pear"<br />
</code></p>
<p>The corrected version:<br />
<code><br />
php_admin_value open_basedir "/var/www/vhosts/example.com/httpdocs:/tmp/:/usr/share/pear"<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing Files Above the Web Root on Media Temple DV Redux by Shanan</title>
		<link>http://www.prioninteractive.com/2011/04/storing-files-above-the-web-root-on-media-temple-dv-redux/#comment-511</link>
		<dc:creator>Shanan</dc:creator>
		<pubDate>Wed, 23 Nov 2011 20:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=37#comment-511</guid>
		<description>Thank you for this post -- it&#039;s incredibly helpful. 

Can you verify if this is still working on your installs? I am running into issues with an install on a dv4 server. I have isolated the issue I am having to this command:
/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain example.com

...this command is not generating a corrected Apache config file. For example, running the script is not updating the ..._httpd_ip_default.include with the updated vhost.conf information. It does create a new default_include file, but not with information pulled from vhost.conf. The end result is that the server does not allow PHP to access the directory I created above the web root. 

If I force the issue and directly edit the current default_include file, everything works correctly. This is a bit hacky though, since it looks to be configuring a temporary file, not creating a permanent change to which directories are allowed. 

For what it&#039;s worth, (mt)&#039;s phone technical support says the only way to make this work is to completely disable open_basedir. I would prefer your approach if it&#039;s still working for you. 

Thank you for your time. 

sg</description>
		<content:encoded><![CDATA[<p>Thank you for this post &#8212; it&#8217;s incredibly helpful. </p>
<p>Can you verify if this is still working on your installs? I am running into issues with an install on a dv4 server. I have isolated the issue I am having to this command:<br />
/usr/local/psa/admin/sbin/httpdmng &#8211;reconfigure-domain example.com</p>
<p>&#8230;this command is not generating a corrected Apache config file. For example, running the script is not updating the &#8230;_httpd_ip_default.include with the updated vhost.conf information. It does create a new default_include file, but not with information pulled from vhost.conf. The end result is that the server does not allow PHP to access the directory I created above the web root. </p>
<p>If I force the issue and directly edit the current default_include file, everything works correctly. This is a bit hacky though, since it looks to be configuring a temporary file, not creating a permanent change to which directories are allowed. </p>
<p>For what it&#8217;s worth, (mt)&#8217;s phone technical support says the only way to make this work is to completely disable open_basedir. I would prefer your approach if it&#8217;s still working for you. </p>
<p>Thank you for your time. </p>
<p>sg</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SFTP-only Accounts With Media Temple DV 4 by Steve</title>
		<link>http://www.prioninteractive.com/2011/06/sftp-only-accounts-with-media-temple-dv-4/#comment-372</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 19 Sep 2011 02:39:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=57#comment-372</guid>
		<description>Excellent worked like a charm. Only issue is that I can move up to the parent directories. Any way to lock out the new users to parent directories?</description>
		<content:encoded><![CDATA[<p>Excellent worked like a charm. Only issue is that I can move up to the parent directories. Any way to lock out the new users to parent directories?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing Files Above the Web Root on Media Temple DV by Yulia</title>
		<link>http://www.prioninteractive.com/2011/01/storing-files-above-the-web-root-on-media-temple-dv/#comment-284</link>
		<dc:creator>Yulia</dc:creator>
		<pubDate>Tue, 09 Aug 2011 20:03:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=7#comment-284</guid>
		<description>Thank you so much!! This is exactly what i needed, and i couldnt figure it out for the life of me!!!</description>
		<content:encoded><![CDATA[<p>Thank you so much!! This is exactly what i needed, and i couldnt figure it out for the life of me!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImageMagick, Imagick, and Opticrop on Dreamhost&#8217;s Shared Hosting by Chris Carrigan</title>
		<link>http://www.prioninteractive.com/2011/01/imagemagick-imagick-and-opticrop-on-dreamhosts-shared-hosting/#comment-189</link>
		<dc:creator>Chris Carrigan</dc:creator>
		<pubDate>Thu, 07 Jul 2011 06:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=10#comment-189</guid>
		<description>** This post is just a note about correcting my previous one, it removed the {username} part of the line about what to change the line to.  If you can edit the post and add that in before approving it, that would fantastic.  I&#039;m sure there are others out there who could benefit greatly from your article as well.  Thanks**</description>
		<content:encoded><![CDATA[<p>** This post is just a note about correcting my previous one, it removed the {username} part of the line about what to change the line to.  If you can edit the post and add that in before approving it, that would fantastic.  I&#8217;m sure there are others out there who could benefit greatly from your article as well.  Thanks**</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImageMagick, Imagick, and Opticrop on Dreamhost&#8217;s Shared Hosting by Chris Carrigan</title>
		<link>http://www.prioninteractive.com/2011/01/imagemagick-imagick-and-opticrop-on-dreamhosts-shared-hosting/#comment-188</link>
		<dc:creator>Chris Carrigan</dc:creator>
		<pubDate>Thu, 07 Jul 2011 06:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.prioninteractive.com/?p=10#comment-188</guid>
		<description>I thought I would add one additional note from my install, when trying to install imagick I received the following error:

&lt;cite&gt;checking ImageMagick MagickWand API configuration program... configure: error: not found. Please provide a path to MagickWand-config or Wand-config program.&lt;/cite&gt;

After doing a big of useless searching through the endless miles of google soup, I finally got frustrated enough to try it on my own.   Here&#039;s what I came up with:

&lt;code&gt;
nano configure
&lt;/code&gt;

Do a ^W to search the document for MagickWand (must be capitalized this way) and you will find a number of lines that are used for that API.  The line you are interested in is the line that reads:

&lt;code&gt;
for i in $PHP_IMAGICK /usr/local /usr;
&lt;/code&gt;

Modify it to read:

&lt;code&gt;
for i in $PHP_IMAGICK /usr/local /usr /home//local;
&lt;/code&gt;

This allows it to search your /local/bin folder under your user installation.

After the rest of the directions worked like a charm. :)  

Thanks again for an awesome write-up on this!</description>
		<content:encoded><![CDATA[<p>I thought I would add one additional note from my install, when trying to install imagick I received the following error:</p>
<p><cite>checking ImageMagick MagickWand API configuration program&#8230; configure: error: not found. Please provide a path to MagickWand-config or Wand-config program.</cite></p>
<p>After doing a big of useless searching through the endless miles of google soup, I finally got frustrated enough to try it on my own.   Here&#8217;s what I came up with:</p>
<p><code><br />
nano configure<br />
</code></p>
<p>Do a ^W to search the document for MagickWand (must be capitalized this way) and you will find a number of lines that are used for that API.  The line you are interested in is the line that reads:</p>
<p><code><br />
for i in $PHP_IMAGICK /usr/local /usr;<br />
</code></p>
<p>Modify it to read:</p>
<p><code><br />
for i in $PHP_IMAGICK /usr/local /usr /home//local;<br />
</code></p>
<p>This allows it to search your /local/bin folder under your user installation.</p>
<p>After the rest of the directions worked like a charm. <img src='http://www.prioninteractive.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   </p>
<p>Thanks again for an awesome write-up on this!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

