the stopdesign doesn't work for 1.0beta!!
But you can do the following to make it work..
There are two files you'll need to edit. These files are located in the "zen" folder.
[b]EDIT i.PHP[/b]
if(isset($_GET['s']) && $_GET['s'] < 3000) { // Disallow abusive size requests.
if ($_GET['s'] == "thumb") {
$thumb = true;
} else {
$thumb = false;
}
$size = $_GET['s'];
} else {
return false;
}
`
if(isset($_GET['s']) && $_GET['s'] < 3000) { // Disallow abusive size requests.
if ($_GET['s'] == "thumb") {
$thumb = true;
// STOP DESIGN
if ($_GET['f'] == "true") {
$thumb_crop = true;
$thumb_size = 230;
$thumb_crop_width = 210;
$thumb_crop_height = 60;};
} else {
$thumb = false;
}
$size = $_GET['s'];
if ($_GET['f'] == "true") { $size = $size."f";};
} else {
return false;
}
`
[b]EDIT template-functions.php[/b]
function printAlbumThumbImage($alt, $class=NULL, $id=NULL) {
echo "";
}
`
// STOP DESIGN FUNCTION
function printAlbumThumbImageStopdesign($alt, $class=NULL, $id=NULL) {
echo "";
}
`
http://nekton.mine.nu/archives/2006/01/19/stopdesign-for-zenphoto/
i have edited stopdesing for use only zenphoto function ..