<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Justin Frydman - Web developer/designer from Canada</title>
	
	<link>http://defunctlife.com</link>
	<description>Web development, design, travel and language learning.</description>
	<lastBuildDate>Tue, 20 Oct 2009 17:26:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/defunctlife" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Featured member on the concrete5 community!</title>
		<link>http://defunctlife.com/2009/10/featured-member-on-the-concrete5-community/</link>
		<comments>http://defunctlife.com/2009/10/featured-member-on-the-concrete5-community/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 17:26:07 +0000</pubDate>
		<dc:creator>defunct</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://defunctlife.com/?p=100</guid>
		<description><![CDATA[I&#8217;m please to announce I have been selected as a featured member on the concrete5 community page. Concrete5 certainly has changed the way I build websites and applications and I am proud to be apart of such a great open source community! If you haven&#8217;t joined the forums yet, now is a good time.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m please to announce I have been selected as a featured member on the <a title="Concrete5 Community" href="http://www.concrete5.org/community/" target="_self">concrete5 community page</a>. Concrete5 certainly has changed the way I build websites and applications and I am proud to be apart of such a great open source community! If you haven&#8217;t joined the forums yet, now is a good time.</p>
]]></content:encoded>
			<wfw:commentRss>http://defunctlife.com/2009/10/featured-member-on-the-concrete5-community/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to disable Concrete5 site statistics</title>
		<link>http://defunctlife.com/2009/08/how-to-disable-concrete5-site-statistics/</link>
		<comments>http://defunctlife.com/2009/08/how-to-disable-concrete5-site-statistics/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 21:31:08 +0000</pubDate>
		<dc:creator>defunct</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://defunctlife.com/?p=95</guid>
		<description><![CDATA[Concrete5 has built in site statistics tracking but it&#8217;s very simple and records every hit, not checking if the user is unique. This can create some very large database tables and possibly slow down your website. Although the graph will remain in the dashboard, the site will no longer track all the visits.
Open up config/site.php [...]]]></description>
			<content:encoded><![CDATA[<p>Concrete5 has built in site statistics tracking but it&#8217;s very simple and records every hit, not checking if the user is unique. This can create some very large database tables and possibly slow down your website. Although the graph will remain in the dashboard, the site will no longer track all the visits.</p>
<p>Open up config/site.php and add the following lines:</p>
<pre>// turn off site tracking
define('STATISTICS_TRACK_PAGE_VIEWS', false);</pre>
</p>
<p>As well, load up your favorite database manager, like phpMyAdmin and find the table <em>PageStatistics </em>and empty the contents to clean up past tracking data.</p>
]]></content:encoded>
			<wfw:commentRss>http://defunctlife.com/2009/08/how-to-disable-concrete5-site-statistics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Injecting header items into a block</title>
		<link>http://defunctlife.com/2009/08/injecting-header-items-into-a-block/</link>
		<comments>http://defunctlife.com/2009/08/injecting-header-items-into-a-block/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 21:16:52 +0000</pubDate>
		<dc:creator>defunct</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://defunctlife.com/?p=88</guid>
		<description><![CDATA[Many times you need to inject includes of javascript or css into the header instead of writing the include path into add.php or edit.php. This is a much cleaner solution and can be accomplished in the blocks controller.php. In this example I include both swfobject and jquery&#8217;s colorpicker libraries as well as the jquery colorpicker [...]]]></description>
			<content:encoded><![CDATA[<p>Many times you need to inject includes of javascript or css into the header instead of writing the include path into add.php or edit.php. This is a much cleaner solution and can be accomplished in the blocks controller.php. In this example I include both swfobject and jquery&#8217;s colorpicker libraries as well as the jquery colorpicker Concrete5 css file:</p>
<pre>        /*
         * include swfobject and colorpicker in the header
         */
        public function on_page_view() {
                $html = Loader::helper('html');
                $this-&gt;addHeaderItem($html-&gt;javascript('swfobject.js'));
                $this-&gt;addHeaderItem($html-&gt;javascript('jquery.colorpicker.js'));
                $this-&gt;addHeaderItem($html-&gt;css('ccm.colorpicker.css'));
        }</pre>
</p>
<p>Using the <em>on_page_view()</em> function easily accomplishes this.</p>
]]></content:encoded>
			<wfw:commentRss>http://defunctlife.com/2009/08/injecting-header-items-into-a-block/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the Concrete5 title divider format</title>
		<link>http://defunctlife.com/2009/08/changing-the-concrete5-title-divider-format/</link>
		<comments>http://defunctlife.com/2009/08/changing-the-concrete5-title-divider-format/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 21:11:44 +0000</pubDate>
		<dc:creator>defunct</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[concrete5]]></category>
		<category><![CDATA[page title]]></category>

		<guid isPermaLink="false">http://defunctlife.com/?p=81</guid>
		<description><![CDATA[Many people do not like the default spacer that Concrete5 uses for its page titles which is &#8220;::&#8221;
To change this, open config/site.php and add the following code:
define(&#8217;PAGE_TITLE_FORMAT&#8217;, &#8216;%1$s &#8211; %2$s&#8217;);
You may adjust the &#8220;-&#8221; character in the above code to any that you wish and that will become your new page title divider.
]]></description>
			<content:encoded><![CDATA[<p>Many people do not like the default spacer that Concrete5 uses for its page titles which is &#8220;::&#8221;</p>
<p>To change this, open config/site.php and add the following code:</p>
<blockquote><p>define(&#8217;PAGE_TITLE_FORMAT&#8217;, &#8216;%1$s &#8211; %2$s&#8217;);</p></blockquote>
<p>You may adjust the &#8220;-&#8221; character in the above code to any that you wish and that will become your new page title divider.</p>
]]></content:encoded>
			<wfw:commentRss>http://defunctlife.com/2009/08/changing-the-concrete5-title-divider-format/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Updated Concrete5 Testimonials Package Released</title>
		<link>http://defunctlife.com/2009/08/updated-concrete5-testimonials-package-released/</link>
		<comments>http://defunctlife.com/2009/08/updated-concrete5-testimonials-package-released/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 22:24:32 +0000</pubDate>
		<dc:creator>defunct</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://defunctlife.com/?p=79</guid>
		<description><![CDATA[There is an updated version of my Concrete5 Testimonials Package now available on the Concrete5 Marketplace.
New Features Include:

Now includes a WYSIWYG editor in the backend.
Testimonials can now include images, formatted text and more.
Includes an optional content field which displays below the testimonial so you can add additional information like Website, Country, or anything you need!

The [...]]]></description>
			<content:encoded><![CDATA[<p>There is an updated version of my <a href="http://defunctlife.com/2009/07/introducing-the-concrete5-testimonials-package/">Concrete5 Testimonials Package</a> now available on the <a href="http://www.concrete5.org/marketplace/addons/defunct_testimonials/">Concrete5 Marketplace</a>.</p>
<h3>New Features Include:</h3>
<ul>
<li>Now includes a WYSIWYG editor in the backend.</li>
<li>Testimonials can now include images, formatted text and more.</li>
<li>Includes an optional content field which displays below the testimonial so you can add additional information like Website, Country, or anything you need!</li>
</ul>
<p>The screenshots have been updated on <a href="http://defunctlife.com/2009/07/introducing-the-concrete5-testimonials-package/">Testimonials page</a>, so have a look!</p>
]]></content:encoded>
			<wfw:commentRss>http://defunctlife.com/2009/08/updated-concrete5-testimonials-package-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Concrete5 Testimonials Unlimited Developers License</title>
		<link>http://defunctlife.com/2009/07/concrete5-testimonials-unlimited-developers-license/</link>
		<comments>http://defunctlife.com/2009/07/concrete5-testimonials-unlimited-developers-license/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 00:19:39 +0000</pubDate>
		<dc:creator>defunct</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://defunctlife.com/?p=63</guid>
		<description><![CDATA[I&#8217;m happy to announce the release of a developer licensed version of my Concrete5 Testimonials package. This means it&#8217;s a one time fee of $125.00 USD and you can use it on as many websites as you wish, meaning you never have to buy another Concrete5 Testimonials license again. If you or your firm have [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to announce the release of a developer licensed version of my <a href="/2009/07/introducing-the-concrete5-testimonials-package/">Concrete5 Testimonials package</a>. This means it&#8217;s a one time fee of $125.00 USD and you can use it on as many websites as you wish, <strong>meaning you never have to buy another Concrete5 Testimonials license again.</strong> If you or your firm have a lot of clients this will save you a lot of money.</p>
<p>You can pick it up below and you will receive an unlimited licensed version in your email within 24 hours.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="7412493">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"><br />
</form>
]]></content:encoded>
			<wfw:commentRss>http://defunctlife.com/2009/07/concrete5-testimonials-unlimited-developers-license/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing The Concrete5 Testimonials Package</title>
		<link>http://defunctlife.com/2009/07/introducing-the-concrete5-testimonials-package/</link>
		<comments>http://defunctlife.com/2009/07/introducing-the-concrete5-testimonials-package/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 20:48:45 +0000</pubDate>
		<dc:creator>defunct</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[concrete5]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://defunctlife.com/?p=35</guid>
		<description><![CDATA[*Edit*: Just submitted version 1.2 to the Concrete5 Marketplace. This version now includes a wysiwyg editor, so you can now style your text, add images and customize the testimonial as much as you like.
It also includes a new optional content textbox to add additional information below the testimonial. View the updated screenshots below!
*Edit*: The Concrete5 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>*Edit*: </strong>Just submitted version 1.2 to the Concrete5 Marketplace. This version now includes a wysiwyg editor, so you can now style your text, add images and customize the testimonial as much as you like.</p>
<p>It also includes a new optional content textbox to add additional information below the testimonial. View the updated screenshots below!</p>
<p><strong>*Edit*: </strong>The Concrete5 Marketplace has finally approved my submission. You can now purchase and install the <a href="http://www.concrete5.org/marketplace/addons/defunct_testimonials/">Concrete5 Testimonials Package</a> direct through your concrete5 install. I will be releasing an unlimited developers license that will be available here soon.</p>
<p>The Testimonials Package is a full featured Concrete5 Package.</p>
<h2>Features</h2>
<ul>
<li>Manage Testimonials from an integrated Concrete5 backend</li>
<li>Includes a Testimonials single_page where all testimonials are shown. This page is configurable in the backend as to how many testimonials per page you wish to display. Pagination automatically kicks in</li>
<li>Testimonials Block can be placed in any editable area and will load a random testimonial on page load.</li>
<li>Clear, clean and valid XHTML/CSS for easy customization by developers (single_page and block views)</li>
</ul>
<h2>Screenshots</h2>
<div id="attachment_74" class="wp-caption alignnone" style="width: 310px"><a href="http://defunctlife.com/wp-content/uploads/2009/07/add.png"><img class="size-medium wp-image-74" title="add" src="http://defunctlife.com/wp-content/uploads/2009/07/add-300x227.png" alt="Add Testimonial" width="300" height="227" /></a><p class="wp-caption-text">Add Testimonial</p></div>
<div id="attachment_32" class="wp-caption alignnone" style="width: 310px"><a href="http://defunctlife.com/wp-content/uploads/2009/07/manage1.png"><img class="size-medium wp-image-68" title="manage" src="http://defunctlife.com/wp-content/uploads/2009/07/manage1-300x227.png" alt="manage" width="300" height="227" /></a><p class="wp-caption-text">Manage your testimonials</p></div>
<div id="attachment_34" class="wp-caption alignnone" style="width: 310px"><a href="http://defunctlife.com/wp-content/uploads/2009/07/single_page1.png"><img class="size-medium wp-image-70" title="single_page" src="http://defunctlife.com/wp-content/uploads/2009/07/single_page1-300x227.png" alt="single_page" width="300" height="227" /></a><p class="wp-caption-text">Single_page view of testimonials with pagination</p></div>
<div id="attachment_30" class="wp-caption alignnone" style="width: 310px"><a href="http://defunctlife.com/wp-content/uploads/2009/07/block1.png"><img class="size-medium wp-image-66" title="block" src="http://defunctlife.com/wp-content/uploads/2009/07/block1-300x227.png" alt="block" width="300" height="227" /></a><p class="wp-caption-text">Adding the testimonails block</p></div>
<div id="attachment_31" class="wp-caption alignnone" style="width: 310px"><a href="http://defunctlife.com/wp-content/uploads/2009/07/docs1.png"><img class="size-medium wp-image-67" title="docs" src="http://defunctlife.com/wp-content/uploads/2009/07/docs1-300x227.png" alt="docs" width="300" height="227" /></a><p class="wp-caption-text">Testimonial Documentation</p></div>
]]></content:encoded>
			<wfw:commentRss>http://defunctlife.com/2009/07/introducing-the-concrete5-testimonials-package/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://defunctlife.com/2009/06/welcome/</link>
		<comments>http://defunctlife.com/2009/06/welcome/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 23:17:03 +0000</pubDate>
		<dc:creator>defunct</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[first post]]></category>
		<category><![CDATA[hello]]></category>

		<guid isPermaLink="false">http://defunctlife.com/?p=1</guid>
		<description><![CDATA[Hello,
I&#8217;d like to welcome you to this, my first blog post. I will have some articles up soon mostly focusing on Concrete5, an amazing CMS I have been using recently.
This blog will feature articles on web design, web development, backpacking and even some posts regarding learning the German language (Deutsche Sprache, schwere Sprache!).
So stay tuned!
]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;d like to welcome you to this, my first blog post. I will have some articles up soon mostly focusing on <a href="http://www.concrete5.org">Concrete5</a>, an amazing CMS I have been using recently.</p>
<p>This blog will feature articles on web design, web development, backpacking and even some posts regarding learning the German language (<em>Deutsche Sprache, schwere Sprache!</em>).</p>
<p>So stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://defunctlife.com/2009/06/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
