<?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: How To: Install PHP-Ming</title>
	<atom:link href="http://gofedora.com/how-to-install-phpming/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>How Tos, Tutorials, Tips and Tricks</description>
	<lastBuildDate>Thu, 01 Jul 2010 13:57:11 +0530</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Php Flash 5 Form Tutorial</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-235</link>
		<dc:creator>Php Flash 5 Form Tutorial</dc:creator>
		<pubDate>Sun, 30 Mar 2008 23:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-235</guid>
		<description>Hey! I&#039;ve been looking for a site that has some good information on Php Flash 5 Form Tutorial. I was searching around on Google and your post regarding How to install php-ming in Fedora caught my attention .. Good info thanks Sunday</description>
		<content:encoded><![CDATA[<p>Hey! I&#8217;ve been looking for a site that has some good information on Php Flash 5 Form Tutorial. I was searching around on Google and your post regarding How to install php-ming in Fedora caught my attention .. Good info thanks Sunday</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike D</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-233</link>
		<dc:creator>Mike D</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-233</guid>
		<description>I might add in my case (centos5) I added a new text file ming.ini with content:

extension=ming.so

To directory /etc/php.d/
(then restart apache)</description>
		<content:encoded><![CDATA[<p>I might add in my case (centos5) I added a new text file ming.ini with content:</p>
<p>extension=ming.so</p>
<p>To directory /etc/php.d/<br />
(then restart apache)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacek</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-234</link>
		<dc:creator>Jacek</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-234</guid>
		<description>Great tutorial! Thank you very much.
CentOS 5</description>
		<content:encoded><![CDATA[<p>Great tutorial! Thank you very much.<br />
CentOS 5</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-236</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-236</guid>
		<description>Install works, but production fails
However: once I instantiate a movie like so :
&lt;code lang=&quot;php&quot;&gt;
 $m = new SWFMovie();
  $m-&gt;setBackground(0xff, 0xff, 0xff);
  $m-&gt;setDimension(6000, 4000);

  $i = $m-&gt;add($p);
  $i-&gt;setDepth(1);
  $i-&gt;moveTo(-500,2000);
  $i-&gt;setName(&quot;box&quot;);

  $m-&gt;add(new SWFAction(&quot;/box.x += 3;&quot;));
  $m-&gt;nextFrame();
  $m-&gt;add(new SWFAction(&quot;gotoFrame(0); play();&quot;));
  $m-&gt;nextFrame();

  header(&#039;Content-type: application/x-shockwave-flash&#039;);
  $m-&gt;output();
&lt;/code&gt;
PHP complains on the last line about a syntax error.:
[Wed Apr 30 14:28:26 2008] [error] [client 127.0.0.1] PHP Fatal error:  SWFMovie::output() [&lt;a href=&#039;function.SWFMovie-output&#039;&gt;function.SWFMovie-output&lt;/a&gt;]: \n/\n^\nLine 1:  Reason: &#039;syntax error&#039;\n in /usr/plotus/people/htdocs/js/widgets/ming2.html on line 39

what do we do now?
T</description>
		<content:encoded><![CDATA[<p>Install works, but production fails<br />
However: once I instantiate a movie like so :<br />
<code lang="php"><br />
 $m = new SWFMovie();<br />
  $m->setBackground(0xff, 0xff, 0xff);<br />
  $m->setDimension(6000, 4000);</p>
<p>  $i = $m->add($p);<br />
  $i->setDepth(1);<br />
  $i->moveTo(-500,2000);<br />
  $i->setName("box");</p>
<p>  $m->add(new SWFAction("/box.x += 3;"));<br />
  $m->nextFrame();<br />
  $m->add(new SWFAction("gotoFrame(0); play();"));<br />
  $m->nextFrame();</p>
<p>  header('Content-type: application/x-shockwave-flash');<br />
  $m->output();<br />
</code><br />
PHP complains on the last line about a syntax error.:<br />
[Wed Apr 30 14:28:26 2008] [error] [client 127.0.0.1] PHP Fatal error:  SWFMovie::output() [<a href='function.SWFMovie-output'>function.SWFMovie-output</a>]: \n/\n^\nLine 1:  Reason: &#8217;syntax error&#8217;\n in /usr/plotus/people/htdocs/js/widgets/ming2.html on line 39</p>
<p>what do we do now?<br />
T</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kulbirsaini</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-237</link>
		<dc:creator>kulbirsaini</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-237</guid>
		<description>&gt;&gt; $m-&gt;output();

I think $m-&gt;save(&#039;file.swf&#039;) is the right function to use.
An example working code.
&lt;code lang=&quot;php&quot;&gt;
  $s = new SWFShape();
  $s-&gt;setLine(40, 0x7f, 0, 0);
  $s-&gt;setRightFill($s-&gt;addFill(0xff, 0, 0));
  $s-&gt;movePenTo(200, 200);
  $s-&gt;drawLineTo(200, 200);
  $s-&gt;drawLineTo(1200, 600);
  $s-&gt;drawCurveTo(1200, 600, 200, 200);

  $m = new SWFMovie();
  $m-&gt;setDimension(6400, 4800);
  $m-&gt;setRate(12.0);
  $m-&gt;add($s);
  $m-&gt;nextFrame();

  header(&#039;Content-type: application/x-shockwave-flash&#039;);
  $m-&gt;save(&#039;test.swf&#039;);
&lt;/code&gt;

BTW, I edited your comment so that it looks good :)
Hope this example helps.</description>
		<content:encoded><![CDATA[<p>>> $m->output();</p>
<p>I think $m->save(&#8217;file.swf&#8217;) is the right function to use.<br />
An example working code.<br />
<code lang="php"><br />
  $s = new SWFShape();<br />
  $s->setLine(40, 0x7f, 0, 0);<br />
  $s->setRightFill($s->addFill(0xff, 0, 0));<br />
  $s->movePenTo(200, 200);<br />
  $s->drawLineTo(200, 200);<br />
  $s->drawLineTo(1200, 600);<br />
  $s->drawCurveTo(1200, 600, 200, 200);</p>
<p>  $m = new SWFMovie();<br />
  $m->setDimension(6400, 4800);<br />
  $m->setRate(12.0);<br />
  $m->add($s);<br />
  $m->nextFrame();</p>
<p>  header('Content-type: application/x-shockwave-flash');<br />
  $m->save('test.swf');<br />
</code></p>
<p>BTW, I edited your comment so that it looks good <img src='http://gofedora.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Hope this example helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jun Pan</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-238</link>
		<dc:creator>Jun Pan</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-238</guid>
		<description>Thanks kulbirsaini!
Your post saved me tons of time. 
Also thank Google for digging your post out for me :-)</description>
		<content:encoded><![CDATA[<p>Thanks kulbirsaini!<br />
Your post saved me tons of time.<br />
Also thank Google for digging your post out for me <img src='http://gofedora.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matteoosh</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-239</link>
		<dc:creator>matteoosh</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-239</guid>
		<description>i spent 5 hours on binding ming with php - eventually your tutorial helped me to figure it out properly what was wrong. :D thnks a lot.
M.</description>
		<content:encoded><![CDATA[<p>i spent 5 hours on binding ming with php &#8211; eventually your tutorial helped me to figure it out properly what was wrong. <img src='http://gofedora.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  thnks a lot.<br />
M.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: visitor</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-240</link>
		<dc:creator>visitor</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-240</guid>
		<description>The package for installa php4-ming extension don&#039;t exist in repository of Ubuntu. What i do?
 &lt;a rel=&quot;follow&quot; href=&quot;http://classyclosets.com/&quot;&gt;closets&lt;/a&gt; </description>
		<content:encoded><![CDATA[<p>The package for installa php4-ming extension don&#8217;t exist in repository of Ubuntu. What i do?<br />
 <a rel="nofollow" href="http://gofedora.com/goto/http://classyclosets.com/" rel="follow" >closets</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kulbirsaini</title>
		<link>http://gofedora.com/how-to-install-phpming/comment-page-1/#comment-241</link>
		<dc:creator>kulbirsaini</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=370#comment-241</guid>
		<description>its an archived package and will not be found in the ubuntu archive... Download from the link mentioned in the howto.</description>
		<content:encoded><![CDATA[<p>its an archived package and will not be found in the ubuntu archive&#8230; Download from the link mentioned in the howto.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
