<?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>betapoint.tv &#187; symlink</title>
	<atom:link href="http://betapoint.tv/tag/symlink/feed/" rel="self" type="application/rss+xml" />
	<link>http://betapoint.tv</link>
	<description>a starting point for ideas</description>
	<lastBuildDate>Mon, 04 Apr 2011 15:47:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>setting up the symlinks on mac</title>
		<link>http://betapoint.tv/publicthoughts/setting-up-the-symlinks-on-mac/</link>
		<comments>http://betapoint.tv/publicthoughts/setting-up-the-symlinks-on-mac/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 21:48:29 +0000</pubDate>
		<dc:creator>nathan</dc:creator>
				<category><![CDATA[publicThoughts]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[httpd.conf]]></category>
		<category><![CDATA[symlink]]></category>

		<guid isPermaLink="false">http://betapoint.tv/?p=107</guid>
		<description><![CDATA[in setting up a new dev environment i finally found a way to set up symlinks so I work without having to manually change my test pages. to set up the symlink i used this valuable information:
To set up a symbolic link type
    ln -s linktarget linkname
where linktarget is the directory to [...]]]></description>
			<content:encoded><![CDATA[<p>in setting up a new dev environment i finally found a way to set up symlinks so I work without having to manually change my test pages. to set up the symlink i used this valuable information:</p>
<p><strong>To set up a symbolic link type</strong></p>
<pre>    ln -s linktarget linkname</pre>
<p>where linktarget is the directory to link to and <strong>linkname</strong> is the name of the symbolic link. You can type:</p>
<pre>    rm linkname</pre>
<p>to remove the link. Type</p>
<pre>man ln</pre>
<p>for more information.</p>
<p>in order to allow apache access on my mac i had to add an extra entry to the httpd.conf file (on the mac @ /private/etc/httpd/httpd.conf &#8211; remember to back it up) that looks something like this:</p>
<pre>&lt;Directory /where/you/export/your/swf&gt;
    AllowOverride all
    Options FollowSymLinks Indexes
    Order allow,deny
    Allow from all
&lt;/Directory&gt;</pre>
<p>now in all of my test pages i can reference</p>
<pre>&lt;embed src=<strong>linkname</strong>&gt;&lt;/embed&gt;</pre>
<p>and whatever swf is in the location that i told the symlink to go to will be pulled in.</p>
<p>Thanks Justin!</p>
]]></content:encoded>
			<wfw:commentRss>http://betapoint.tv/publicthoughts/setting-up-the-symlinks-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

