<?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>Pleasanton Web Design &#187; phpLD</title>
	<atom:link href="http://pleasantonwebdesignblog.com/category/phpld/feed" rel="self" type="application/rss+xml" />
	<link>http://pleasantonwebdesignblog.com</link>
	<description>Information on Web design, technology, and culture from my vantage point here in Pleasanton, California.</description>
	<lastBuildDate>Fri, 04 May 2012 18:22:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>phpLD Captcha Problems</title>
		<link>http://pleasantonwebdesignblog.com/2008/11/phpld-captcha-problems.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=phpld-captcha-problems</link>
		<comments>http://pleasantonwebdesignblog.com/2008/11/phpld-captcha-problems.html#comments</comments>
		<pubDate>Sat, 29 Nov 2008 23:38:00 +0000</pubDate>
		<dc:creator>Troy Philis</dc:creator>
				<category><![CDATA[captcha]]></category>
		<category><![CDATA[phpLD]]></category>
		<category><![CDATA[web applications]]></category>
		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://pleasantonwebdesign.tpdevspace.com/?p=168</guid>
		<description><![CDATA[A common problem I&#8217;ve noticed with phpLD (php link directory) installations is Captcha not working properly. On these sites you will be able to complete all of the link information, but when verifying that you are human using Captcha, you can only enter a portion of the Captcha code that you are given. You are [...]]]></description>
			<content:encoded><![CDATA[<div class="none"><div class="g-plusone" data-href="http://pleasantonwebdesignblog.com/2008/11/phpld-captcha-problems.html" size="small" count="true"></div></div><p>A common problem I&#8217;ve noticed with phpLD (php link directory) installations is Captcha not working properly. On these sites you will be able to complete all of the link information, but when verifying that you are human using Captcha, you can only enter a portion of the Captcha code that you are given. You are therefore unable to submit the link, because you will always receive a Captcha error. Often the Captcha code contains six (6) characters, but the Captcha field only allows you to input five (5) characters maximum. You would think that these Webmasters would notice the lack of link submissions.
<p>
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-8315023803230274";
/* 468x60, created 1/7/09 */
google_ad_slot = "2170958206";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</p>
<p>The problem is due to the use of a third party template that has the maximum characters for the Captcha input field set too low. To resolve the problem, simply open templates/submit.tpl and find the code for the Captcha field. It will be something like: input type=&#8221;text&#8221; name=&#8221;CAPTCHA&#8221; value=&#8221;" size=&#8221;10&#8243; maxlength=&#8221;5&#8243; class=&#8221;input.&#8221; Just change the maxlength to as many characters as you need to hold the Captcha numbers that are being generated.</p>
]]></content:encoded>
			<wfw:commentRss>http://pleasantonwebdesignblog.com/2008/11/phpld-captcha-problems.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding Google Analytics Code to a phpLD installation</title>
		<link>http://pleasantonwebdesignblog.com/2008/11/adding-google-analytics-code-to-phpld.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adding-google-analytics-code-to-phpld</link>
		<comments>http://pleasantonwebdesignblog.com/2008/11/adding-google-analytics-code-to-phpld.html#comments</comments>
		<pubDate>Sat, 29 Nov 2008 22:42:00 +0000</pubDate>
		<dc:creator>Troy Philis</dc:creator>
				<category><![CDATA[google analytics]]></category>
		<category><![CDATA[phpLD]]></category>

		<guid isPermaLink="false">http://pleasantonwebdesign.tpdevspace.com/?p=167</guid>
		<description><![CDATA[Here&#8217;s a quick post to help you add Google Analytics tracking code to your phpLD (php link directory) template. Because phpLD uses the Smarty templating system, simply opening the footer.tpl and placing the Analytics code before the closing body tag will result in an error. You need to tell Smarty not to parse the code [...]]]></description>
			<content:encoded><![CDATA[<div class="none"><div class="g-plusone" data-href="http://pleasantonwebdesignblog.com/2008/11/adding-google-analytics-code-to-phpld.html" size="small" count="true"></div></div><p>Here&#8217;s a quick post to help you add Google Analytics tracking code to your phpLD (php link directory) template. Because phpLD uses the Smarty templating system, simply opening the footer.tpl and placing the Analytics code before the closing body tag will result in an error. You need to tell Smarty not to parse the code between the script tags. To do so, open your templates/footer.tpl file, and right before the closing body tag, place your Google code like this:</p>
<p>{literal} Your-Analytics-Code-Here{/literal}</p>
<p>Now save and put. That&#8217;s it!</p>
<p>
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-8315023803230274";
/* 468x60, created 1/7/09 */
google_ad_slot = "2170958206";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</p>
]]></content:encoded>
			<wfw:commentRss>http://pleasantonwebdesignblog.com/2008/11/adding-google-analytics-code-to-phpld.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>

