The reason I asked about the theme is that flash has nothing to do with the zenphoto core functionality. It is entirely theme implemented. The only way that being logged in as an admin could matter is if the theme had such a test in it or had some other flawed logic that made it think that flash was not enabled.
Please view http://albums.sbillard.org/Cats/. This site has flash working both when logged in and not. If you cannot view the flash on this site there is some problem with your browser.
If you choose not to provide the information we ask for, how can we help you?
I think the problem is in
`
function zenJavascript() {
global $_zp_phoogle;
if(zp_conf('gmaps_apikey') != ''){$_zp_phoogle->printGoogleJS();}
if (zp_loggedin()) {
echo " n";
echo " n";
echo " n";
sajax_show_javascript();
echo " ";
}
echo " n";
}
`
it should be
`
function zenJavascript() {
global $_zp_phoogle;
if(zp_conf('gmaps_apikey') != ''){$_zp_phoogle->printGoogleJS();}
if (zp_loggedin()) {
echo " n";
echo " n";
sajax_show_javascript();
echo " ";
}
echo " n";
echo " n";
}
`
it works for me
Enes: You are right, there was the problem, but your fix didn't work for me. I had to change it to this:
`function zenJavascript() {
global $_zp_phoogle;
if(zp_conf('gmaps_apikey') != ''){$_zp_phoogle->printGoogleJS();}
if (zp_loggedin()) {
echo " n";
echo " n";
echo " n";
sajax_show_javascript();
echo " ";
}
echo " n";
echo " n";
}`
I'll attach it to the ticket.