<?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>RubberNeck Designs &#187; MAMP</title>
	<atom:link href="http://www.rubberneckdesigns.com/category/mamp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rubberneckdesigns.com</link>
	<description>Drupal Web Developer Notes &#38; Sharing</description>
	<lastBuildDate>Tue, 31 Jan 2012 00:28:02 +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>Get The Calling Function</title>
		<link>http://www.rubberneckdesigns.com/ajax-web-design/get-the-calling-function/</link>
		<comments>http://www.rubberneckdesigns.com/ajax-web-design/get-the-calling-function/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 13:44:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Drupal 6 & Drupal 7]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.rubberneckdesigns.com/?p=481</guid>
		<description><![CDATA[Knowing which PHP function call the code we are working on can give us the clues we need for de-bugging a script. Getting the calling function is easy in PHP, thanks to the debug_backtrace() function. Just put the following code wherever in your script you need to know what function is calling the part you [...]]]></description>
			<content:encoded><![CDATA[<p>Knowing which PHP function call the code we are working on can give us the clues we need for de-bugging a script.<br />
 Getting the calling function is easy in PHP, thanks to the <a href="http://php.net/manual/en/function.debug-backtrace.php">debug_backtrace() function</a>. </p>
<p>Just put the following code wherever in your script you need to know what function is calling the part you are working on.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>45
46
47
48
49
50
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>php<span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #000088;">$backtrace</span> <span style="color: #339933;">=</span> <span style="color: #990000;">debug_backtrace</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;The function that just called this code is &lt;strong&gt;&quot;</span> <span style="color: #339933;">.</span><span style="color: #000088;">$backtrace</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'function'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;strong&gt;.&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #339933;">&lt;/</span>php<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>This will output something like this:</p>
<blockquote><p>The function that just called this code is <strong>DrawWidget</strong>.</p></blockquote>
<p>Where <strong>DrawWidget</strong> is the name of the function.</p>
<p>I hope this comes in handy for someone. Thanks for visiting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/ajax-web-design/get-the-calling-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and MySQL command line with MAMP on OSX</title>
		<link>http://www.rubberneckdesigns.com/mamp/php-and-mysql-command-line-with-mamp-on-osx/</link>
		<comments>http://www.rubberneckdesigns.com/mamp/php-and-mysql-command-line-with-mamp-on-osx/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 14:31:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAMP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[UNIX / LINIX]]></category>

		<guid isPermaLink="false">http://www.rubberneckdesigns.com/?p=434</guid>
		<description><![CDATA[I found a handy article named &#8220;Getting command line access to PHP and MySQL running MAMP on OSX&#8221; by  Joaquin Lippincott . It was very helpful for getting PHP and MySQL acces from the terminal on a mac. In addition, one of the comments by Matthew Bacon was about getting the ZEND FRAMWORK up and running [...]]]></description>
			<content:encoded><![CDATA[<p>I found a handy article named</p>
<p>&#8220;<a title="PHP and MySQL command line with MAMP on OSX" href="http://www.metaltoad.com/blog/getting-command-line-access-php-and-mysql-running-mamp-osx">Getting command line access to PHP and MySQL running MAMP on OSX</a>&#8221;</p>
<p>by  <a href="http://www.metaltoad.com/people/joaquin">Joaquin Lippincott .</a></p>
<p>It was very helpful for getting PHP and MySQL acces from the terminal on a mac.</p>
<p>In addition, one of the comments by Matthew Bacon was about getting the ZEND FRAMWORK up and running with the command line. I have copied it here for your convenience. I hope this helps someone.</p>
<p><span style="color: #666699;"><small> Posted by Matthew Bacon on <time datetime="2010-01-07T10:38:16-08:00" pubdate="pubdate">January 7, 2010. [<a href="http://www.metaltoad.com/comment/reply/71/457"><span style="color: #666699;">Reply</span></a>] </time></small></span></p>
<div>
<div>
<div>
<div>
<p><span style="color: #666699;">To anyone who is having problems getting Zend_Tool working on their MAC OS X (10.6) in Terminal, this is how to solve the problem.</span></p>
<p><span style="color: #666699;">Step 1</span><br />
<span style="color: #666699;"> &#8212;</span><br />
<span style="color: #666699;"> Download the Zend Framework to your downloads folder. Once downloaded, rename the folder ZendFramework</span></p>
<p><span style="color: #666699;">Step 2</span><br />
<span style="color: #666699;"> &#8212;</span><br />
<span style="color: #666699;"> Open Terminal and type: sudo cp -r ~/Downloads/ZendFramework /usr/local/ZendFrameworkCli</span></p>
<p><span style="color: #666699;">Step 3</span><br />
<span style="color: #666699;"> &#8212;</span><br />
<span style="color: #666699;"> In Terminal, type: open ~/.bash_profile</span></p>
<p><span style="color: #666699;">Note: If file is not found&#8230;</span><br />
<span style="color: #666699;"> &#8212;</span><br />
<span style="color: #666699;"> Open the application TextEdit. Create a new file and make sure you are typing in plain text only. Type the following: alias zf=/usr/local/ZendFrameworkCli/bin/zf.sh</span></p>
<p><span style="color: #666699;">Save and exit TextEdit</span></p>
<p><span style="color: #666699;">Step 4</span><br />
<span style="color: #666699;"> &#8212;</span><br />
<span style="color: #666699;"> In Terminal, type: zf show version</span></p>
<p><span style="color: #666699;">Done!</span></p>
</div>
</div>
</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/mamp/php-and-mysql-command-line-with-mamp-on-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL from the Command Line (terminal) in MAMP PRO</title>
		<link>http://www.rubberneckdesigns.com/mamp/mysql-from-the-command-line-terminal-in-mamp-pro/</link>
		<comments>http://www.rubberneckdesigns.com/mamp/mysql-from-the-command-line-terminal-in-mamp-pro/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 22:52:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAMP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[UNIX / LINIX]]></category>

		<guid isPermaLink="false">http://www.rubberneckdesigns.com/?p=425</guid>
		<description><![CDATA[To get to the command line for MySQL for MAMP or MAMP PRO just open up you terminal and enter the following:   /Applications/MAMP/Library/bin/mysql &#8211;host=localhost -uroot -proot You can see all the databases by using the following command: If you type the MySQL command : USE &#60;table name&#62;  you can then start using that particular [...]]]></description>
			<content:encoded><![CDATA[<p>To get to the command line for MySQL for MAMP or MAMP PRO just open up you terminal and enter the following:</p>
<address> </address>
<address>/Applications/MAMP/Library/bin/mysql &#8211;host=localhost -uroot -proot</address>
<p>You can see all the databases by using the following command:</p>
<p><a href="http://www.rubberneckdesigns.com/wp-content/uploads/2011/10/Screen-shot-2011-10-09-at-6.44.47-PM.png"><img class="alignnone size-full wp-image-427" title="mysql command line command SHOW DATABASES" src="http://www.rubberneckdesigns.com/wp-content/uploads/2011/10/Screen-shot-2011-10-09-at-6.44.47-PM.png" alt="mysql command line command show databases" width="244" height="403" /></a></p>
<p>If you type the MySQL command : USE &lt;table name&gt;  you can then start using that particular database.</p>
<p>Another convenient command is SHOW TABLES. Can you figure out what that does?</p>
<p>Now you can type MySQL commands right from the command line.</p>
<address> </address>
<address> </address>
<address> </address>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/mamp/mysql-from-the-command-line-terminal-in-mamp-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAMP: Dealing with HUGE MySQL Queries</title>
		<link>http://www.rubberneckdesigns.com/mamp/mamp-dealing-with-huge-mysql-queries/</link>
		<comments>http://www.rubberneckdesigns.com/mamp/mamp-dealing-with-huge-mysql-queries/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 23:37:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAMP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.rubberneckdesigns.com/?p=335</guid>
		<description><![CDATA[After importing a relativly huge table into my local dev using MAMP, I was experiencing MySQL hangups on large queries that when on a live site would be no problem. To fix this I made the following adjustments to the MAMP PRO my.cnf  file. The my.cnf file is edited in MAMP PRO pulldown menu by [...]]]></description>
			<content:encoded><![CDATA[<p>After importing a relativly huge table into my local dev using MAMP, I was experiencing MySQL hangups on large queries that when on a live site would be no problem.</p>
<p>To fix this I made the following adjustments to the MAMP PRO my.cnf  file.</p>
<p>The my.cnf file is edited in MAMP PRO pulldown menu by clicking on  FILE&gt;&gt;Edit Template&gt;&gt;MySQL my.cnf<br />
<img class="alignnone size-medium wp-image-334" title="MAMP my.cnf file edit" src="http://www.rubberneckdesigns.com/wp-content/uploads/2011/01/Screen-shot-2011-01-30-at-5.21.09-PM-300x126.jpg" alt="MAMP my.cnf file edit" width="300" height="126" /></p>
<p>Notice starting on line 30 (image below) that I made changes to buffer allowances and memory allowances etc.<br />
Basically just making everything bigger. I could hone this to the &#8220;best sizes&#8221; but really i don&#8217;t have time<br />
and this is just for my local dev so threw some pretty big numbers in there for plenty of elbow room. IF you have any suggestions or have optimized your my.cnf file please feel free to make a comment.</p>
<p><img class="alignnone size-full wp-image-336" title="Screen shot 2011-01-30 at 5.33.19 PM" src="http://www.rubberneckdesigns.com/wp-content/uploads/2011/01/Screen-shot-2011-01-30-at-5.33.19-PM.jpg" alt="Screen shot 2011-01-30 at 5.33.19 PM" width="417" height="407" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/mamp/mamp-dealing-with-huge-mysql-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get Port 80 Working on MAMP</title>
		<link>http://www.rubberneckdesigns.com/apache/how-to-get-port-80-working-on-mamp/</link>
		<comments>http://www.rubberneckdesigns.com/apache/how-to-get-port-80-working-on-mamp/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 23:32:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[MAMP]]></category>

		<guid isPermaLink="false">http://www.rubberneckdesigns.com/?p=331</guid>
		<description><![CDATA[Thanks James for the following advice: Got to step 7 and it worked for me! 1) Take some tea 2) Follow these instructions: 3) Disable Web Sharing in System Preferences 4) Open MAMP, make sure servers are stopped 5) Open Preferences panel in MAMP 6)  Switch to Ports, set Apache Port to 80. Click OK. [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks James for the following advice:</p>
<p>Got to step 7 and it worked for me!</p>
<p>1) Take some tea<br />
2) Follow these instructions:<br />
3) Disable Web Sharing in System Preferences<br />
4) Open MAMP, make sure servers are stopped<br />
5) Open Preferences panel in MAMP<br />
6)  Switch to Ports, set Apache Port to 80. Click OK.<br />
7)  Try starting your servers.<br />
* If it doesn&#8217;t work, manually review your httpd.conf file (within the MAMP application folder) and make sure that there are no active references to 8888</p>
<p>BTW: you can turn Web Sharing back on after these steps and it will keep working on Port 80.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/apache/how-to-get-port-80-working-on-mamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import WordPress Database from Staging Server to Local Development Server</title>
		<link>http://www.rubberneckdesigns.com/mamp/import-wordpress-database-from-staging-server-to-local-development-server/</link>
		<comments>http://www.rubberneckdesigns.com/mamp/import-wordpress-database-from-staging-server-to-local-development-server/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 17:01:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAMP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.rubberneckdesigns.com/?p=317</guid>
		<description><![CDATA[You may be working with a WordPress project and wish to use SVN to have a development instance, a staging instance, a local development instance and of course a production instance of the web site. This could prove to be problematic in keeping track of your data base instances. WordPress stores the root URL (http://website.com) [...]]]></description>
			<content:encoded><![CDATA[<p>You may be working with a WordPress project and wish to use SVN to have a development instance, a staging instance, a local development instance and of course a production instance of the web site. This could prove to be problematic in keeping track of your data base instances. WordPress stores the root URL (http://website.com) at several places in their database. This can cause a problem when you try to import a copy of one of the live databases to your local development environment. When ever you click on a link it will send you to the live instance instead of remaining on your local environment. A way around this, for local development environment purposes, would be as follows:</p>
<ol>
<li>prior to importing the .sql file, open it in your favorite code editor. I like to use BB Edit.</li>
<li>Perform a search and replace on the .sql file for the root url.</li>
<li> ie:  search for &#8220;http://www.livestagingserver.com&#8221; and replace with &#8220;http://mylocaldev.me&#8221;</li>
<li>Save the file and import it into your local WordPress data base.</li>
</ol>
<p>Now whenever you click on your posts in your local development environment the links will stay within your local development environment.<br />
This way, you can keep a local copy of your database so you have a faster and more local way of working. This also serves to keep the live instance of the database from getting contaminated with the residual artifacts of development work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/mamp/import-wordpress-database-from-staging-server-to-local-development-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navicat Connetion with MAMP Pro</title>
		<link>http://www.rubberneckdesigns.com/drupal-6-drupal-7/navicat-connetion-with-mamp-pro/</link>
		<comments>http://www.rubberneckdesigns.com/drupal-6-drupal-7/navicat-connetion-with-mamp-pro/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 16:43:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal 6 & Drupal 7]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.rubberneckdesigns.com/?p=284</guid>
		<description><![CDATA[MAMP Pro has a lot of nice features. However, this means it changes things up a bit. How you make a connection with Navicat is one such example. So here is a quick helper post get Navicat up and running with MAMP PRo. 1) Add your information to the &#8220;Connection Properties&#8221; Pane as you normally [...]]]></description>
			<content:encoded><![CDATA[<p>MAMP Pro has a lot of nice features. However, this means it changes things up a bit. How you make a connection with Navicat is one such example. So here is a quick helper post get Navicat up and running with MAMP PRo.</p>
<p>1) Add your information to the &#8220;Connection Properties&#8221; Pane as you normally would.</p>
<p><img class="size-medium wp-image-286 alignnone" title="Navicat Pane -General" src="http://www.rubberneckdesigns.com/wp-content/uploads/2010/02/Screen-shot-2010-02-13-at-12.02.48-PM-300x270.jpg" alt="Navicat Pane -General" width="300" height="270" /></p>
<p>2) Click on the &#8220;Advanced&#8221; pane and check the box next to &#8220;Use socket for localhost connection.&#8221;</p>
<p>3) Then for the &#8220;Socket File Path&#8221; field type the following path.</p>
<p>/Applications/MAMP/tmp/mysql/mysql.sock</p>
<p>The &#8220;Advanced&#8221; Pane should now look like this:</p>
<p><img class="alignnone size-medium wp-image-287" title="Navicat Advanced Pane" src="http://www.rubberneckdesigns.com/wp-content/uploads/2010/02/Screen-shot-2010-02-13-at-12.09.26-PM-300x263.jpg" alt="Navicat Advanced Pane" width="300" height="263" /></p>
<p>Click &#8220;OK&#8221; and you should be all set.</p>
<p><img class="alignnone size-medium wp-image-289" title="Navicat Connection Sucessfull" src="http://www.rubberneckdesigns.com/wp-content/uploads/2010/02/Screen-shot-2010-02-13-at-12.11.35-PM-300x265.jpg" alt="Navicat Connection Sucessfull" width="300" height="265" /></p>
<p>I hope this helps. Please feel free to make comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/drupal-6-drupal-7/navicat-connetion-with-mamp-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Virtual Hosts ON Your MAC for MAMP</title>
		<link>http://www.rubberneckdesigns.com/mamp/virtual-host-mamp/</link>
		<comments>http://www.rubberneckdesigns.com/mamp/virtual-host-mamp/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 01:12:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAMP]]></category>
		<category><![CDATA[UNIX / LINIX]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://rubberneckdesigns.com/?p=158</guid>
		<description><![CDATA[Open up the terminal. 1)    Web-Two:~ webtwo$  cd /etc &#60;&#8211;change directory to the etc directory 2)    Web-Two:etc webtwo$ sudo nano hosts &#60;&#8211;super user do (does not stay logged in),  editor, file=hosts 3)    Password: *******  &#60;&#8211; enter password 4)   Editor opens up. You will see something like this&#8230; # # Host Database # # localhost is [...]]]></description>
			<content:encoded><![CDATA[<p>Open up the terminal.<br />
1)    Web-Two:~ webtwo$  <span style="color: #bf9000;">cd /etc</span> <span style="color: #0000ff;">&lt;&#8211;change directory to the etc directory</span></p>
<p>2)    Web-Two:etc webtwo$ <span style="color: #bf9000;">sudo nano hosts </span><span style="color: #0000ff;">&lt;&#8211;super user do (does not stay logged in),  editor, file=hosts</span></p>
<p>3)    Password: *******  <span style="color: #0000ff;">&lt;&#8211; enter password<br />
</span><br />
4)   Editor opens up. You will see something like this&#8230;</p>
<p><span style="font-size: xx-small;">#<br />
# Host Database<br />
#<br />
# localhost is used to configure the loopback interface<br />
# when the system is booting.  Do not change this entry.<br />
##<br />
127.0.0.1       localhost<br />
255.255.255.255 broadcasthost<br />
::1             localhost<br />
fe80::1%lo0     localhost</span><br />
5)  Type in the local IP followed by the name of the site you wish to make a virtual host for:<br />
<span style="font-size: x-small;">ie. </span><span style="font-size: x-small;"><span style="color: #b45f06;">127.0.0.1 yoursite.you</span> <span style="color: #0000ff;">&lt;&#8211; replace this with your name</span></span><br />
You should do this for each site you wish to make a virtual host for , line by line.<br />
Your /etc/hosts   file should now look more like this:<br />
<span style="font-size: xx-small;">#<br />
# Host Database<br />
#<br />
# localhost is used to configure the loopback interface<br />
# when the system is booting.  Do not change this entry.<br />
##<br />
127.0.0.1       localhost<br />
255.255.255.255 broadcasthost<br />
::1             localhost<br />
fe80::1%lo0     localhost<br />
127.0.0.1 yoursite.you</span><br />
<span style="font-size: xx-small;">127.0.0.1 anothersite.you<br />
</span><span style="font-size: xx-small;">127.0.0.1 yetanothersite.you</span></p>
<p>6)  Exit your editor, in this example I used, nano. <span style="color: #0000ff;">Note: Be sure to SAVE the file</span>.</p>
<p>7)  OK, now navigate to the file:    Applications/MAMP/conf/apache/httpd.conf  and open it in a text only editor ( like BBedit or Smultron or something )</p>
<p>8)  Scroll to the bottom of the httpd.conf file. For <strong>each</strong> site type in the following:</p>
<p><span style="font-size: xx-small;">&lt;VirtualHost *&gt;<br />
DocumentRoot &#8220;/Users/yourusername/Sites/site-folder-name&#8221;  <span style="color: #0000ff;">&lt;&#8211; replace with your own appropriate info</span><br />
ServerName  localsite.you </span><span style="font-size: xx-small;"><span style="color: #0000ff;">&lt;&#8211; replace with your own appropriate info</span></span><br />
<span style="font-size: xx-small;"> ServerAlias </span><span style="font-size: xx-small;">localsite.you</span> <span style="font-size: xx-small;"><span style="color: #0000ff;">&lt;&#8211; replace with your own appropriate info</span></span><br />
<span style="font-size: xx-small;"> &lt;Directory &#8220;/Applications/MAMP/htdocs&#8221;&gt; </span><span style="font-size: xx-small;"><span style="color: #0000ff;">&lt;&#8211; do NOT change for MAMP</span></span><br />
<span style="font-size: xx-small;"> AllowOverride all  <span style="color: #0000ff;">&lt;&#8211; this allows the htacces file to work properly</span><br />
&lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;</span></p>
<p>9) Save the Applications/MAMP/conf/apache/httpd.conf    file and RESTART your MAMP server.</p>
<p>Now, when you type in the  site   www.localsite.you  followed by your MAMP port (usually 8888) like this:</p>
<p><strong>http://www.localsite.you:8888</strong> your site will come up!</p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/mamp/virtual-host-mamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viewing the Websites You Are Developing Locally on Your Computer Using MAMP</title>
		<link>http://www.rubberneckdesigns.com/mamp/viewing-the-websites-you-are-developing-locally-on-your-computer-using-mamp/</link>
		<comments>http://www.rubberneckdesigns.com/mamp/viewing-the-websites-you-are-developing-locally-on-your-computer-using-mamp/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 00:50:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAMP]]></category>
		<category><![CDATA[UNIX / LINIX]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://rubberneckdesigns.com/?p=154</guid>
		<description><![CDATA[Normally, when using MAMP ( I am presently using the FREE version of MAMP) you view the site you are working on in a couple of ways. Put your web site in the    /Applications/MAMP/htdocs/     folder and point your browser to   http://locahost:8888/ or (This is what I like to do for multiple site management) Put [...]]]></description>
			<content:encoded><![CDATA[<p>Normally, when using MAMP ( I am presently using the FREE version of MAMP) you view the site you are working on in a couple of ways.</p>
<p>Put your web site in the    /Applications/MAMP/htdocs/     folder and point your browser to   http://locahost:8888/</p>
<p><em><strong>or </strong></em>(This is what I like to do for multiple site management)</p>
<p>Put your sites in appropriately named folders under the &#8220;Sites&#8221; folder.<br />
Click on MAMP Preferences and select the &#8220;Apache&#8221; tab. Then click the &#8220;Select&#8221; button and browse to the &#8220;Sites&#8221; folder.</p>
<p>That way, you can easily get to any of the folders by typing in the URL http://localhost:8888/. You will be presented with a list of folders (as links). These folders are the sites you are developing under the Sites directory. Just click the folder (link) you wish to view and you&#8217;re there.</p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rubberneckdesigns.com/mamp/viewing-the-websites-you-are-developing-locally-on-your-computer-using-mamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

