<?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>WebProNews &#187; HomeSite</title>
	<atom:link href="http://www.webpronews.com/tag/homesite/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webpronews.com</link>
	<description>Breaking News in Tech, Search, Social, &#38; Business</description>
	<lastBuildDate>Mon, 13 Feb 2012 04:32:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Setting up Apache Server Mappings for HomeSite</title>
		<link>http://www.webpronews.com/setting-up-apache-server-mappings-for-homesite--2007-01</link>
		<comments>http://www.webpronews.com/setting-up-apache-server-mappings-for-homesite--2007-01#comments</comments>
		<pubDate>Mon, 15 Jan 2007 16:16:14 +0000</pubDate>
		<dc:creator>Debbie Campbell</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[HomeSite]]></category>
		<category><![CDATA[Options]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.webpronews.com/?p=34417</guid>
		<description><![CDATA[This information was gleaned from a number of websites and my own trials in getting this to work, but I thought it would be useful to have it in one place for other HomeSite users who may not be overly familiar with server configuration.
]]></description>
			<content:encoded><![CDATA[<p>This information was gleaned from a number of websites and my own trials in getting this to work, but I thought it would be useful to have it in one place for other HomeSite users who may not be overly familiar with server configuration.</p>
<p>Macromedia&#8217;s HomeSite is a great text-based HTML editor; I&#8217;ve been using it for about 10 years. Think of HomeSite as Dreamweaver&#8217;s code-focused younger brother.</p>
<p>Why map servers? The reason I do it is because it enables me to browse and view PHP includes live right on my local machine. You can see the results of server side includes without having to post the site online, a big time saver. </p>
<p><b>Part 1 &#8211; Setting up Mappings in the Web Server</b></p>
<p>First, get the latest stable installation of Apache Server. The one I use is from XAMPP (www.xampp.com) and is quite easy to set up. Install it according to the instructions. XAMPP&#8217;s installation also includes MySQL, phpMyAdmin, a FileZilla server and a number of other useful tools.</p>
<p>Go into the install directory and look for this file:</p>
<p><code>C:/Program Files/xampp/apache/conf/httpd.conf</code></p>
<p>Open it in Windows Notepad or any simple text editor. Scroll down about halfway until you see this section:</p>
<p><code>#<br />
# Alias: Maps web paths into filesystem paths and is used to<br />
# access content that does not live under the DocumentRoot.<br />
# Example:<br />
# Alias /webpath /full/filesystem/path<br />
#<br />
# If you include a trailing / on /webpath then the server will<br />
# require it to be present in the URL. You will also likely<br />
# need to provide a &lt;Directory&gt; section to allow access to<br />
# the filesystem path.</code></p>
<p>Immediately after the last line shown above, you&#8217;ll need to enter the following block of information (assuming your web files are located in a folder called &#8220;webprojects&#8221;):</p>
<p><code>Alias /webprojects/ "C:/webprojects/"</p>
<p>&lt;Directory "C:/webprojects"&gt;<br />
Options Indexes FollowSymLinks +Includes ExecCGI<br />
AllowOverride None<br />
Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;</code></p>
<p>Alias &#8220;maps web paths into filesystem paths and is used to access content that does not live under the DocumentRoot.&#8221; In turn, the next section &#8220;allows access to the filesystem path.&#8221; If you want more information on the directives used within this section, visit <a href="http://httpd.apache.org/docs/2.2/mod/core.html#options" class="bluelink">http://httpd.apache.org/docs/2.2/mod/core.html#options</a>.</p>
<p>Now you will need to enter a similar block of code for each folder you want listed as an alias (each web project folder). Keep entering them underneath the first block, as many as you need.</p>
<p><code>Alias /projectfolder1/ "C:/webprojects/projectfolder1/"</p>
<p>&lt;Directory "C:/webprojects/projectfolder1/"&gt;<br />
Options Indexes FollowSymLinks Includes ExecCGI<br />
AllowOverride None<br />
Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;</p>
<p>Alias /projectfolder2/ "C:/webprojects/projectfolder2/"</p>
<p>&lt;Directory "C:/webprojects/projectfolder2/"&gt;<br />
Options Indexes FollowSymLinks Includes ExecCGI<br />
AllowOverride None<br />
Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;</code></p>
<p>&#8230;and so on.</p>
<p>When you&#8217;re finished entering project folders, save httpd.conf. You&#8217;ll need to stop and restart the Apache web server at this point (and any time you make changes to its configuration).</p>
<p><b>Part 2 &#8211; Setting up Server Mappings in HomeSite</b></p>
<p>Open HomeSite. In the top menu, go to Options > Settings > Browse. In the window, tick the &#8220;Enable Server Mappings&#8221; box.</p>
<p>Click &#8220;Add&#8221; to create a new server mapping. Note that if you ended a folder name with a &#8220;/&#8221; you must also include the &#8220;/&#8221; in this dialog.</p>
<p>For &#8220;Map From&#8221; enter: C:Program Files/xampp</p>
<p>And for &#8220;Map To&#8221; enter: http://localhost/</p>
<p>Do this once more to also set the project directory to localhost:</p>
<p>For &#8220;Map From&#8221; enter: C:webprojects</p>
<p>And for &#8220;Map To&#8221; enter: http://localhost/</p>
<p>Then you&#8217;ll repeat this process for each project folder you entered in httpd.conf. </p>
<p>Map from C:webprojectsprojectfolder1 Map to http://localhost/projectfolder1/</p>
<p>&#8230; and so on.</p>
<p>When finished, try using the &#8220;View External Browser List&#8221; button &#8211; you should be able to see your local site and its SSI in your chosen browser. What if it doesn&#8217;t work? Try these potential solutions:</p>
<p>1) Did you stop and restart Apache Server?</p>
<p>2) Make sure that the formatting of folders and paths is identical in httpd.conf and in the settings in HomeSite. Did you forget a slash?</p>
<p>3) Make sure you&#8217;re using backslashes, not forward slashes for the &#8220;Map from&#8221; portion of the server mappings in HomeSite.</p>
<p>4) Reboot your computer.</p>
<p>That should do it! </p>
<p>Tag:   </p>
<p>Add to <a href="http://del.icio.us/post"onclick="window.open('http://del.icio.us/post?v=4&#038;partner=wpn&#038;noui&#038;jump=close&#038;url='+encodeURIComponent(location.href)+'&#038;title='+encodeURIComponent(document.t  itle),'delicious','toolbar=no,width=700,height=400'); return false;"   CLASS="printMailTop"><img src="http://images.ientrymail.com/webpronews/delicious-pic.png" border=0> Del.icio.us</a> | <a href="javascript:void   window.open('http://digg.com/submit?phase=2&#038;url='+encodeURIComponent(window.   location.href)+'&#038;ei=UTF-8','popup','width=520px,height=420px,status=0,location=0,resizable=1,scrollbars=1,left=100,top=50',0)"><img   src="http://images.ientrymail.com/webpronews/digg-pic.png" border=0> Digg</a> | <a href="javascript:location.href='http://reddit.com/submit?url='+encodeURIComponent(location.href)+'&#038;title='+encodeURIComponent(document.title)"><img  src="http://images.ientrymail.com/webpronews/reddit.png" border=0>Reddit</a> | <a href="javascript:location.href='http://www.furl.net/storeIt.jsp?u='+encodeURIComponent(document.location.href)+'&#038;t='+encodeURIComponent(document.title)+ '   '"><img src="http://images.ientrymail.com/webpronews/furl-pic.png" border=0> Furl</a> </p>
<p> Bookmark WebProNews: <a href="http://www.webpronews.com"><img src="http://images.ientrymail.com/webpronews/wpn-readit.jpg" border=0></a></p>
<p>Debbie Campbell is a web designer of 12 years&#8217; experience and the owner of <a href="http://www.parallaxwebdesign.com">Parallax Web Design</a> in Fort Collins, CO.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpronews.com/setting-up-apache-server-mappings-for-homesite--2007-01/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ASP.NET: Is it too Difficult?</title>
		<link>http://www.webpronews.com/aspnet-is-it-too-difficult-2006-11</link>
		<comments>http://www.webpronews.com/aspnet-is-it-too-difficult-2006-11#comments</comments>
		<pubDate>Tue, 21 Nov 2006 21:49:49 +0000</pubDate>
		<dc:creator>Mads Kristensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[Expression]]></category>
		<category><![CDATA[HomeSite]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.webpronews.com/?p=33081</guid>
		<description><![CDATA[There is no doubt in my mind, that ASP.NET is the most powerful and versatile platform for web applications at the moment.
]]></description>
			<content:encoded><![CDATA[<p>There is no doubt in my mind, that ASP.NET is the most powerful and versatile platform for web applications at the moment.</p>
<p>By leveraging the .NET Framework you can do absolutely anything in no time, but is that power also the problem with ASP.NET?</p>
<p>In the dark ages before ASP.NET, we were stuck with ASP and PHP but we were just as enthusiastic about them as we are with ASP.NET now. </p>
<p>They were relative easy to learn and to learn well enough to do something really cool with in a short period of time. </p>
<p>That made them accessible to almost anyone with just a will to learn and in my opinion that&#8217;s what made the web what it is today. </p>
<p>ASP.NET changed all that. </p>
<p>The power and scale of it was so immense that it could take years to be familiar with just the page life cycle or the basic classes in the CLR and even longer to be able to take full advantage of the entire platform. </p>
<p>After almost 5 years I still find classes and methods I didn&#8217;t know existed. </p>
<p>That makes ASP.NET much more difficult to learn and master than ASP and PHP.</p>
<p>The tools used to build ASP.NET web applications, <a href="http://www.madskristensen.dk/blog/ct.ashx?id=2cc04b11-88e1-4086-a732-239d65689859&#038;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2fvstudio%2fdefault.aspx" class="bluelink">Visual Studio</a>, <a href="http://www.madskristensen.dk/blog/ct.ashx?id=2cc04b11-88e1-4086-a732-239d65689859&#038;url=http%3a%2f%2fmsdn.microsoft.com%2fvstudio%2fexpress%2fvwd%2f" class="bluelink">Visual Web Developer Express</a> and <a href="http://www.madskristensen.dk/blog/ct.ashx?id=2cc04b11-88e1-4086-a732-239d65689859&#038;url=http%3a%2f%2fwww.microsoft.com%2fproducts%2fexpression%2fen%2fweb_designer%2fdefault.mspx" class="bluelink">Expression Web Designer</a>, are also much more advanced than the earlier tools. </p>
<p>The traditional webmaster now has to be a full blooded programmer just to be able to open up a user control&#8217;s code-behind file to add another item to a DropDownList. </p>
<p><a href="http://www.madskristensen.dk/blog/ct.ashx?id=2cc04b11-88e1-4086-a732-239d65689859&#038;url=http%3a%2f%2fwww.adobe.com%2fproducts%2fhomesite%2f" class="bluelink">HomeSite</a>, <a href="http://www.madskristensen.dk/blog/ct.ashx?id=2cc04b11-88e1-4086-a732-239d65689859&#038;url=http%3a%2f%2fwww.textpad.com%2f" class="bluelink">TextPad</a> and <a href="http://www.madskristensen.dk/blog/ct.ashx?id=2cc04b11-88e1-4086-a732-239d65689859&#038;url=http%3a%2f%2fwww.adobe.com%2fproducts%2fdreamweaver%2f" class="bluelink">Dreamweaver</a> 4 were much easier and simpler at the time for editing ASP and PHP files.  </p>
<p>My point is that the very essence that started the dynamic web is missing out on ASP.NET because it is too difficult. </p>
<p>The hobby web developers and the newcomers face a much steeper learning curve, which might lead them to choose another platform. </p>
<p>I believe in the power of ASP.NET, but then again, I&#8217;m neither a hobbyist nor a newcomer.</p>
<p><a href="http://www.madskristensen.dk/blog/CommentView,guid,2cc04b11-88e1-4086-a732-239d65689859.aspx" class="bluelink">Comments</a></p>
<p>Tag: </p>
<p>Add to <a href="http://del.icio.us/post"  onclick="window.open('http://del.icio.us/post?v=4&#038;partner=wpn&#038;noui&#038;jump=close&#038;url='+encodeURIComponent(location.href)+'&#038;title='+encodeURIComponent(document.title),'delicious','toolbar=no,width=700,height=400'); return false;"   CLASS="printMailTop"><img  src=http://images.ientrymail.com/webpronews/delicious-pic.png border=0> Del.icio.us</a> | <a href="javascript:void window.open('http://digg.com/submit?phase=2&#038;url='+encodeURIComponent(window. location.href)+'&#038;ei=UTF-8','popup','width=520px,height=420px,status=0,location=0,resizable=1,scrollbars=1,left=100,top=50',0)"><img src=http://images.ientrymail.com/webpronews/digg-pic.png border=0> Digg</a> | <a href="javascript:location.href='http://reddit.com/submit?url='+encodeURIComp onent(location.href)+'&#038;title='+encodeURIComponent(document.title)"><img  src=http://images.ientrymail.com/webpronews/reddit.png border=0>Reddit</a> | <a href="javascript:location.href='http://www.furl.net/storeIt.jsp?u='+encodeURIComponent(document.location.href)+'&#038;t='+encodeURIComponent(document.title)+ ' '"><img src=http://images.ientrymail.com/webpronews/furl-pic.png border=0> Furl</a></p>
<p>Bookmark WebProNews: <a href=http://www.webpronews.com><img src=http://images.ientrymail.com/webpronews/wpn-readit.jpg border=0></a></p>
<p>Mads Kristensen currently works as a Senior Developer at Traceworks located<br />
in Copenhagen, Denmark. Mads graduated from Copenhagen Technical Academy with a multimedia degree in<br />
2003, but has been a professional developer since 2000. His main focus is on ASP.NET but is responsible for Winforms, Windows- and<br />
web services in his daily work as well. A true .NET developer with great passion for the simple solution.</p>
<p>http://www.madskristensen.dk/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webpronews.com/aspnet-is-it-too-difficult-2006-11/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 1/17 queries in 0.017 seconds using memcached
Object Caching 246/288 objects using memcached

Served from: webpronews.com @ 2012-02-13 04:26:54 -->
