Well thats a PHP memory exhaustion error and not a program error. Maybe your uploading large files and with only 8mb of memory for PHP and your using GD you will see this alot. Same edit just different file. Increase php mempry
In uploadphoto.php somewhere up top near say
require "pp-inc.php";
add this
ini_set("memory_limit", "32M");