<?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: Photobooth with PHP, jQuery and CSS3</title>
	<atom:link href="http://tutorialzine.com/2011/04/jquery-webcam-photobooth/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Fri, 17 May 2013 20:07:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: diokey</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-78287</link>
		<dc:creator>diokey</dc:creator>
		<pubDate>Mon, 25 Feb 2013 14:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-78287</guid>
		<description><![CDATA[Thank you so much for this wondeful tutorial. I was so much in need of this.

Keep up with the good Job man!!! I appreciate it.]]></description>
		<content:encoded><![CDATA[<p>Thank you so much for this wondeful tutorial. I was so much in need of this.</p>
<p>Keep up with the good Job man!!! I appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zero</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-78215</link>
		<dc:creator>zero</dc:creator>
		<pubDate>Fri, 22 Feb 2013 10:37:17 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-78215</guid>
		<description><![CDATA[Hi. 
Great tutorial!

I&#039;ve like to name the files according to a variable set in the URL using &quot;get&quot;. How can I do that?]]></description>
		<content:encoded><![CDATA[<p>Hi.<br />
Great tutorial!</p>
<p>I've like to name the files according to a variable set in the URL using &quot;get&quot;. How can I do that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sumit</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-77987</link>
		<dc:creator>sumit</dc:creator>
		<pubDate>Wed, 13 Feb 2013 06:01:29 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-77987</guid>
		<description><![CDATA[hey the code works great but i was looking to be able to view the captured video stream live on the local network. can anyone help how to start with that?? if anyone has already written the code for the same i would highly appreciate sharing that code with me. thanks]]></description>
		<content:encoded><![CDATA[<p>hey the code works great but i was looking to be able to view the captured video stream live on the local network. can anyone help how to start with that?? if anyone has already written the code for the same i would highly appreciate sharing that code with me. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andre</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-77662</link>
		<dc:creator>andre</dc:creator>
		<pubDate>Sun, 27 Jan 2013 01:30:38 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-77662</guid>
		<description><![CDATA[Before the webcam image, I wanted to put 2 fields for name and email. How do I?]]></description>
		<content:encoded><![CDATA[<p>Before the webcam image, I wanted to put 2 fields for name and email. How do I?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ced</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-77603</link>
		<dc:creator>ced</dc:creator>
		<pubDate>Thu, 24 Jan 2013 14:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-77603</guid>
		<description><![CDATA[Do I need to create database for this one? I try to put up all the file in the server and it work except for some function when upload after taking the picture, I couldnt find the image anywhere can you help me how to do this? thank you.]]></description>
		<content:encoded><![CDATA[<p>Do I need to create database for this one? I try to put up all the file in the server and it work except for some function when upload after taking the picture, I couldnt find the image anywhere can you help me how to do this? thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: imghoster</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-77241</link>
		<dc:creator>imghoster</dc:creator>
		<pubDate>Sun, 06 Jan 2013 14:02:43 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-77241</guid>
		<description><![CDATA[Bugfix for all IE browsers:
create file assets/webcam/webcam.php with code:
&lt;? 
header(&quot;Content-type: application/x-shockwave-flash&quot;); 
$filename = &quot;webcam.swf&quot;; 
$handle = fopen($filename,&quot;r&quot;); 
$contents = fread ($handle, filesize ($filename)); 
print $contents; 
fclose($handle); 
?&gt;

file: assets/js/script.js
find: webcam.set_swf_url(&#039;assets/webcam/webcam.swf&#039;);
replace to: 	webcam.set_swf_url(&#039;assets/webcam/webcam.php?uniq=&#039; + new Date().getTime());
 
file: assets/webcam/webcam.js
find: 	
swf_url: &#039;webcam.swf&#039;, // URI to webcam.swf movie (defaults to cwd)
replace to: 	
swf_url: &#039;webcam.php&#039;, // URI to webcam.swf movie (defaults to cwd)

it worked! 
Demo: http://up-image.ru/cam.html
Good luck! Happy Christmas!]]></description>
		<content:encoded><![CDATA[<p>Bugfix for all IE browsers:<br />
create file assets/webcam/webcam.php with code:<br />
&lt;?<br />
header(&quot;Content-type: application/x-shockwave-flash&quot;);<br />
$filename = &quot;webcam.swf&quot;;<br />
$handle = fopen($filename,&quot;r&quot;);<br />
$contents = fread ($handle, filesize ($filename));<br />
print $contents;<br />
fclose($handle);<br />
?&gt;</p>
<p>file: assets/js/script.js<br />
find: webcam.set_swf_url('assets/webcam/webcam.swf');<br />
replace to: 	webcam.set_swf_url('assets/webcam/webcam.php?uniq=' + new Date().getTime());</p>
<p>file: assets/webcam/webcam.js<br />
find:<br />
swf_url: 'webcam.swf', // URI to webcam.swf movie (defaults to cwd)<br />
replace to:<br />
swf_url: 'webcam.php', // URI to webcam.swf movie (defaults to cwd)</p>
<p>it worked!<br />
Demo: http://up-image.ru/cam.html<br />
Good luck! Happy Christmas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: imghoster</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-77235</link>
		<dc:creator>imghoster</dc:creator>
		<pubDate>Sun, 06 Jan 2013 12:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-77235</guid>
		<description><![CDATA[when re-booting does not work click shot in IE. The reason for caching webcam.swf]]></description>
		<content:encoded><![CDATA[<p>when re-booting does not work click shot in IE. The reason for caching webcam.swf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Bassett</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-75390</link>
		<dc:creator>Jason Bassett</dc:creator>
		<pubDate>Wed, 28 Nov 2012 08:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-75390</guid>
		<description><![CDATA[Soooo, My only issue is that the upload script is not re-sizing the images and putting them in the thumbs folder. 

All folders and subfolders are set to file permissions of 777

Any fix for this?]]></description>
		<content:encoded><![CDATA[<p>Soooo, My only issue is that the upload script is not re-sizing the images and putting them in the thumbs folder. </p>
<p>All folders and subfolders are set to file permissions of 777</p>
<p>Any fix for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Panna</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-75216</link>
		<dc:creator>Panna</dc:creator>
		<pubDate>Sat, 24 Nov 2012 07:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-75216</guid>
		<description><![CDATA[Excellent Tutorial. It really helps me a lot... Good job]]></description>
		<content:encoded><![CDATA[<p>Excellent Tutorial. It really helps me a lot... Good job</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keith</title>
		<link>http://tutorialzine.com/2011/04/jquery-webcam-photobooth/#comment-65128</link>
		<dc:creator>keith</dc:creator>
		<pubDate>Wed, 24 Oct 2012 13:54:59 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1419#comment-65128</guid>
		<description><![CDATA[@Sam I tried this.  Still doesn&#039;t work.  In webcam.js, this line is throwing up:

        this.get_movie()._snap( this.api_url, this.quality, this.shutter_sound ? 1 : 0, this.stealth ? 1 : 0 );

Error:  Object doesn&#039;t support this property or method

The click returns True then the page is refreshed.  Image is never saved.

You sure it&#039;s working?  I&#039;m using IE8.]]></description>
		<content:encoded><![CDATA[<p>@Sam I tried this.  Still doesn't work.  In webcam.js, this line is throwing up:</p>
<p>        this.get_movie()._snap( this.api_url, this.quality, this.shutter_sound ? 1 : 0, this.stealth ? 1 : 0 );</p>
<p>Error:  Object doesn't support this property or method</p>
<p>The click returns True then the page is refreshed.  Image is never saved.</p>
<p>You sure it's working?  I'm using IE8.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 287/287 objects using apc
Content Delivery Network via cdn.tutorialzine.com

 Served from: tutorialzine.com @ 2013-05-19 07:27:58 by W3 Total Cache -->