<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Randy Johnson&apos;s Coldfusion Blog - PHP</title>
			<link>http://www.cfedge.com/index.cfm</link>
			<description>Randy Johnson&apos;s Coldfusion Blog</description>
			<language>en-us</language>
			<pubDate>Sat, 31 Jul 2010 14:35:24-0400</pubDate>
			<lastBuildDate>Thu, 20 Sep 2007 08:33:00-0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>randy@ewebpc.com</managingEditor>
			<webMaster>randy@ewebpc.com</webMaster>
			
			
			
			
			
			<item>
				<title>PHP Version of CFDump</title>
				<link>http://www.cfedge.com/index.cfm/2007/9/20/PHP-Version-of-CFDump</link>
				<description>
				
				&lt;p&gt;I needed to debug a php script today. I needed to see the output of some queries. My first thought was cfdump. If I only had a way to do cfdumps in PHP. Well a quick search in &lt;a href=&quot;http://www.blingo.com/friends?ref=XfXQqfDoq-yOmpZpiHG-itS9vEk&quot; target=&quot;_blank&quot;&gt;Blingo&lt;/a&gt; revealed 3900 results. The first result is the only one I needed. &lt;a href=&quot;http://dbug.ospinto.com/&quot; target=&quot;_blank&quot;&gt;dBug&lt;/a&gt;. It&apos;s exactly what I needed and best of all it is free. It is also very easy to use:&lt;/p&gt;
&lt;code&gt;
include_once(&quot;dBug.php&quot;);
new dBug($myVariable);
&lt;/code&gt;
&lt;p&gt;It can&apos;t get much easier than that.&lt;/p&gt;
				
				</description>
						
				
				<category>PHP</category>				
				
				<pubDate>Thu, 20 Sep 2007 08:33:00-0400</pubDate>
				<guid>http://www.cfedge.com/index.cfm/2007/9/20/PHP-Version-of-CFDump</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>phpBB Password Changing</title>
				<link>http://www.cfedge.com/index.cfm/2007/5/25/phpBB-Changing-Password-Changing</link>
				<description>
				
				Before &lt;a href=&quot;cfmbb.org&quot;&gt;CFMBB&lt;/a&gt; our company used the phpbb if our clients needed a forum. Getting the passwords for the admin area was always a pain. The client would forget their password and I would have to go in, change the email address for the administrator account and go through the reset process. A while ago I found a better way to do this and forgot to mention it. Simply go into your mysql client or command line and run this query:
&lt;code&gt;
Select md5(&apos;NewPassword&apos;);
&lt;/code&gt;
Then you can cut and past the results into the password section in the database if you are using a gui or you could do something like this:
&lt;code&gt;
update phpbb_users set user_password = md5(&apos;NewPassword&apos;) where username=&apos;randy&apos;;
&lt;/code&gt;
I am not sure if this will work in the V3 of phpbb or not. It works in the latest version of 2.x
				
				</description>
						
				
				<category>PHP</category>				
				
				<pubDate>Fri, 25 May 2007 12:05:00-0400</pubDate>
				<guid>http://www.cfedge.com/index.cfm/2007/5/25/phpBB-Changing-Password-Changing</guid>
				
			</item>
			
		 	
			</channel></rss>