<?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>brmecham.com &#187; web design</title>
	<atom:link href="http://www.brmecham.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brmecham.com</link>
	<description>Brian Mecham, web designer, seo expert, statesman, entrepreneur, disc duplication, artist, computer geek, business owner, etc.</description>
	<lastBuildDate>Wed, 12 May 2010 18:22:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Find the Absolute Path on Your Web Server</title>
		<link>http://www.brmecham.com/how-to-find-the-absolute-path-on-your-web-server/</link>
		<comments>http://www.brmecham.com/how-to-find-the-absolute-path-on-your-web-server/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 23:06:52 +0000</pubDate>
		<dc:creator>Brian Mecham</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[absolute path]]></category>
		<category><![CDATA[directory path]]></category>
		<category><![CDATA[pathinfo]]></category>
		<category><![CDATA[server path]]></category>

		<guid isPermaLink="false">http://www.brmecham.com/?p=61</guid>
		<description><![CDATA[From time to time, especially when moving a website from one server to another, I have to find out what the "absolute path" of my website is.  Absolute path pertains to the directory on the server that the website is installed on...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-large wp-image-82" title="find your web server absolute path" src="http://www.brmecham.com/wp-content/uploads/2009/07/web-server-e1272963787823-428x159.jpg" alt="find your web server absolute path" width="428" height="159" />From time to time, especially when moving a website from one server to another, I have to find out what the &#8220;absolute path&#8221; of my website is.  Absolute path pertains to the directory on the server that the website is installed on.</p>
<p>Sometimes when moving a Joomla, WordPress or other website to a different directory or different server you&#8217;ll need to change the absolute path for the site to work. In joomla this requires editing the configuration.php file, in WordPress this sometimes requires editing the database or ensuring that you update the settings before moving your files/database over to the new directory/server.</p>
<h2>How do I find out what the absolute path is?</h2>
<p>The easiest way is to create a file named pathinfo.php and paste only the following code into that file:</p>
<pre>&lt;?php
   $path = getcwd();
   echo "Your Absoluthe Path is: ";
   echo $path;
?&gt;
</pre>
<p>Now, upload pathinfo.php into the root directory of your website and view it in your internet browser ( example: http://www.mysite.com/pathinfo.php )</p>
<p>This will display your absolute path.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brmecham.com/how-to-find-the-absolute-path-on-your-web-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove blank lines in dreamweaver</title>
		<link>http://www.brmecham.com/how-to-remove-blank-lines-in-dreamweaver/</link>
		<comments>http://www.brmecham.com/how-to-remove-blank-lines-in-dreamweaver/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 07:25:45 +0000</pubDate>
		<dc:creator>Brian Mecham</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[blank lines]]></category>
		<category><![CDATA[dreamweaver]]></category>

		<guid isPermaLink="false">http://www.brmecham.com/?p=59</guid>
		<description><![CDATA[As I am creating websites I sometimes come across situations that require a more than basic knowledge and a bit of research to figure out.
Here&#8217;s a helpful hint regarding removing blank lines from an html file using dreamweaver, should you ever want to do that without having to manually delete the lines&#8230;
Click CTRL + F
Select [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-large wp-image-87" title="How to remove blank lines in Adobe Dreamweaver" src="http://www.brmecham.com/wp-content/uploads/2009/07/Dreamweaver-CS4-427x204.png" alt="How to remove blank lines in Adobe Dreamweaver" width="427" height="204" />As I am creating websites I sometimes come across situations that require a more than basic knowledge and a bit of research to figure out.</p>
<p>Here&#8217;s a helpful hint regarding removing blank lines from an html file using dreamweaver, should you ever want to do that without having to manually delete the lines&#8230;</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Click CTRL + F</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Select &#8220;Current document&#8221; in &#8220;Find in&#8221; (You can also select the folder if you have multiple files)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Search in &#8220;Source code&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Tick &#8220;Use regular expression&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Type &#8220;[\r\n]{2,}&#8221; (without quotes) in &#8220;Find&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Type &#8220;\n&#8221; (without quotes) in &#8220;Replace&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Press &#8220;Replace All&#8221;</div>
<ol>
<li>Click CTRL + F</li>
<li>Select &#8220;Current document&#8221; in &#8220;Find in&#8221; (You can also select the folder if you have multiple files)</li>
<li>Search in &#8220;Source code&#8221;</li>
<li>Tick &#8220;Use regular expression&#8221;</li>
<li>Type &#8220;[\r\n]{2,}&#8221; (without quotes) in &#8220;Find&#8221;</li>
<li>Type &#8220;\n&#8221; (without quotes) in &#8220;Replace&#8221;</li>
<li>Press &#8220;Replace All&#8221;</li>
</ol>
<p>That&#8217;s it. Have fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brmecham.com/how-to-remove-blank-lines-in-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
