OK, it WAS a permissions issue. For some reason the files all went up as 700. I explicitly told the ftp to set them to 644 and did the upload and setup again and now the admin interface is fine.
Checking the error log now I get a failure of the function
createalbummenulink()
Which I search for on the zen photo web site docs and find nothing about. It isn't listed in the deprecated functions. So it is failing the menu functions and borking the css as well. Has it been replaced with another function? Is it a plugin that I now need to explicitly turn on. I can not find reference to it.
I was originally helped through this a couple of years ago in this post: http://www.zenphoto.org/support/topic.php?id=5261#post-30768
The operative (or now non-operative code) that WAS working before the upgrade is
`
<?php $parent = $_zp_current_album->getParent();
if (!is_null($parent)) { ?>[list] <?php
/*printAlbumMenuList("list-top",'','','mmhere','',"","", false);*//*works but no highlight of parent album*/
$ParentTitle = $parent->getTitle();
$gallery = $_zp_gallery;
$albums = $_zp_gallery->getAlbums();
foreach ($albums as $toplevelalbum) {
$topalbum = new Album($gallery,$toplevelalbum,true);
if ($ParentTitle == $topalbum->gettitle()) { ?>
<?php createAlbumMenuLink($topalbum,$option2,$css_class_topactive,$albumpath,"list"); ?> </li>
<?php } else {
createAlbumMenuLink($topalbum,$option2,$css_class_topactive,$albumpath,"list");?> </li><?php }}
?>[/list]
<?php
/*printAlbumMenuList("list-sub",'','','mmhere','',"mmhere","", false);*/}
else {
printAlbumMenuList("list-top",'','','mmhere','',"","", false);
}
?>
`