<?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>Eastwood Arts</title>
	<atom:link href="http://eastwoodarts.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://eastwoodarts.com</link>
	<description>Web designer and developer in West Chester and Philadelphia Pennsylvania</description>
	<lastBuildDate>Tue, 02 Feb 2010 14:09:55 +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>Magento as a platform to run sister sites</title>
		<link>http://eastwoodarts.com/magento-platform-for-multiple-sites/</link>
		<comments>http://eastwoodarts.com/magento-platform-for-multiple-sites/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 13:33:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Work]]></category>

		<guid isPermaLink="false">http://eastwoodarts.com/?p=94</guid>
		<description><![CDATA[A design refresh for WetsuitGear.com and a new site, Kite-Gear.com.  Both sites running on Magento Ecommerce Platform.]]></description>
			<content:encoded><![CDATA[<h4><strong>Goals</strong></h4>
<p>Re-design the look and feel of <a href="http://wetsuitgear.com/" target="_blank">Wetsuit Gear</a> and use that design as a springboard for <a href="http://kite-gear.com/" target="_blank">Kite Gear</a>.  Have both sites use a single administrative back-end to streamline order processing.</p>
<h4><strong>Solution</strong></h4>
<p>Wetsuit Gear is an online store that sells wetsuits and drysuits for all sorts of needs.  The site was a few years old from when I originally put it together with OSCommerce.  The client wanted to create a new store for selling kite boarding gear in addition to a refresh on wetsuitgear.com.  Instead of creating two separate instances of OSCommerce we  opted for <a href="http://www.magentocommerce.com/" target="_blank">Magento</a>.  Magento has a fantastic amount of features out the box compared to other ecommerce platforms and it can be setup to run multiple sites from a single admin.  The client logs in at a single point and can manage orders, add products, view reports&#8230; all from one place.</p>
]]></content:encoded>
			<wfw:commentRss>http://eastwoodarts.com/magento-platform-for-multiple-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change your look, your style and your mood with Leigh Ann Barnes</title>
		<link>http://eastwoodarts.com/leigh-ann-barnes/</link>
		<comments>http://eastwoodarts.com/leigh-ann-barnes/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 19:08:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Work]]></category>

		<guid isPermaLink="false">http://eastwoodarts.com/?p=89</guid>
		<description><![CDATA[The Shopp plugin wins again for small business ecommerce.]]></description>
			<content:encoded><![CDATA[<h4><strong>Goals</strong></h4>
<p>Re-design the look and feel of Leigh Ann Barnes&#8217; website.  Have an online catalog for purchasing handbags and accessories.</p>
<h4><strong>Solution</strong></h4>
<p>Leigh Ann Barnes, LLC sells their own line of reversible handbags.  The <a href="https://shopplugin.net/" target="_blank">Shopp plugin</a> was great fit for this small business.  They are able to manage all their products, promotions, orders and website content.  The homepage slider made for a great way to showcase all the combinations you can have with each bag.</p>
]]></content:encoded>
			<wfw:commentRss>http://eastwoodarts.com/leigh-ann-barnes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Website Status Monitor</title>
		<link>http://eastwoodarts.com/php-website-status-monitor/</link>
		<comments>http://eastwoodarts.com/php-website-status-monitor/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 21:18:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Script]]></category>

		<guid isPermaLink="false">http://eastwoodarts.com/?p=68</guid>
		<description><![CDATA[Handy script that alerts you if your server or website goes down. ]]></description>
			<content:encoded><![CDATA[<p>You have probably seen some of those nifty websites that &#8216;monitor your blog&#8217;.  All they are really doing is checking up on your domain or IP in an automated fashion.  I needed a solution that would let me and/or some folks I work with know if a server is up and running or not.  (Some dedicated server hosts give you a notification option)</p>
<p>Figuring that someone has to have already made a script that does this, I did some searching and <a href="http://blog.a2b.cc/?p=94" target="_blank">found some code</a> on blog.a2b.cc.   The idea here is that you setup the script with a cron job on some inexpensive and fairly reliable shared hosting account.  This way you have a third party monitoring your precious servers.</p>
<p>In the following I have taken what was <a href="http://blog.a2b.cc/?p=94" target="_blank">posted on blog.a2b.cc</a> and made some improvements.</p>
<ul>
<li>Configuration section for clarity</li>
<li>Option to execute a ping command or use fsockopen()</li>
<li>Option to use mail() or smtp (via <a href="http://phpmailer.sourceforge.net" target="_blank">phpmailer</a>)</li>
</ul>
<p>Not many shared hosts let you use the exec() function.  So executing a ping command is often out.  Using fsockopen() to create a socket connection is a decent way around this.</p>
<p>Using mail() to send your notification emails these days seems to be worthless.  More hosts are implementing throttling and other means that either block or delay sending.  SMTP is really the better way to send.</p>
<h3>Installation</h3>
<p>First you need to create a table in a database that is something like this:</p>
<pre class="sql" name="code">CREATE TABLE mon_host_ping (
mon_host_ping_id int(5) NOT NULL auto_increment,
mon_host_ping_hostname varchar(128) NOT NULL default ‘’,
mon_host_ping_factor bigint(16) default NULL,
mon_host_ping_lastupdt timestamp(14) NOT NULL,
PRIMARY KEY  (mon_host_ping_id),
UNIQUE KEY mon_host_ping_hostname (mon_host_ping_hostname)
) TYPE=MyISAM;</pre>
<p>Insert the address of whatever website(s) or server(s) you plan to monitor:</p>
<pre class="sql" name="code">insert into mon_host_ping values(NULL, “target.example.com”, 0, NOW());</pre>
<p>You will need go through the configuration options at the top of the file.  Upload php-status-monitor.php to your account (preferably not somewhere that is open to the web).  Then create a cron job that will run every minute.  It would look something like this:</p>
<pre class="sql" name="code">php -q /your-absolute-path-or-document-root/php-status-monitor.php -h target.example.com -l pinger.example.com -e myaddress@example.com,8005551212@vtext.com</pre>
<p>-h is the “host” you are pinging, -l is the name of the “localhost”, i.e. the machine you are pinging from, and -e is the email address (or multiple email addresses) you want to send any alarm mails to.  If you want it the message sent as a text message to your cell phone you will need to figure out what your cell phone email address is.</p>
<h3>Download</h3>
<p><a href="http://eastwoodarts.com/wp-content/uploads/php-status-monitor.zip">php-status-monitor.zip</a> 3.33KB</p>
<p>Feel free to share and edit the script.  Any comments or suggestions submit below.</p>
]]></content:encoded>
			<wfw:commentRss>http://eastwoodarts.com/php-website-status-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New website for G&amp;G Cigar Company</title>
		<link>http://eastwoodarts.com/gg-cigar-company/</link>
		<comments>http://eastwoodarts.com/gg-cigar-company/#comments</comments>
		<pubDate>Fri, 15 May 2009 02:36:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Work]]></category>

		<guid isPermaLink="false">http://eastwoodarts.com/blog/?p=1</guid>
		<description><![CDATA[Gave ggcigars.com a fresh new look and functionality. The Shopp plugin for Wordpress rocks!]]></description>
			<content:encoded><![CDATA[<h4><strong>Goals</strong></h4>
<p>Re-design the look and feel of G&amp;G Cigar Company&#8217;s website.  Have an online catalog were visitors can shop for cigars.  Connect more people with the many events that G&amp;G host.</p>
<h4><strong>Solution</strong></h4>
<p>G&amp;G Cigar Company is a family owned cigar and tobacco shop in West Chester, PA.  Content management for is handled through Wordpress.  The online cigar catalog features an ajax shopping cart and a streamlined product listing;  The <a href="https://shopplugin.net/" target="_blank">Shopp plugin</a> was used for this.  The news and events part is your standard list-o-posts along with a constant contact signup.  The wonderful photography was done by <a href="http://adriangibbsphotography.com/" target="_blank">Adrian Gibbs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://eastwoodarts.com/gg-cigar-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design for NYC Web Design</title>
		<link>http://eastwoodarts.com/nyc-web-design/</link>
		<comments>http://eastwoodarts.com/nyc-web-design/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 21:53:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Work]]></category>

		<guid isPermaLink="false">http://eastwoodarts.com/blog/?p=28</guid>
		<description><![CDATA[Was asked to create a Wordpress template for a new blog that Delphic Sage was launching.]]></description>
			<content:encoded><![CDATA[<h4><strong><strong>Goal</strong></strong></h4>
<p>Create a compelling template for blog.</p>
<h4><strong><strong>Solution</strong></strong></h4>
<p>Was asked to create a Wordpress template for a new blog that <a href="http://www.delphicsage.com/" target="_blank">Delphic Sage</a> was launching.  The subway is a very prominent feature of the city and it also a series of tubes like the Internet!</p>
]]></content:encoded>
			<wfw:commentRss>http://eastwoodarts.com/nyc-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TriangleSings! re-design and upgrades</title>
		<link>http://eastwoodarts.com/trianglesings/</link>
		<comments>http://eastwoodarts.com/trianglesings/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 00:15:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Work]]></category>

		<guid isPermaLink="false">http://eastwoodarts.com/blog/?p=38</guid>
		<description><![CDATA[New look, more functionality, easier to read!]]></description>
			<content:encoded><![CDATA[<h4><strong><strong>Goals</strong></strong></h4>
<p>Re-design existing website&#8217;s look and feel and add better usability and functionality.</p>
<h4><strong><strong>Solution</strong></strong></h4>
<p>TriangleSings! is a user submitted resource for choral activities in North Carolina.  Although anyone can submit upcoming events or calls for auditions, there are more than 50 power users that login to the administrative back-end and create postings.</p>
<p>With this project I re-designed the existing website and imported migrated the existing data.  I added new functionality such as emailed event reminders and RSS feeds. The forms, calendars, and homepage layouts were revamped for better usability.  The multi-user administrative back-end was cleaned up to streamline both the creation process and submission approval process. Site visibility was greatly improved through the use of friendly urls and semantic markup.</p>
]]></content:encoded>
			<wfw:commentRss>http://eastwoodarts.com/trianglesings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site launch for Cunningham Consulting</title>
		<link>http://eastwoodarts.com/cunningham-consulting/</link>
		<comments>http://eastwoodarts.com/cunningham-consulting/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 22:12:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Work]]></category>

		<guid isPermaLink="false">http://eastwoodarts.com/blog/?p=33</guid>
		<description><![CDATA[Cunningham Consulting specializes in making business communication more effective for clients in the global marketplace.
The website uses wordpress with a custom design template.
]]></description>
			<content:encoded><![CDATA[<p>Cunningham Consulting specializes in making business communication more effective for clients in the global marketplace.</p>
<p>The website uses wordpress with a custom design template.</p>
]]></content:encoded>
			<wfw:commentRss>http://eastwoodarts.com/cunningham-consulting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OG&#8217;Z Sunglasses</title>
		<link>http://eastwoodarts.com/ogz-sunglasses/</link>
		<comments>http://eastwoodarts.com/ogz-sunglasses/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 00:23:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Work]]></category>

		<guid isPermaLink="false">http://eastwoodarts.com/blog/?p=44</guid>
		<description><![CDATA[OG&#8217;Z is a sunglasses company based out of southern California.  The store uses the shopify platform with a custom design.
]]></description>
			<content:encoded><![CDATA[<p>OG&#8217;Z is a sunglasses company based out of southern California.  The store uses the shopify platform with a custom design.</p>
]]></content:encoded>
			<wfw:commentRss>http://eastwoodarts.com/ogz-sunglasses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
