<?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>Swiftwater Solutions LLC</title>
	<atom:link href="http://www.swiftwater-solutions.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.swiftwater-solutions.com</link>
	<description>Internet + Technology</description>
	<lastBuildDate>Thu, 16 Feb 2012 06:09:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Cross Domain Ajax Handler Using PHP</title>
		<link>http://www.swiftwater-solutions.com/?p=225</link>
		<comments>http://www.swiftwater-solutions.com/?p=225#comments</comments>
		<pubDate>Thu, 16 Feb 2012 04:48:28 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=225</guid>
		<description><![CDATA[ Presentation of a PHP-based solution to cross-domain AJAX requests.   References: There are ways to handle AJAX requests on the same domain, such as:  http://www.tomhoppe.com/index.php/2008/03/cross-sub-domain-javascript-ajax-iframe-etc/ http://stackoverflow.com/questions/4106993/ajax-cross-sub-domain-requests http://00f.net/2008/06/24/cross-subdomain-ajax-made-simple/ Or using IFRAMES to allow for cross-domain reqeusts, such as: http://abhinavsingh.com/blog/2009/11/making-cross-sub-domain-ajax-xhr-requests-using-mod_proxy-and-iframes/ http://stackoverflow.com/questions/648899/a-question-about-cross-domain-subdomain-ajax-request The following: uses an intermediate PHP script as buffer. maintains the integrity of the browser domain, &#8230; </p><p><a class="more-link block-button" href="http://www.swiftwater-solutions.com/?p=225">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> </span><span style="text-decoration: underline;"><strong><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Presentation of a PHP-based solution to cross-domain AJAX requests.  </span></strong></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">References:</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">There are ways to handle AJAX requests on the same domain, such as: </span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><a href="http://www.tomhoppe.com/index.php/2008/03/cross-sub-domain-javascript-ajax-iframe-etc/">http://www.tomhoppe.com/index.php/2008/03/cross-sub-domain-javascript-ajax-iframe-etc/</a></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><a href="http://stackoverflow.com/questions/4106993/ajax-cross-sub-domain-requests">http://stackoverflow.com/questions/4106993/ajax-cross-sub-domain-requests</a></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><a href="http://00f.net/2008/06/24/cross-subdomain-ajax-made-simple/">http://00f.net/2008/06/24/cross-subdomain-ajax-made-simple/</a></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Or using IFRAMES to allow for cross-domain reqeusts, such as:</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><a href="http://abhinavsingh.com/blog/2009/11/making-cross-sub-domain-ajax-xhr-requests-using-mod_proxy-and-iframes/">http://abhinavsingh.com/blog/2009/11/making-cross-sub-domain-ajax-xhr-requests-using-mod_proxy-and-iframes/</a></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><a href="http://stackoverflow.com/questions/648899/a-question-about-cross-domain-subdomain-ajax-request">http://stackoverflow.com/questions/648899/a-question-about-cross-domain-subdomain-ajax-request</a></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">The following:</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">uses an intermediate PHP script as buffer.</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">maintains the integrity of the browser domain, while allowing for cross-domain script access.  </span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><div class="notice_block">&lt;!  &#8211;   example.html   &#8212; !&gt;</div></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">&lt;script type=&#8221;text/javascript&#8221;&gt;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">// http://code.google.com/p/json-simple/wiki/JSPAndAJAXExamples</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">function createXMLHttpRequest()</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">{</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  var xmlhttp, bComplete = false;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  try { xmlhttp = new ActiveXObject(&#8220;Msxml2.XMLHTTP&#8221;); }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  catch (e) { try { xmlhttp = new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;); }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  catch (e) { try { xmlhttp = new XMLHttpRequest(); }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  catch (e) { xmlhttp = false; }}}</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  if (!xmlhttp) return null;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  this.connect = function(sURL, sMethod, sVars, fnDone)</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    if (!xmlhttp) return false;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    bComplete = false;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    sMethod = sMethod.toUpperCase();</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    try {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">      if (sMethod == &#8220;GET&#8221;)</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">      {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">        xmlhttp.open(sMethod, sURL+&#8221;?&#8221;+sVars, true);</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">        sVars = &#8220;&#8221;;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">      }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">      else</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">      {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">        xmlhttp.open(sMethod, sURL, true);</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">        xmlhttp.setRequestHeader(&#8220;Method&#8221;, &#8220;POST &#8220;+sURL+&#8221; HTTP/1.1&#8243;);</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">        xmlhttp.setRequestHeader(&#8220;Content-Type&#8221;,</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">          &#8220;application/x-www-form-urlencoded&#8221;);</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">      }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">      xmlhttp.onreadystatechange = function(){</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">        if (xmlhttp.readyState == 4 &amp;&amp; !bComplete)</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">        {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">          bComplete = true;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">          fnDone(xmlhttp);</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">        }};</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">      xmlhttp.send(sVars);</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    catch(z) { return false; }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    return true;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  };</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  return this;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">}</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">function example()</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> //CALL LOCAL AJAX</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> file = &#8220;/local.php&#8221;;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> //CREATE CONNECTION</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> var request = createXMLHttpRequest();</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> if ( !request ) {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    alert( request )</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> return false;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> //DEFINE HANDLER METHOD</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> var callback = function( oXML ) {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> alert(oXML.responseText);</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> //RUN SCRIPT</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> request.connect(</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> file,</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    &#8217;POST&#8217;,</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">   &#8216;var=&#8217; + val,</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    callback</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">    );</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> return;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">&lt;/script&gt;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">&lt;! &#8212;   END example.html  &#8211;  !&gt;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><div class="notice_block">&lt;! &#8212;   local.php  &#8211;  !&gt;</div></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">&lt;?php</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">class local {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> public function local() {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> //CALL FUNCTION ON ANOTHER DOMAIN</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> $url = &#8220;http://some.other.domain/remote.php?var=&#8221;.$_POST['var'];</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> //BUFFER</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> ob_start();</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> readfile($url);</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> $content = ob_get_contents();</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> ob_end_clean();</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> //RETURN to example.html</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> echo $content;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">}</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">$local = new local();</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">?&gt;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">&lt;! &#8212;   END local.php  &#8211;  !&gt;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><div class="notice_block">&lt;! &#8212;   remote.php  &#8211;  !&gt;</div></span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">&lt;?php</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">class remote {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">  public function remote() {</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">   //RETURN to local.php</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> echo $_GET['var'];</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> }</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">}</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">$remote = new remote();</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">?&gt;</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">&lt;! &#8212;   END remote.php  &#8211;  !&gt;<br />
</span></div>
<div><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><br />
<a href="http://www.swiftwater-solutions.com/wp-content/uploads/2012/02/AJAX-e1329369457627.png"><img class="alignnone size-thumbnail wp-image-239" title="AJAX" src="http://www.swiftwater-solutions.com/wp-content/uploads/2012/02/AJAX-150x150.png" alt="" width="150" height="150" /></a>, football anyone? </span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=225</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony on Plesk 10.2</title>
		<link>http://www.swiftwater-solutions.com/?p=219</link>
		<comments>http://www.swiftwater-solutions.com/?p=219#comments</comments>
		<pubDate>Mon, 14 Nov 2011 06:04:13 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=219</guid>
		<description><![CDATA[How to configure Symfony to run under Plesk, due to the Alias &#38; doc_root issues with open_basedir. Configure subdomain &#38; document root via Plesk ie.: dev.domain.com =  dev/symfony/web Create vhost.conf under /var/www/vhosts/domain.com/subdomains/dev/conf Edit vhost.conf: FOR SYMFONY 1.4 DocumentRoot /var/www/vhosts/domain.com/dev/symfony/webAlias /sf /var/www/vhosts/domain.com/dev/symfony/lib/vendor/symfony/data/web/sf&#60;Directory /var/www/vhosts/domain.com/dev/symfony/web&#62; php_admin_value open_basedir none AllowOverride All &#60;/Directory&#62;&#60;Directory /var/www/vhosts/domain.com/dev/symfony/web&#62; AllowOverride All Allow from All &#60;/Directory&#62; &#8230; </p><p><a class="more-link block-button" href="http://www.swiftwater-solutions.com/?p=219">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>How to configure Symfony to run under Plesk, due to the Alias &amp; doc_root issues with open_basedir.</p>
<p><strong>Configure subdomain &amp; document root via Plesk</strong><br />
ie.: dev.domain.com =  dev/symfony/web</p>
<div><strong><strong><br />
</strong></strong></div>
<div><strong><strong></strong>Create vhost.conf under</strong></div>
<div>/var/www/vhosts/domain.com/subdomains/dev/conf</div>
<div><strong><strong><br />
</strong></strong></div>
<div><strong>Edit vhost.conf:<br />
<strong><strong>FOR SYMFONY 1.4</strong></strong><br />
</strong></div>
<div>DocumentRoot /var/www/vhosts/domain.com/dev/symfony/webAlias /sf /var/www/vhosts/domain.com/dev/symfony/lib/vendor/symfony/data/web/sf&lt;Directory /var/www/vhosts/domain.com/dev/symfony/web&gt;<br />
php_admin_value open_basedir none<br />
AllowOverride All<br />
&lt;/Directory&gt;&lt;Directory /var/www/vhosts/domain.com/dev/symfony/web&gt;<br />
AllowOverride All<br />
Allow from All<br />
&lt;/Directory&gt;</p>
<p><strong>FOR SYMFONY 2</strong><br />
DocumentRoot /var/www/vhosts/domain.com/dev/Symfony/web</p>
<p>&lt;Directory /var/www/vhosts/domain.com/dev/Symfony/web&gt;<br />
php_admin_value open_basedir none<br />
AllowOverride All<br />
&lt;/Directory&gt;</p>
<p>&lt;Directory /var/www/vhosts/domain.com/dev/Symfony/web&gt;<br />
AllowOverride All<br />
Allow from All<br />
&lt;/Directory&gt;</p>
<p><strong>Run command</strong><br />
# /usr/local/psa/admin/bin/httpdmng &#8211;reconfigure-all<br />
# /etc/init.d/httpd restart</p>
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=219</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Portfolio &#8211; Fulco Inc.</title>
		<link>http://www.swiftwater-solutions.com/?p=166</link>
		<comments>http://www.swiftwater-solutions.com/?p=166#comments</comments>
		<pubDate>Fri, 11 Nov 2011 06:09:20 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=166</guid>
		<description><![CDATA[Fulco Inc. fulcoinc.com Magazine &#38; Subscription fulfillment company Denville, NJ Solutions Provided: Website Design ASP/CSS Softwater Development C#/JavaScript]]></description>
			<content:encoded><![CDATA[<p><a href="http://fulcoinc.com/" target="_blank"><img class="alignnone size-full wp-image-167" title="fulcoinc" src="http://www.swiftwater-solutions.com/wp-content/uploads/2011/11/fulcoinc.jpg" alt="" width="300" height="196" /></a></p>
<p>Fulco Inc.<br />
<a href="http://fulcoinc.com/" target="_blank">fulcoinc.com</a><br />
Magazine &amp; Subscription fulfillment company<br />
Denville, NJ</p>
<p>Solutions Provided:<br />
Website Design ASP/CSS<br />
Softwater Development C#/JavaScript</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=166</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Portfolio &#8211; Nucor Steel Marion Inc.</title>
		<link>http://www.swiftwater-solutions.com/?p=163</link>
		<comments>http://www.swiftwater-solutions.com/?p=163#comments</comments>
		<pubDate>Fri, 11 Nov 2011 06:01:43 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Product Development]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=163</guid>
		<description><![CDATA[Nucor Steel Marion Inc. nucorhighway.com Highway safety products, guardrails, high-tension cable barriers &#38; sign support systems. Marion, OH Solutions Provided: CAD Drafting Product Specifications &#38; Literature Installation Manuals Software Development &#8211; Flex Website Design &#38; Administration]]></description>
			<content:encoded><![CDATA[<p><a href="http://nucorhighway.com/" target="_blank"><img class="alignnone size-medium wp-image-164" title="nucor" src="http://www.swiftwater-solutions.com/wp-content/uploads/2011/11/nucor-277x300.jpg" alt="" width="277" height="300" /></a></p>
<p>Nucor Steel Marion Inc.<br />
<a href="http://nucorhighway.com/" target="_blank">nucorhighway.com</a><br />
Highway safety products, guardrails, high-tension cable barriers &amp; sign support systems.<br />
Marion, OH</p>
<p>Solutions Provided:<br />
CAD Drafting<br />
Product Specifications &amp; Literature<br />
Installation Manuals<br />
Software Development &#8211; Flex<br />
Website Design &amp; Administration</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=163</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Portfolio &#8211; PBS Rentals</title>
		<link>http://www.swiftwater-solutions.com/?p=158</link>
		<comments>http://www.swiftwater-solutions.com/?p=158#comments</comments>
		<pubDate>Fri, 11 Nov 2011 05:46:31 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Product Development]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=158</guid>
		<description><![CDATA[PBS Rentals www.pbsrentals.com Water-Filled Highway &#38; Facility Safety Barrier Products Ft. Lauderdale, FL Solutions Provided: CAD Drafting Product Specifications &#38; Literature]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pbsrentals.com/" target="_blank"><img class="alignnone size-full wp-image-159" title="pbsrentals" src="http://www.swiftwater-solutions.com/wp-content/uploads/2011/11/pbsrentals.jpg" alt="" width="300" height="265" /></a></p>
<p>PBS Rentals<br />
<a href="http://www.pbsrentals.com/" target="_blank">www.pbsrentals.com</a><br />
Water-Filled Highway &amp; Facility Safety Barrier Products<a href="http://www.pbsrentals.com/" target="_blank"><br />
</a>Ft. Lauderdale, FL</p>
<p>Solutions Provided:<br />
CAD Drafting<br />
Product Specifications &amp; Literature</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=158</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Portfolio &#8211; Yodock Wall Company</title>
		<link>http://www.swiftwater-solutions.com/?p=154</link>
		<comments>http://www.swiftwater-solutions.com/?p=154#comments</comments>
		<pubDate>Fri, 11 Nov 2011 05:43:33 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Product Development]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=154</guid>
		<description><![CDATA[Yodock Wall Company www.yodock.com Plastic portable water filled barricades for use on roadways, work zones &#38; facility protection. Bloomsburg, PA Solutions Provided: CAD Design &#38; Drafting Services Product Literature &#38; Graphics Design Website Design]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.yodock.com" target="_blank"><img class="alignnone size-full wp-image-155" title="yodock" src="http://www.swiftwater-solutions.com/wp-content/uploads/2011/11/yodock.jpg" alt="" width="300" height="267" /></a></p>
<p>Yodock Wall Company<br />
<a href="http://www.yodock.com/" target="_blank">www.yodock.com</a><br />
Plastic portable water filled barricades for use on roadways, work zones &amp; facility protection.<br />
Bloomsburg, PA</p>
<p>Solutions Provided:<br />
CAD Design &amp; Drafting Services<br />
Product Literature &amp; Graphics Design<br />
Website Design</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=154</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Portfolio &#8211; Pacesetter Enterprises, Inc.</title>
		<link>http://www.swiftwater-solutions.com/?p=150</link>
		<comments>http://www.swiftwater-solutions.com/?p=150#comments</comments>
		<pubDate>Thu, 10 Nov 2011 22:26:47 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[Multimedia Production]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=150</guid>
		<description><![CDATA[Pacesetter Enterprises, Inc. www.pacesetterglobal.com Marketing, Fulfillment &#38; Distribution solutions provider to various clients in the automotive, educational &#38; pharmaceutical industries Allentown, PA Solutions Provided: Website/Server/Database Administration PHP/MySQL Application Development &#38; Support Branded Flash Video Production]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pacesetterglobal.com/" target="_blank"><img class="alignnone size-full wp-image-151" title="pacsetterglobal" src="http://www.swiftwater-solutions.com/wp-content/uploads/2011/11/pacsetterglobal.jpg" alt="" width="300" height="235" /></a></p>
<p>Pacesetter Enterprises, Inc.<br />
<a href="http://www.pacesetterglobal.com/" target="_blank">www.pacesetterglobal.com</a><br />
Marketing, Fulfillment &amp; Distribution solutions provider to various clients in the automotive, educational &amp; pharmaceutical industries<br />
Allentown, PA</p>
<p>Solutions Provided:<br />
Website/Server/Database Administration<br />
PHP/MySQL Application Development &amp; Support<br />
Branded Flash Video Production</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=150</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Portfolio – Pfoxmoor Publishing</title>
		<link>http://www.swiftwater-solutions.com/?p=145</link>
		<comments>http://www.swiftwater-solutions.com/?p=145#comments</comments>
		<pubDate>Thu, 10 Nov 2011 22:22:18 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=145</guid>
		<description><![CDATA[Pfoxmoor Publishing www.pfoxmoorpublishing.com Independent book publisher New Tripoli, PA Solutions Provided: Website Administration GoDaddy Shopping Cart]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pfoxmoorpublishing.com/" target="_blank"><img class="alignnone size-full wp-image-146" title="pfoxmoor" src="http://www.swiftwater-solutions.com/wp-content/uploads/2011/11/pfoxmoor.jpg" alt="" width="300" height="229" /></a></p>
<p>Pfoxmoor Publishing<br />
<a href="http://www.pfoxmoorpublishing.com/" target="_blank">www.pfoxmoorpublishing.com</a><br />
Independent book publisher<a href="http://www.pfoxmoorpublishing.com/" target="_blank"><br />
</a>New Tripoli, PA</p>
<p>Solutions Provided:<br />
Website Administration<br />
GoDaddy Shopping Cart</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=145</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Portfolio &#8211; Muhlenberg College</title>
		<link>http://www.swiftwater-solutions.com/?p=142</link>
		<comments>http://www.swiftwater-solutions.com/?p=142#comments</comments>
		<pubDate>Thu, 10 Nov 2011 21:57:48 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=142</guid>
		<description><![CDATA[Muhlenberg College Biology Dept. (1999-2001) www.muhlenberg.edu/main/academics/biology/ Allentown, PA Solutions Provided: Website Administrator]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.muhlenberg.edu/main/academics/biology/" target="_blank"><img class="alignnone size-full wp-image-143" title="muhlenberg" src="http://www.swiftwater-solutions.com/wp-content/uploads/2011/11/muhlenberg.jpg" alt="" width="300" height="200" /></a></p>
<p>Muhlenberg College Biology Dept. (1999-2001)<a href="http://www.muhlenberg.edu/main/academics/biology/" target="_blank"><br />
www.muhlenberg.edu/main/academics/biology/</a><br />
Allentown, PA</p>
<p>Solutions Provided:<br />
Website Administrator</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=142</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Portfolio &#8211; Guitar Villa</title>
		<link>http://www.swiftwater-solutions.com/?p=139</link>
		<comments>http://www.swiftwater-solutions.com/?p=139#comments</comments>
		<pubDate>Thu, 10 Nov 2011 21:56:17 +0000</pubDate>
		<dc:creator>Chad Heimbecker</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.swiftwater-solutions.com/?p=139</guid>
		<description><![CDATA[Guitar Villa www.guitar-villa.com Multiple location retail store for musical instruments &#38; accessories Bethlehem, PA Solutions Provided: Website Designer Product CMS and Storefront, Photo Gallery, News, Events, PHP/MySQL]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.guitar-villa.com" target="_blank"><img class="alignnone size-full wp-image-140" title="guitar-villa" src="http://www.swiftwater-solutions.com/wp-content/uploads/2011/11/guitar-villa.jpg" alt="" width="300" height="200" /></a></p>
<p>Guitar Villa<br />
<a href="http://www.guitar-villa.com" target="_blank">www.guitar-villa.com<br />
</a>Multiple location retail store for musical instruments &amp; accessories<br />
Bethlehem, PA</p>
<p>Solutions Provided:<br />
Website Designer<br />
Product CMS and Storefront, Photo Gallery, News, Events, PHP/MySQL</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swiftwater-solutions.com/?feed=rss2&#038;p=139</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

