<?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>Popoleo Designs &#187; Tutorials</title>
	<atom:link href="http://www.popoleodesigns.com/category/blog/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.popoleodesigns.com</link>
	<description>Quality Website Designs at Affordable Prices</description>
	<lastBuildDate>Sun, 04 Apr 2010 23:51:21 +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>Installing PEAR on Mac OS X Leopard XAMPP</title>
		<link>http://www.popoleodesigns.com/blog/installing-pear-on-mac-os-x-leopard-xampp/</link>
		<comments>http://www.popoleodesigns.com/blog/installing-pear-on-mac-os-x-leopard-xampp/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 18:54:13 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[Mac OS X 10.5]]></category>
		<category><![CDATA[mac-os-x-105]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://www.popoleodesigns.com/?p=586</guid>
		<description><![CDATA[XAMPP for Mac does come with PEAR but it is NOT configured.
Update PEAR
sudo su &#8211;  [Enter root password]
cd /Applications/xampp/xamppfiles/lib/php/pear
sudo php pearcmd.php channel-update pear.php.net
sudo php pearcmd.php install PEAR
sudo php pearcmd.php install Log

sudo php pearcmd.php list
add PEAR to the php.ini include_path 
Edit /Applications/xampp/etc/php.ini (include path is at the very end of the php.ini file)
include_path = &#8220;.:/Applications/xampp/xamppfiles/lib/php:/Applications/xampp/xamppfiles/lib/php/pear&#8221;
To [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.popoleodesigns.com/wp-content/uploads/2009/08/1249498426_server.png" alt="1249498426_server" title="1249498426_server" width="128" height="128" class="alignleft size-full wp-image-587" />XAMPP for Mac does come with PEAR but it is NOT configured.</p>
<p><strong>Update PEAR</strong><br />
sudo su &#8211;  [Enter root password]<br />
cd /Applications/xampp/xamppfiles/lib/php/pear<br />
sudo php pearcmd.php channel-update pear.php.net<br />
sudo php pearcmd.php install PEAR<br />
sudo php pearcmd.php install Log<br />
<span id="more-586"></span><br />
sudo php pearcmd.php list</p>
<p><strong>add PEAR to the php.ini include_path </strong><br />
Edit /Applications/xampp/etc/php.ini (include path is at the very end of the php.ini file)</p>
<p><span style="font-size: 12px;">include_path = &#8220;.:/Applications/xampp/xamppfiles/lib/php:/Applications/xampp/xamppfiles/lib/php/pear&#8221;</span></p>
<p><strong>To install a package</strong><br />
Type<br />
sudo su  [Enter root password]<br />
cd /Applications/xampp/xamppfiles/lib/php/pear<br />
pear install pear/PACKAGE_NAME</p>
<p>Thats it, good luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.popoleodesigns.com/blog/installing-pear-on-mac-os-x-leopard-xampp/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Edit your Mac HOSTS file</title>
		<link>http://www.popoleodesigns.com/blog/edit-your-mac-hosts-file/</link>
		<comments>http://www.popoleodesigns.com/blog/edit-your-mac-hosts-file/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 18:49:00 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[HOSTS File]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[Mac OS X 10.5]]></category>
		<category><![CDATA[web development tips]]></category>

		<guid isPermaLink="false">http://www.popoleodesigns.com/?p=579</guid>
		<description><![CDATA[If you like making things a little easier on yourself while you are working on your local development server this is for you!
What am I talking about you ask?

hmm&#8230;.
What I am talking about is editing your Mac hosts file so that you can view your local site with this
http://myawsomesite
rather than this
http://localhost/myawsomesite
Here it is&#8230;.
Launch your Mac [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.popoleodesigns.com/wp-content/uploads/2009/08/1249498102_folder_apple_with_file.png" alt="1249498102_folder_apple_with_file" title="1249498102_folder_apple_with_file" width="128" height="128" class="alignleft size-full wp-image-580" />If you like making things a little easier on yourself while you are working on your local development server this is for you!</p>
<p>What am I talking about you ask?<br />
<span id="more-579"></span><br />
hmm&#8230;.<br />
What I am talking about is editing your Mac hosts file so that you can view your local site with this</p>
<p>http://myawsomesite</p>
<p>rather than this</p>
<p>http://localhost/myawsomesite</p>
<p>Here it is&#8230;.</p>
<p>Launch your Mac Terminal and type<br />
sudo su [RETURN]<br />
Enter Root Password [RETURN]<br />
nano /etc/hosts [RETURN]</p>
<p>Position yourself with your keyboard arrows<br />
type 127.0.0.1         myawsomesite</p>
<p>Hit the ctrl-x keys. Terminal will ask if you want to save changes. Type a &#8220;y&#8221; for yes.<br />
Hit [RETURN] to save the file</p>
<p>thats it, now type http://myawsomesite into your internet browser and it will take you to you local site.</p>
<p>note: If you are using a v-host configuration in apache, you will need to add myawsomesite as an alias under that host.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.popoleodesigns.com/blog/edit-your-mac-hosts-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showing hidden Files on Mac OS X 10.5 Leopard</title>
		<link>http://www.popoleodesigns.com/blog/tutorials/showing-hidden-files-on-mac-os-x-10-5-leopard/</link>
		<comments>http://www.popoleodesigns.com/blog/tutorials/showing-hidden-files-on-mac-os-x-10-5-leopard/#comments</comments>
		<pubDate>Wed, 14 May 2008 18:34:54 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[Mac OS X 10.5]]></category>
		<category><![CDATA[Showing hidden Files]]></category>

		<guid isPermaLink="false">http://www.popoleodesigns.com/?p=575</guid>
		<description><![CDATA[After you get apache up and running on your Mac, you will not be able to see your .htaccess and other configuration files. Here is a quick fix for that problem.
Open Terminal and copy the following text-
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

You will notice you screen will blink as finder restarts. Once it come back [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.popoleodesigns.com/wp-content/uploads/2009/08/1249497368_mac.png" alt="1249497368_mac" title="1249497368_mac" width="128" height="128" class="alignleft size-full wp-image-577" />After you get apache up and running on your Mac, you will not be able to see your .htaccess and other configuration files. Here is a quick fix for that problem.</p>
<p>Open Terminal and copy the following text-<br />
defaults write com.apple.finder AppleShowAllFiles TRUE<br />
killall Finder<br />
<span id="more-575"></span><br />
You will notice you screen will blink as finder restarts. Once it come back on all you hidden files will be visable.</p>
<p>note: Change &#8220;TRUE&#8221; to &#8220;FALSE&#8221; to make them disappear again.</p>
<p>Open Terminal and copy the following text-<br />
defaults write com.apple.finder AppleShowAllFiles FALSE<br />
killall Finder</p>
]]></content:encoded>
			<wfw:commentRss>http://www.popoleodesigns.com/blog/tutorials/showing-hidden-files-on-mac-os-x-10-5-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to install XAMPP on Debian</title>
		<link>http://www.popoleodesigns.com/blog/how-to-install-xampp-on-debian/</link>
		<comments>http://www.popoleodesigns.com/blog/how-to-install-xampp-on-debian/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 19:25:08 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[debian-linux]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://www.popoleodesigns.com/?p=372</guid>
		<description><![CDATA[XAMPP is a free and open source cross-platform web server package, consisting mainly of the Apache HTTP Server, MySQL database, and interpreters for scripts written in the PHP and Perl programming languages.
The program is released under the terms of the GNU General Public License and acts as a free web server capable of serving dynamic [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-390" title="Debian Linux &amp; XAMPP" src="http://www.popoleodesigns.com/wp-content/uploads/2009/07/linuxconf.png" alt="Debian Linux &amp; XAMPP" width="128" height="128" />XAMPP is a free and open source cross-platform web server package, consisting mainly of the Apache HTTP Server, MySQL database, and interpreters for scripts written in the PHP and Perl programming languages.</p>
<p>The program is released under the terms of the GNU General Public License and acts as a free web server capable of serving dynamic pages. XAMPP is available for <a title="XAMPP for Windows" href="http://www.apachefriends.org/en/xampp-windows.html" rel="external">Microsoft Windows</a>, <a title="XAMPP for Linux" href="http://www.apachefriends.org/en/xampp-linux.html" rel="external">Linux</a>, <a title="XAMPP for Solaris" href="http://www.apachefriends.org/en/xampp-solaris.html" rel="external">Solaris</a>, and <a title="XAMPP for Mac OS X" href="http://www.apachefriends.org/en/xampp-macosx.html" rel="external">Mac OS X</a>, and is mainly used for web development projects.</p>
<p>Please keep in mind that these are the notes that I came up with when I was trying to figure this out for myself. If anyone finds any errors or a better way to do this just let me know, and I will add it to this guide.<span id="more-372"></span></p>
<p><strong>Installing XAMPP</strong></p>
<pre name="code" class="php">debian:~# wget http://kent.dl.sourceforge.net/sourceforge/xampp/xampp-linux-1.6.5a.tar.gz</pre>
<p>(command downloads XAMPP to the server)</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">debian:~<span style="color: #666666; font-style: italic;"># tar xvfz xampp-linux-1.6.5a.tar.gz -C /opt</span></div></td></tr></tbody></table></div>
<p>(command extracts the downloaded archive file to /opt:)</p>
<p><strong>Starting XAMPP</strong></p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">debian:~<span style="color: #666666; font-style: italic;"># /opt/lampp/lampp start</span></div></td></tr></tbody></table></div>
<p>(Apache, PHP, MySQL, &amp; ProFTPD will start)<br />
Starting XAMPP for Linux 1.6.5a…<br />
XAMPP: Starting Apache with SSL (and PHP5)…<br />
XAMPP: Starting MySQL…<br />
XAMPP: Starting ProFTPD…<br />
XAMPP for Linux started.</p>
<p><strong>Test XAMPP</strong><br />
Check to see if your installation was successful. Navigate to http://yourdomain.com. You should see the XAMPP  splash  page.<br />
<a href="http://www.popoleodesigns.com/wp-content/uploads/2009/07/xamppsplash1.jpg"><img class="blog_post_img" title="XAMPP Splash Page" src="http://www.popoleodesigns.com/wp-content/uploads/2009/07/xamppsplash1-300x236.jpg" alt="xamppsplash" width="300" height="236" /></a></p>
<p><strong>XAMPP Start Page</strong><br />
<a href="http://www.popoleodesigns.com/wp-content/uploads/2009/07/xamppstart.jpg"><img class="blog_post_img" title="XAMPP Start Page" src="http://www.popoleodesigns.com/wp-content/uploads/2009/07/xamppstart-300x236.jpg" alt="XAMPP Start Page" width="300" height="236" /></a></p>
<p><strong>XAMPP Security</strong><br />
XAMPP is setup to be used in a development environment. The base configuration of XAMPP has NO SECURITY and should not be used as a live web server.</p>
<p><strong>Missing security in XAMPP:</strong></p>
<ul>
<li>The MySQL administrator (root) has no password.</li>
<li>The MySQL daemon is accessible via network.</li>
<li>ProFTPD uses the password “lampp” for user “nobody”.</li>
<li>PhpMyAdmin is accessible via network.</li>
<li>Examples are accessible via network.</li>
<li>MySQL and Apache running under the same user (nobody).</li>
</ul>
<p>To fix or close all these matters simply call</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">debian:~<span style="color: #666666; font-style: italic;"># /opt/lampp/lampp security</span></div></td></tr></tbody></table></div>
<p>The command will start an interactive program.<br />
XAMPP: Quick security check…<br />
XAMPP: Your XAMPP pages are NOT secured by a password.<br />
XAMPP: Do you want to set a password? [yes] yes<br />
XAMPP: Password:<br />
XAMPP: Password (again):<br />
XAMPP: Password protection active. Please use ‘lampp’ as user name!<br />
XAMPP: MySQL is accessable via network.<br />
XAMPP: Normaly that’s not recommended. Do you want me to turn it off? [yes] yes<br />
XAMPP: Turned off.<br />
XAMPP: Stopping MySQL…<br />
XAMPP: Starting MySQL…<br />
XAMPP: The MySQL/phpMyAdmin user pma has no password set!!!<br />
XAMPP: Do you want to set a password? [yes] yes<br />
XAMPP: Password:<br />
XAMPP: Password (again):<br />
XAMPP: Setting new MySQL pma password.<br />
XAMPP: Setting phpMyAdmin’s pma password to the new one.<br />
XAMPP: MySQL has no root passwort set!!!<br />
XAMPP: Do you want to set a password? [yes] yes<br />
XAMPP: Write the password somewhere down to make sure you won’t forget it!!!<br />
XAMPP: Password:<br />
XAMPP: Password (again):<br />
XAMPP: Setting new MySQL root password.<br />
XAMPP: Change phpMyAdmin’s authentication method.<br />
XAMPP: The FTP password is still set to ‘lampp’.<br />
XAMPP: Do you want to change the password? [yes] yes<br />
XAMPP: Password:<br />
XAMPP: Password (again):<br />
XAMPP: Reload ProFTPD…<br />
XAMPP: Done.</p>
<p><strong>Check the XAMPP Security page</strong><br />
<a href="http://www.popoleodesigns.com/wp-content/uploads/2009/07/xamppsecurity.jpg"><img class="blog_post_img" title="XAMPP Security Page" src="http://www.popoleodesigns.com/wp-content/uploads/2009/07/xamppsecurity-300x237.jpg" alt="XAMPP Security Page" width="300" height="237" /></a></p>
<p><strong>Controlling XAMPP for Debian Linux</strong></p>
<p><strong>XAMPP Directories</strong><br />
/opt/lampp/bin/</p>
<p>Start XAMPP with this command</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">debian:~<span style="color: #666666; font-style: italic;"># /opt/lampp/lampp start</span></div></td></tr></tbody></table></div>
<p>Stop XAMPP with this command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">debian:~<span style="color: #666666; font-style: italic;"># /opt/lampp/lampp stop</span></div></td></tr></tbody></table></div>
<p>Uninstall XAMPP with this command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">debian:~<span style="color: #666666; font-style: italic;"># rm -rf /opt/lampp</span></div></td></tr></tbody></table></div>
<p>Visit <a href="http://ApacheFriends.org">ApacheFriends.org</a></p>
<p><img class="alignleft size-medium wp-image-403" title="XAMPP for Linux" src="http://www.popoleodesigns.com/wp-content/uploads/2009/07/xamppforlinux-300x48.gif" alt="XAMPP for Linux" width="300" height="48" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.popoleodesigns.com/blog/how-to-install-xampp-on-debian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to “Print Screen” on Mac OS X Computers</title>
		<link>http://www.popoleodesigns.com/blog/how-to-print-screen-on-mac-os-x-computers/</link>
		<comments>http://www.popoleodesigns.com/blog/how-to-print-screen-on-mac-os-x-computers/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 20:05:58 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Print Screen]]></category>

		<guid isPermaLink="false">http://www.popoleodesigns.com/?p=363</guid>
		<description><![CDATA[I recently switched from Windows XP and Windows Vista to Mac OS X 10.5 Leopard. One of the many things I had to figure out how to do on my new Mac was the Print Screen function that I used all the time on Windows. So for those of you that don’t already know, here [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.popoleodesigns.com/wp-content/uploads/2008/03/Mac.png" alt="Print Screen on OS X" title="Print Screen on OS X" width="128" height="128" class="alignleft size-full wp-image-369" />I recently switched from Windows XP and Windows Vista to Mac OS X 10.5 Leopard. One of the many things I had to figure out how to do on my new Mac was the Print Screen function that I used all the time on Windows. So for those of you that don’t already know, here is the different key combination for “Print Screen” on Mac OS X Computers.</p>
<p>Command key, Shift key, and the number 3 key &#8211; takes a screen shot and saves it to the Desktop.</p>
<p>Command key, Shift key, and the number 4 key &#8211; the mouse changes from an arrow into cross hairs. Drag the cross hairs over the area you want to capture, when you release the mouse the screen shot will appear on your desktop.</p>
<p><span id="more-363"></span>Command key, Shift key, and the number 4 key, + space bar &#8211; the cursor will turn into a camera. Move over a window and click the mouse to take a snapshot of the window.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.popoleodesigns.com/blog/how-to-print-screen-on-mac-os-x-computers/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

