<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: gCards 1.44 Released&#8230;And the Abbreviated History of Greg and PHP</title>
	<atom:link href="http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 07 Sep 2010 05:02:56 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: selectica inc</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-301157</link>
		<dc:creator>selectica inc</dc:creator>
		<pubDate>Fri, 05 Mar 2010 17:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-301157</guid>
		<description>[...] Dolphin Limited Partnership, GAMCO, Icagen Inc (NASDAQ:ICGN), Mill Road Capital, Multimedia ...Graphics by Greg Blog Archive gCards 1.44 Released...And ...A enhancement database, customer database, and several other internal applications for Selectica, [...]</description>
		<content:encoded><![CDATA[<p>[...] Dolphin Limited Partnership, GAMCO, Icagen Inc (NASDAQ:ICGN), Mill Road Capital, Multimedia &#8230;Graphics by Greg Blog Archive gCards 1.44 Released&#8230;And &#8230;A enhancement database, customer database, and several other internal applications for Selectica, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maano</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-248145</link>
		<dc:creator>Maano</dc:creator>
		<pubDate>Sat, 03 Jan 2009 15:39:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-248145</guid>
		<description>I am having the following error when i open setup.php
I have given the right database information. But sill its not working....

showHeader(); if (isset($_POST[&#039;installStatus&#039;])) $installStatus = $_POST[&#039;installStatus&#039;]; $success = &quot;&quot;; $failure = &quot;&quot;; // Create Database Connection and test to see if DB properties are correct $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; $conn = &amp;ADONewConnection(&#039;mysql&#039;); if (!$conn-&gt;Connect($dbhost,$dbuser,$dbpass,$dbdatabase)) { ?&gt; Could not connect to the selected database: . Check the config.php file to be sure you set the correct database server, database name, username, and password. Contact your system administrator if you do not know these values.

You need to fix this before you can continue with the installation process. 
showFooter(); exit; } if(!isset($installStatus)) { ?&gt;</description>
		<content:encoded><![CDATA[<p>I am having the following error when i open setup.php<br />
I have given the right database information. But sill its not working&#8230;.</p>
<p>showHeader(); if (isset($_POST['installStatus'])) $installStatus = $_POST['installStatus']; $success = &#8220;&#8221;; $failure = &#8220;&#8221;; // Create Database Connection and test to see if DB properties are correct $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; $conn = &amp;ADONewConnection(&#8217;mysql&#8217;); if (!$conn-&gt;Connect($dbhost,$dbuser,$dbpass,$dbdatabase)) { ?&gt; Could not connect to the selected database: . Check the config.php file to be sure you set the correct database server, database name, username, and password. Contact your system administrator if you do not know these values.</p>
<p>You need to fix this before you can continue with the installation process.<br />
showFooter(); exit; } if(!isset($installStatus)) { ?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max Viskov</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-18508</link>
		<dc:creator>Max Viskov</dc:creator>
		<pubDate>Tue, 07 Nov 2006 16:02:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-18508</guid>
		<description>Greg
POP3 Before SMTP

I just wanted to let you know, that I installed your product and it works fine. Unfortunately the php mail() function was very slow, so I decided to swith to SMTP. My host though required POP3 autorization before SMTP. Since your product did not support it naturally, I made a few changes, based on Richard Davey&#039;s code (http://www.corephp.co.uk/archives/18-POP-before-SMTP-Authentication-for-PHPMailer.html) and it works fine. Here is what I changed:
added file class.pop3.php (from dave)

in config_email.php added
	var $POP3Auth = true;					
	var $POP3Host = &quot;mail.felicity-art.com&quot;;	
	var $POP3Username = &quot;user@felicity-art.com&quot;;	
	var $POP3Password = &quot;mypassword&quot;;				

in getcard.php and process_compose.php added
	if ($POP3Auth)
	{	
		require &#039;class.pop3.php&#039;;
		$pop = new POP3();
		$pop-&gt;Authorise($POP3Host, 110, 30, $POP3Username, $POP3Password, 1);
		}
		$emailer = new emailer();
	if ($POP3Auth)
	{	

		$emailer-&gt;IsSMTP();
		$emailer-&gt;SMTPDebug = 1;
		}

Regards
Max Viskov</description>
		<content:encoded><![CDATA[<p>Greg<br />
POP3 Before SMTP</p>
<p>I just wanted to let you know, that I installed your product and it works fine. Unfortunately the php mail() function was very slow, so I decided to swith to SMTP. My host though required POP3 autorization before SMTP. Since your product did not support it naturally, I made a few changes, based on Richard Davey&#8217;s code (<a href="http://www.corephp.co.uk/archives/18-POP-before-SMTP-Authentication-for-PHPMailer.html" rel="nofollow">http://www.corephp.co.uk/archives/18-POP-before-SMTP-Authentication-for-PHPMailer.html</a>) and it works fine. Here is what I changed:<br />
added file class.pop3.php (from dave)</p>
<p>in config_email.php added<br />
	var $POP3Auth = true;<br />
	var $POP3Host = &#8220;mail.felicity-art.com&#8221;;<br />
	var $POP3Username = &#8220;user@felicity-art.com&#8221;;<br />
	var $POP3Password = &#8220;mypassword&#8221;;				</p>
<p>in getcard.php and process_compose.php added<br />
	if ($POP3Auth)<br />
	{<br />
		require &#8216;class.pop3.php&#8217;;<br />
		$pop = new POP3();<br />
		$pop-&gt;Authorise($POP3Host, 110, 30, $POP3Username, $POP3Password, 1);<br />
		}<br />
		$emailer = new emailer();<br />
	if ($POP3Auth)<br />
	{	</p>
<p>		$emailer-&gt;IsSMTP();<br />
		$emailer-&gt;SMTPDebug = 1;<br />
		}</p>
<p>Regards<br />
Max Viskov</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a guy</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-14653</link>
		<dc:creator>a guy</dc:creator>
		<pubDate>Sun, 15 Oct 2006 00:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-14653</guid>
		<description>Your girlfriend is really hot!</description>
		<content:encoded><![CDATA[<p>Your girlfriend is really hot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-4420</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Sun, 02 Jul 2006 16:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-4420</guid>
		<description>how do i install gcards?</description>
		<content:encoded><![CDATA[<p>how do i install gcards?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sanj</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-2891</link>
		<dc:creator>sanj</dc:creator>
		<pubDate>Mon, 05 Jun 2006 05:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-2891</guid>
		<description>is the gcards aboadoned project
there is the support either
even this comment seems out and .....
no replies at all</description>
		<content:encoded><![CDATA[<p>is the gcards aboadoned project<br />
there is the support either<br />
even this comment seems out and &#8230;..<br />
no replies at all</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sanj</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-2542</link>
		<dc:creator>sanj</dc:creator>
		<pubDate>Sun, 28 May 2006 11:08:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-2542</guid>
		<description>First thing why forum is down
does gcards support flash files
it would have been very good if it was so
has some body modified it to support flash
please help
with out flash support it is of no use in mordern era
thanks</description>
		<content:encoded><![CDATA[<p>First thing why forum is down<br />
does gcards support flash files<br />
it would have been very good if it was so<br />
has some body modified it to support flash<br />
please help<br />
with out flash support it is of no use in mordern era<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-184</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Fri, 10 Mar 2006 04:43:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-184</guid>
		<description>I just uploaded gCards version 1.45.   This should hopefully fix all of the issues people had with the authentication.   Basically when it was written I used a mysql specific function called &#039;password&#039; for creation of and validation of the users password.  MySQL changed this in one of there versions - 4.x I think.  I&#039;ve updated gcards to store the password as an md5 hash of the real password, so that should hopefully stand the test of time, as its not specific to any mySQL version...

enjoy

Greg</description>
		<content:encoded><![CDATA[<p>I just uploaded gCards version 1.45.   This should hopefully fix all of the issues people had with the authentication.   Basically when it was written I used a mysql specific function called &#8216;password&#8217; for creation of and validation of the users password.  MySQL changed this in one of there versions &#8211; 4.x I think.  I&#8217;ve updated gcards to store the password as an md5 hash of the real password, so that should hopefully stand the test of time, as its not specific to any mySQL version&#8230;</p>
<p>enjoy</p>
<p>Greg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nexy</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-182</link>
		<dc:creator>Nexy</dc:creator>
		<pubDate>Mon, 06 Mar 2006 06:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-182</guid>
		<description>Hi Greg,

Your gCards is exactly what I&#039;ve been looking for.  I installed it tonight and the default username/password would not work.  I went into my database and created an additional one for myself, and got the same error.  Basically stating its invalid.  Can you please contact me.  I searched your site for a help section or contact email, nothing can be found. 

Thanks again!</description>
		<content:encoded><![CDATA[<p>Hi Greg,</p>
<p>Your gCards is exactly what I&#8217;ve been looking for.  I installed it tonight and the default username/password would not work.  I went into my database and created an additional one for myself, and got the same error.  Basically stating its invalid.  Can you please contact me.  I searched your site for a help section or contact email, nothing can be found. </p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lili</title>
		<link>http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/comment-page-1/#comment-162</link>
		<dc:creator>lili</dc:creator>
		<pubDate>Thu, 02 Mar 2006 09:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregphoto.net/index.php/2005/04/16/gcards-144-released/#comment-162</guid>
		<description>hi greg!

you don&#039;t know how long i&#039;ve searched for an ecard program, and one that had the features without looking cramped or that was hosted on another site.
i downloaded your folder...but, i am definitely not a programmer, and barely know html. so i was lost after reading your User Guide after 1. Download....
do you have more detailed, handholding info on how to create the database, and php file, and everything else past step 1.?

desperately seeking info (or better yet, some kind of simple to implement, automated file that i can just cut and paste or download somewhere) :)
thanks much! cool photogs, btw, i am an artist too!
lili</description>
		<content:encoded><![CDATA[<p>hi greg!</p>
<p>you don&#8217;t know how long i&#8217;ve searched for an ecard program, and one that had the features without looking cramped or that was hosted on another site.<br />
i downloaded your folder&#8230;but, i am definitely not a programmer, and barely know html. so i was lost after reading your User Guide after 1. Download&#8230;.<br />
do you have more detailed, handholding info on how to create the database, and php file, and everything else past step 1.?</p>
<p>desperately seeking info (or better yet, some kind of simple to implement, automated file that i can just cut and paste or download somewhere) <img src='http://www.gregphoto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
thanks much! cool photogs, btw, i am an artist too!<br />
lili</p>
]]></content:encoded>
	</item>
</channel>
</rss>
