<?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>Jared Ritchey Design &#187; Code Snippets</title>
	<atom:link href="http://www.jaredritchey.com/category/code-snippets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jaredritchey.com</link>
	<description>Where Beauty Meets The Web</description>
	<lastBuildDate>Mon, 30 May 2011 19:15:15 +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>Recovering or Creating Joomla Administrator Account Password</title>
		<link>http://www.jaredritchey.com/recovering-joomla-admin/</link>
		<comments>http://www.jaredritchey.com/recovering-joomla-admin/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 04:00:35 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Joomla CMS]]></category>

		<guid isPermaLink="false">http://www.jaredritchey.com/?p=819</guid>
		<description><![CDATA[I wrote a post about recovering your OpenRealty admin access permissions after having encountered a unique situation in trying to recover admin access to a project demo site. With a little foresight after scripting the version for OpenRealty, I thought that maybe a similar script to help people in the event of a Joomla password [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote a post about <a href="http://www.jaredritchey.com/recovering-openrealty-admin-access/">recovering your OpenRealty admin access permissions</a> after having encountered a unique situation in trying to recover admin access to a project demo site. With a little foresight after scripting the version for OpenRealty, I thought that maybe a similar script to help people in the event of a Joomla password mishap would be worthy of creating to. So, I figured I&#8217;d put together this little snippet you can add to your snippet inventory just in case. Why would you need something like this? I&#8217;ll explain.</p>
<p>If you didn&#8217;t read the post regarding the similar OpenRealty script then this will help explain why something like this may be necessary.  There are times people may install Joomla and then not use it for a period of time. Over time memory can fade and recovering your password using the normal process isn&#8217;t really an option because the email assigned to the account is no longer accessible. To make matters worse, there are actually hosting accounts that specialize in bulk hosting of Joomla or WordPress type sites that really don&#8217;t grant access to things like phpMyAdmin.  What do you do? You use the script below to generate a temporary Super Administrators Account in order for you to reset or change your former account then you delete the file along with the temporary Super Administrators Account. Simply upload the script to your Joomla directory, navigate to it, and your done. It will create a super admin account called THEADMIN with the password of &#8220;password&#8221;.  Its important to note that I set the number in the 9000 range because if you are not sure how many members you have this number is big enough to ensure you wont likely encounter an error. However, this number is so high that each and every new account created will follow this number so its something to consider changing if you want to keep the user ID lower. </p>
<p>But you might ask, why bother with creating a new account when we could simply reset the account to password? Well the very small script at the very bottom of this post will do just that providing the admin account hasn&#8217;t been renamed. Upload and access it the same way you would if you were creating the new account. Enjoy!</p>
<h4>This one resets the existing super administrators account password to &#8220;password&#8221;</h4>
<p>[snippet missing]</p>
<h4>This one creates a new account and password.</h4>
<p>[php]<br />
&lt;?php<br />
/*<br />
@ Copyright: (c)2007 &#8211; 2009 Jared Ritchey Design, All Rights Reserved.<br />
@ Author URL: http://www.jaredritchey.com<br />
@ Author Email: jared@jaredritchey.com<br />
@ License: GNU/GPL Extended.<br />
@ Config Notes: not knowing how many members are in your DB this has been set to create the account in the 9000 range.<br />
*/</p>
<p>//////////////////////////////////////////////////////////////////////////////////////<br />
// THIS SCRIPT IS USED TO CREATE AN ACCOUNT FOR THEADMIN WITH THE PASSWORD OF password<br />
//////////////////////////////////////////////////////////////////////////////////////<br />
require_once(&#8216;configuration.php&#8217;);<br />
$link = mysql_connect($mosConfig_host, $mosConfig_user, $mosConfig_password) or die(&quot;Could not connect : &quot; . mysql_error());<br />
mysql_select_db($mosConfig_db) or die(&quot;Could not select database&quot;);<br />
echo &quot;Database Host: &quot; .$mosConfig_host.&quot;&lt;br /&gt;&quot;;<br />
echo &quot;Database User: &quot; .$mosConfig_user.&quot;&lt;br /&gt;&quot;;<br />
echo &quot;Database Password: &quot; .$mosConfig_password.&quot;&lt;br /&gt;&quot;;<br />
echo &quot;Database: &quot; .$mosConfig_db.&quot;&lt;br /&gt;&quot;;</p>
<p>$sql= &quot;INSERT INTO jos_core_acl_aro VALUES(9001, &#8216;users&#8217;, &#8217;9491&#8242;, 0, &#8216;THEADMIN&#8217;, 0)&quot;;<br />
mysql_query($sql);</p>
<p>$sql= &quot;INSERT INTO jos_core_acl_groups_aro_map VALUES(25, &#8221;, 9001)&quot;;<br />
mysql_query($sql);</p>
<p>$sql= &quot;INSERT INTO jos_users VALUES(9491, &#8216;THEADMIN&#8217;, &#8216;THEADMIN&#8217;, &#8216;someone@somewhere.com&#8217;, &#8217;7d83778ac1e89412de7bad3e3470dc21&#8242;, &#8216;Super Administrator&#8217;, 0, 0, 25, &#8217;2007-03-06 11:55:23&#8242;, &#8217;2009-08-11 15:32:15&#8242;, &#8221;, &#8216;editor=fckeditor\nexpired=\nexpired_time=&#8217;)&quot;;<br />
mysql_query($sql);</p>
<p>//echo &quot;&lt;br /&gt;&lt;br /&gt;&quot;;<br />
die(&quot;Your SUPER ADMINISTRATOR Account was added &#8211; be sure to make modifications prior to continuing and delete this file.&quot;);<br />
?&gt;<br />
[/php]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredritchey.com/recovering-joomla-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide Null or Empty Value Fields</title>
		<link>http://www.jaredritchey.com/hide-empty-fields/</link>
		<comments>http://www.jaredritchey.com/hide-empty-fields/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 23:07:16 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://www.jaredritchey.com/?p=798</guid>
		<description><![CDATA[Hiding Search Forms Fields with Null Values from the Search String. Have you ever wanted to reduce that long confusing looking and un-necessary search string in your &#8220;GET&#8221; type forms? In our line of work we may opt to use one of three primary tools in our projects; OpenRealty, UltimateIDX, or our home grown product [...]]]></description>
			<content:encoded><![CDATA[<h2>Hiding Search Forms Fields with Null Values from the Search String.</h2>
<p>Have you ever wanted to reduce that long confusing looking and un-necessary search string in your &#8220;GET&#8221; type forms? In our line of work we may opt to use one of three primary tools in our projects; OpenRealty, UltimateIDX, or our home grown product we use on high end projects.  Regardless of product, in each instance the search forms for the MLS Quick Search uses the form action type of &#8220;GET&#8221; and in doing so it passes the form value to the URL string for the query. But what happens when you have a null value or a field with NO value? Why bother to pass fields to your search string that have no value?  Over time we noted that lengthy search strings regardless of empty values or not would reduce the response time for the results substantially when compared to shorter search strings.</p>
<p>This script was written to help in the reduction of processing burdens placed on servers for large search forms that use the GET method for form processing.  It was designed in part to reduce the SQL search timeout issue common in Real Estate MLS Search forms that rely on the &#8220;GET&#8221; method to reduce the number of fields passed in the query string. If a search form field contains a NULL or no value it will not be passed on to the GET string.</p>
<p>With help from coder / blogger <a href="http://fundamentaldisaster.blogspot.com/" target="_blank"><strong>Greg Burghardt</strong> of Fundamental Disaster</a> we hashed out this little snippet to achieve what we were after. The code has since been modified and has about 4 different variants in use but this one is the most true to the original.</p>
<p>You can download the snippet in a zip file from right here; <a rel="nofollow" href="http://www.jaredritchey.com/available-downloads/snippets/searchforms.zip">SearchForms.zip</a></p>
<p>To use this script you should add a little php to display a variable in the body tag or you can simply permanently alter the body tag as follows;<br />
EXAMPLE:<br />
&lt;body onload=&#8221;enableEmptyFields(document.something);&#8221;&gt;</p>
<p>You must also add an onSubmit event handler (property) belonging to a Form object as follows:<br />
EXAMPLE:<br />
&lt;form action=&#8221;the-name-of-your-script.php&#8221; method=&#8221;get&#8221; onsubmit=&#8221;disableEmptyFields(this);&#8221; name=&#8221;something&#8221;&gt;</p>
<p>[javascript]<br />
/* ############################### COPYRIGHT NOTICE BEGINS #############################<br />
@ Copyright 2008 &#8211; 2009: WP Realty Team &#8211; Chad Broussard and Jared Ritchey<br />
@ Copyright 2008: Greg Burghardt<br />
@ Copyright URL: http://www.wprealty.org and http://fundamentaldisaster.blogspot.com/<br />
@ Published by: Chad Broussard and Jared Ritchey<br />
@ Scripting: In part by http://fundamentaldisaster.blogspot.com/ and Jared Ritchey Design<br />
@ License: GNU / GPL<br />
@ File Name: searchforms.js<br />
############################### COPYRIGHT NOTICE ENDS ############################# */<br />
/*<br />
@ DISCLAIMER AND USAGE AND LICENSE:<br />
You are free to use this script for whatever reason you so desire providing you leave the copyright details above in<br />
tact as required and you do not redistribute this code rebranded as your own work. You are free to include this<br />
code in any commercial or non-commercial application without further permission or obligation from WPRealty or<br />
Chad Broussard. You may NOT republish this code absent of this copyright notice. LICENSED AS GNU/GPL Open Source<br />
with provisions.<br />
*/</p>
<p>function enableEmptyFields(form) {<br />
  var i = 0;<br />
  var field;<br />
  var j = 0;<br />
  var opt;<br />
  while (field = form.elements[i++]) {<br />
    switch (field.nodeName) {<br />
      case &quot;input&quot;:<br />
        switch (field.type) {<br />
          case &quot;checkbox&quot;:<br />
          case &quot;radio&quot;:<br />
            field.disabled = !field.checked;<br />
            break;<br />
          default:<br />
            field.disabled = false;<br />
            break;<br />
        }<br />
        break;<br />
      case &quot;select&quot;:<br />
        if (field.multiple) {<br />
          j = 0;<br />
          while (opt = field.options[j++]) {<br />
            opt.disabled = !opt.selected;<br />
          }<br />
        } else {<br />
          field.disabled = false;<br />
        }<br />
        break;<br />
      default:<br />
        field.disabled = false;<br />
        break;<br />
    }<br />
  }<br />
}<br />
function disableEmptyFields(form) {<br />
  var i = 0;<br />
  var field;<br />
  var j = 0;<br />
  var opt;</p>
<p>  while (field = form.elements[i++]) {<br />
    switch (field.nodeName) {<br />
      case &quot;input&quot;:<br />
        switch (field.type) {<br />
          case &quot;checkbox&quot;:<br />
          case &quot;radio&quot;:<br />
            field.disabled = !field.checked;<br />
            break;<br />
          default:<br />
            field.disabled = (field.value.length &gt; 0) ? false : true;<br />
            break;<br />
        }<br />
        break;<br />
      case &quot;select&quot;:<br />
        if (field.multiple) {<br />
          j = 0;<br />
          while (opt = field.options[j++]) {<br />
            opt.disabled = !opt.selected;<br />
          }<br />
        } else {<br />
          field.disabled = (field.value.length &gt; 0) ? false : true;<br />
        }<br />
        break;<br />
      default:<br />
        field.disabled = (field.value.length &gt; 0) ? false : true;<br />
        break;<br />
    }<br />
  }<br />
}<br />
[/javascript]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredritchey.com/hide-empty-fields/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Viewing your site before it goes live &#8211; Flush DNS</title>
		<link>http://www.jaredritchey.com/flush-dns/</link>
		<comments>http://www.jaredritchey.com/flush-dns/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 19:06:57 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Technical Resources]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[IPCONFIG]]></category>

		<guid isPermaLink="false">http://www.jaredritchey.com/flush-dns.html</guid>
		<description><![CDATA[How to Flush DNS &#8211; See New Site Before It Resolves Live! One of the greatest techniques ever used by responsible web designers. I was chatting with Mack McMillan of UltimateIDX the other day when we got onto discussing the subject we frequently encounter with clients.&#160; Many times clients want to see their blogs and [...]]]></description>
			<content:encoded><![CDATA[<h2>How to Flush DNS &#8211; See New Site Before It Resolves Live!</h2>
<h3>One of the greatest techniques ever used by responsible web designers.</h3>
<p>I was chatting with Mack McMillan of UltimateIDX the other day when we got onto discussing the subject we frequently encounter with clients.&nbsp; Many times clients want to see their blogs and websites prior to them going live and many times that isn&#8217;t easily done without some clever techniques I&#8217;ll reveal herein.&nbsp; After having encountered this many times I realized that I should come up with a small guide on &quot;how to build and view a site development prior to it going live&quot;&nbsp; when I came up with a little tool to distribute in order to help. So this post is generically in response to a common question being asked in forums.&nbsp;&nbsp;<span id="more-192"></span></p>
<h3>How can I see my site before the DNS resolves or before I switch servers?</h3>
<p>Before we answer that I want to toss a few scenarios at you in the form of questions so I can set the frame of mind and reference for you to better understand why this technique is so very important. We look at preserving page urls for page rank along with site migration and server migration while maintaining the old site.</p>
<p>Lets say you have a brand new hosting account and on that hosting account you upload your site to the server and you eagerly wait for your DNS to resolve.&nbsp; After two hours go by you begin to get impatient (even though dns can take 24+ hours to resolve) and you begin to seek a solution.&nbsp; After all, you want to install your shopping cart, WordPress blog, or Joomla site and simply cant wait.&nbsp; <b>How can you view your site with full resolving URL even if DNS hasn&#8217;t resolved?&nbsp; </b>Thats question 1.</p>
<p>Now lets say that you have a site you are migrating from an old service provider, hosting company, designer or whatever and you want to verify that the migration went well PRIOR to you switching DNS.&nbsp; Lets word this question accordingly;&nbsp; <b>How can I see and test my site before I switch DNS?&nbsp;</b> Naturally this would apply to site migrations where switching servers are also involved.&nbsp; Thats question 2.</p>
<p>One last question related to these scenarios would be instances where you are simply seeking a web site redesign or change in site tools and wish to preserve URL&#8217;s&nbsp;&nbsp; This happens with site migrations where, for instance, Realtors would be leaving a proprietary system and they wish to move to a more widely supported one as in the case of the thousands of recent Real Estate Webmasters and Advanced Access migrations to a CMS solution.&nbsp; Many times people then ask the question; <b>How can I preserve my links for page rank during a redesign?</b> This question gets a bit more involved when its worded for instances where a site owner wants to keep his or her existing site live while the migration and redesign takes place, most often on an alternative server.&nbsp; Thats question 3.</p>
<h3>Answer: Preserving Page Rank &#8211; Migration &#8211; URL &#8211; Testing</h3>
<p>One of the most common techniques used by web designers and developers is to build client sites on servers not accessible to the open web and by doing so a responsible designer will prevent search engines from accidentally indexing the site prematurely.&nbsp;&nbsp; Although many opt for the sub directory method which can work well, there is a danger in using this technique as referrers can provide Search Engines with a path necessary to view the work in progress.&nbsp; Follow my logic for just a moment and you will see how this plays out.&nbsp; We&#8217;re going to use a site that is live and online today which was a redesign using a client provided template layout as it was migrated from the old design to the new without missing a beat in the search engines.&nbsp; This site we use for this article was Go All Pro Realty and the URL I&#8217;ll use in this post is http://www.goallpro.com so from this point on I&#8217;ll reference that site in the example.</p>
<p>Answering all questions above in those scenarios I take Go All Pro Realty which had been created using Microsoft Front Page.&nbsp; The site was redesigned for Joomla in which we built the site on a separate IP as opposed to a sub directory where we could use the technique I&#8217;m about to reveal for optimal results. After we took all of the content from the old static site and pasted it into the WYSIWYG editor of Joomla we then set out to correct and preserve the URLs and make 301 Redirect changes where links would not be preserved.&nbsp; The tool we used was a plug-in we offer called OpenSEF for Joomla.&nbsp; After all the data migration was done we needed to verify the content and the URL&#8217;s in a way that we can also verify the page rank, linking, back linking and other aspects without changing the DNS.&nbsp;&nbsp; <b>How can this be done? How can we view http://www.goallpro.com with our browser and end up visiting the new project location without changing the DNS?</b> Let me explain.</p>
<p>Since I needed a way to view the new site after switching techniques on the new server with the new install of Joomla, what we came up with was a simple modification to a windows file known as the &quot;hosts&quot; file.&nbsp; For those not familiar with networking and IP mapping, the hosts file is used to contain mapping of IP numbers to host names and each time the file is loaded into cache from reboot, those host names listed will resolve to the IP they are associated with regardless of the actual IP of the domain.&nbsp; What this means is that if your host file has a reference to a site like say JaredRitchey.com associated to the IP for google, each time you type in JaredRitchey.com it would resolve to google.&nbsp; This is a common issue with PayPal spoofs and other types of deceptive viruses that modify your host file to get your browser to resolve to a server other than your intended target location.</p>
<p>So in our instance answering those questions above, I need to type in http://www.goallpro.com and have it resolve to a new location on a new IP even though the DNS for the domain has not been switched.&nbsp; Lets break down the steps and you can try this for yourself.</p>
<p>Fist we modify the hosts file in your windows system; To do this you navigate to this path on your windows system, C:\WINDOWS\system32\drivers\etc then you open the hosts file using an editor that does not alter or modify the raw text.&nbsp; Some ideal choices are simply notepad on your system or NotePad++ which is a free download.</p>
<p>&nbsp;<img src="/images/stories/path-to-hosts.jpg" alt="Path To Hosts File" /></p>
<p>Click on the image below to examine a larger profile.&nbsp; Basically what we do is take the host file and add in the domain url and assign it to our testing servers IP.&nbsp; Now for those of you interested in simply resolving the new site on a new hosting company for the purpose of installing you would make sure your IP the domain is associated with follows the format your hosting company provides. This is ideal for sites that are hosted on a shared server where an IP is used on many domains.&nbsp; The format for instance on one of my servers looks like 123.4.5.67/~accountname/&nbsp; It will vary depending on hosting company. Look at the example below;</p>
<p><a href="http://www.jaredritchey.com/images/stories/hostslg.jpg" target="_blank"><img src="/images/stories/hostssm.jpg" alt="Hosts File" /></a></p>
<p>Now we simply flush the DNS on our system and reopen the browsers (again, make sure the browser cache is cleared)</p>
<p>To do this open the command prompt by visiting START &gt;&gt; RUN and type in command to load the command prompt.<br />
<img alt="Flush DNS with IPConfig" src="/images/stories/flushdns-commandprompt.jpg" /></p>
<p>At the command prompt you simply type in the following and press enter &quot;ipconfig /flushdns&quot; (no quote marks) then after the DNS flushes you type in &quot;exit&quot; (no quote marks) and press enter.&nbsp; <a href="http://www.jaredritchey.com/available-downloads/utilities/flush-dns.zip">Now I&#8217;ve created a batch file to flush dns because I do it frequently in working with servers and domains and you are welcome to it.</a>&nbsp; You can verify the contents of the batch file by simply right clicking on it and opening it in Notepad++&nbsp; Basically you simply put it on your desktop and double click it when you want to flush the DNS.&nbsp;</p>
<p>A quick note on clearing cache in your browsers.&nbsp; In FireFox this is easy enough by holding down CTRL + SHIFT and pressing the Delete Key. You end up with a dialog box like this;</p>
<p><img alt="Clear FireFox Privacy Data" src="/images/stories/clearprivacy.jpg" /></p>
<p>Now that all these things have taken place you should be able to just open your browser and type in the URL and have it resolve to the new target location without the need to change your DNS to the testing server.</p>
<p>I&#8217;m open for comments and suggestions regarding this so feel free to sound off.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredritchey.com/flush-dns/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Now Hiring PHP Coders</title>
		<link>http://www.jaredritchey.com/hiring-freelance-coder/</link>
		<comments>http://www.jaredritchey.com/hiring-freelance-coder/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 19:01:37 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[PHP Coding]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://www.jaredritchey.com/hiring-freelance-coder.html</guid>
		<description><![CDATA[Seeking PHP / MySQL Coder Are you a good PHP coder who can code snippets quickly?&#160; I&#8217;m looking to hire another PHP coder to help with some small customization and snippets for projects we are working on.&#160; I&#8217;m taking all my years of code that we have held for commercial projects and converting them for [...]]]></description>
			<content:encoded><![CDATA[<h2>Seeking PHP / MySQL Coder</h2>
<p>Are you a good PHP coder who can code snippets quickly?&nbsp; I&rsquo;m looking to hire another PHP coder to help with some small customization and snippets for projects we are working on.&nbsp; I&#8217;m taking all my years of code that we have held for commercial projects and converting them for FREE resources in my new resource directory.&nbsp; I&#8217;d like a person to be well versed in PHP 4+ and although 5+ is the current thing its not the supported thing universally so I need someone who is conscious of that.&nbsp; I&#8217;d like the coder to also be well versed in code sanitation to prevent potential security issues in these old snippets once updated.</p>
<p>The criteria for the coder is as follows;</p>
<ol>
<li>Commit to a 25 projects minimum and charge accordingly.</li>
<li>Have a valid phone number in either the US, UK, or Canada preferably but not required.</li>
<li>Can be paid by certified funds or a verified PayPal account.</li>
<li>Must use my RTDS (Rapid Template Design Series) coding guideline.</li>
<li>Should understand AJAX and certainly databases.</li>
<li>Should understand XML at least from a dynamic generation perspective.</li>
<li>Must code cleanly with well commented code.</li>
<li><b>Dont Steal other peoples code.</b>&nbsp; </li>
<li>Must be at least casually familiar with a few open source applications and have a good understanding of string replace type template engines.</li>
</ol>
<p>Please contact me using this sites contact form and in your contact please include a phone number and the times of day or week you can work.&nbsp; Please be fair and competitive in pricing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredritchey.com/hiring-freelance-coder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Real Estate Webmasters &#8211; New Resource Index</title>
		<link>http://www.jaredritchey.com/real-estate-webmaster-resources/</link>
		<comments>http://www.jaredritchey.com/real-estate-webmaster-resources/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 20:44:53 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.jaredritchey.com/real-estate-webmaster-resources.html</guid>
		<description><![CDATA[Real Estate Webmaster Resources After doing a substantial amount of changes to my 4 main blogs over the weekend I came to discover in my directories that I had about 40 important and very usable code snippets that would be truly beneficial for those who are in the development of Real Estate Websites. I&#8217;ve setup [...]]]></description>
			<content:encoded><![CDATA[<h1>Real Estate Webmaster Resources</h1>
<p>After doing a substantial amount of changes to my 4 main blogs over the weekend I came to discover in my directories that I had about 40 important and very usable code snippets that would be truly beneficial for those who are in the development of Real Estate Websites.</p>
<p>I&#8217;ve setup a nice little snippet section on one of my sites and then proceeded to take my licensed copy of Code Warehouse 2007 code snippet application and basically create a web based interface that features many of its features in an attempt to make the new section truly easy to manage code snippets and to provide them in a way that is familiar to those that use code manager applications.</p>
<p>I first started out with Open Realty being the base platform for the design of the online snippet DB only to switch to an old modified version of Joomla where I core hacked the menu section to emulate a desktop application familiar to many Windows applications especially to such snippet managers.</p>
<h2>Code Resources for Webmasters IDX / RETS and vieleRETS</h2>
<p>Over the years I&#8217;ve accumulated literally gigabytes of code that have been either modified, abandoned, semi-discarded and half organized only to just take up and waste space.&nbsp; A great deal of it is salvageable and over the course of several months I was able to scape enough bits and pieces of time to assemble all of these code elements into my code snippet database.&nbsp; That&#8217;s the good part. The frustrating part is that I can&#8217;t share it easily with coders I work with frequently aside from cut-n-past methods.</p>
<p>So, all that IDX / CRON / MLS / RETS and other code snippets will also be going into the new online snippet DB.&nbsp; I&#8217;ll post a link this weekend for those to cruise the code but keep in mind that although the design is done for the snippet DB its very sparse on content as of yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredritchey.com/real-estate-webmaster-resources/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

