<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>PHP Thumb Topic: PHP Version 5.3.0 Issues</title>
<link>http://phpthumb.gxdlabs.com/forums/</link>
<description>Help, Suggestions, and General Discussion</description>
<language>en</language>
<pubDate>Tue, 07 Feb 2012 11:57:46 +0000</pubDate>

<item>
<title>adamquadmon on "PHP Version 5.3.0 Issues"</title>
<link>http://phpthumb.gxdlabs.com/forums/topic/php-version-530-issues#post-113</link>
<pubDate>Mon, 28 Sep 2009 09:47:18 +0000</pubDate>
<dc:creator>adamquadmon</dc:creator>
<guid isPermaLink="false">113@http://phpthumb.gxdlabs.com/forums/</guid>
<description>&#60;p&#62;for this error:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
PHP Warning: Parameter 6 to GdReflectionLib::createReflection() expected to be a reference, value given in ThumbBase.inc.php on line 197&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;- go on that line (197)&#60;br /&#62;
- look at the previous one (196)&#60;/p&#62;
&#60;p&#62;change it from:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
$args[] = $this;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;to:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
$args[] = &#38;amp;$this;&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>mcangel on "PHP Version 5.3.0 Issues"</title>
<link>http://phpthumb.gxdlabs.com/forums/topic/php-version-530-issues#post-95</link>
<pubDate>Fri, 28 Aug 2009 13:54:38 +0000</pubDate>
<dc:creator>mcangel</dc:creator>
<guid isPermaLink="false">95@http://phpthumb.gxdlabs.com/forums/</guid>
<description>&#60;p&#62;about this error:&#60;br /&#62;
&#60;code&#62;PHP Notice: Undefined index: JPG Support in /home/images/public_html/functions/GdThumb.inc.php on line 1080&#60;/code&#62;&#60;br /&#62;
if you don't want to wait for new release you just can fix it by yourself if don't know how look below:&#60;br /&#62;
open file GdThumb.inc.php find&#60;br /&#62;
&#60;code&#62;case 'JPG':&#60;/code&#62;&#60;br /&#62;
on 1078 line and add&#60;br /&#62;
&#60;code&#62; if (phpversion() &#38;gt;= &#34;5.3.0&#34;) $this-&#38;gt;format = 'JPEG';&#60;/code&#62;&#60;br /&#62;
after it, then insert&#60;br /&#62;
&#60;code&#62;if ($this-&#38;gt;format == 'JPEG') $this-&#38;gt;format = 'JPG';&#60;/code&#62;&#60;br /&#62;
between&#60;br /&#62;
&#60;code&#62;$isCompatible = $gdInfo[$this-&#38;gt;format . ' Support'];&#60;/code&#62;&#60;br /&#62;
and&#60;br /&#62;
&#60;code&#62;break;&#60;/code&#62;&#60;br /&#62;
and I think that from this next part of code&#60;br /&#62;
&#60;code&#62;		if (!$isCompatible)&#60;br /&#62;
		{&#60;br /&#62;
			// one last check for &#34;JPEG&#34; instead&#60;br /&#62;
			$isCompatible = $gdInfo['JPEG Support'];&#60;/p&#62;
&#60;p&#62;			if (!$isCompatible)&#60;br /&#62;
			{&#60;br /&#62;
				$this-&#38;gt;triggerError('Your GD installation does not support ' . $this-&#38;gt;format . ' image types');&#60;br /&#62;
			}&#60;br /&#62;
		}&#60;/code&#62;&#60;br /&#62;
you can save only this part&#60;br /&#62;
&#60;code&#62;if (!$isCompatible)&#60;br /&#62;
			{&#60;br /&#62;
				$this-&#38;gt;triggerError('Your GD installation does not support ' . $this-&#38;gt;format . ' image types');&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>shockerusa on "PHP Version 5.3.0 Issues"</title>
<link>http://phpthumb.gxdlabs.com/forums/topic/php-version-530-issues#post-88</link>
<pubDate>Mon, 17 Aug 2009 20:26:15 +0000</pubDate>
<dc:creator>shockerusa</dc:creator>
<guid isPermaLink="false">88@http://phpthumb.gxdlabs.com/forums/</guid>
<description>&#60;p&#62;Ticket submitted.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Justin
&#60;/p&#62;</description>
</item>
<item>
<title>Ian on "PHP Version 5.3.0 Issues"</title>
<link>http://phpthumb.gxdlabs.com/forums/topic/php-version-530-issues#post-87</link>
<pubDate>Mon, 17 Aug 2009 20:03:28 +0000</pubDate>
<dc:creator>Ian</dc:creator>
<guid isPermaLink="false">87@http://phpthumb.gxdlabs.com/forums/</guid>
<description>&#60;p&#62;I thought I'd nailed down the issue with the &#34;jpg&#34; vs &#34;jpeg&#34; in the library... looks like that's not the case.  Can you go ahead and file a ticket about these issues so I can take a look into it (I'll likely forget about it if it's just here in the forums).&#60;/p&#62;
&#60;p&#62;Here's the link to create a ticket: &#60;a href=&#34;http://trac.gxdlabs.com/projects/phpthumb/newticket&#34; rel=&#34;nofollow&#34;&#62;http://trac.gxdlabs.com/projects/phpthumb/newticket&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>shockerusa on "PHP Version 5.3.0 Issues"</title>
<link>http://phpthumb.gxdlabs.com/forums/topic/php-version-530-issues#post-86</link>
<pubDate>Mon, 17 Aug 2009 19:44:07 +0000</pubDate>
<dc:creator>shockerusa</dc:creator>
<guid isPermaLink="false">86@http://phpthumb.gxdlabs.com/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;In my error log, I'm getting these errors. The result of this, is that the plugins don't work anymore.&#60;/p&#62;
&#60;p&#62;&#60;blockquote&#62;PHP Notice:  Undefined index: JPG Support in /home/images/public_html/functions/GdThumb.inc.php on line 1080&#60;/blockquote&#62;&#60;/p&#62;
&#60;p&#62;and&#60;br /&#62;
&#60;blockquote&#62;PHP Warning:  Parameter 6 to GdReflectionLib::createReflection() expected to be a reference, value given in /home/images/public_html/functions/ThumbBase.inc.php on line 197&#60;/blockquote&#62;&#60;/p&#62;
&#60;p&#62;Any ideas how to fix these issues?&#60;/p&#62;
&#60;p&#62;Notes: I'm using your latest version.&#60;br /&#62;
PHP 5.3&#60;br /&#62;
GD 2.0.34 &#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Justin
&#60;/p&#62;</description>
</item>

</channel>
</rss>

