name, $_zp_current_image->filename); $theme = setupTheme(); $_zp_gallery_page = basename($obj = THEMEFOLDER."/$theme/image.php"); //update hit counter if (!zp_loggedin()) { $hc = $_zp_current_image->get('hitcounter')+1; $_zp_current_image->set('hitcounter', $hc); $_zp_current_image->save(); } // Display an Album page. } else if (in_context(ZP_ALBUM)) { if(isset($_GET['zipfile']) && is_dir(realpath(getAlbumFolder() . UTF8ToFilesystem($_GET['album'])))){ createAlbumZip(sanitize_path($_GET['album'])); } else { if ($_zp_current_album->isDynamic()) { $search = $_zp_current_album->getSearchEngine(); $cookiepath = WEBPATH; if (WEBPATH == '') { $cookiepath = '/'; } zp_setcookie("zenphoto_image_search_params", $search->getSearchParams(), 0, $cookiepath); set_context(ZP_INDEX | ZP_ALBUM); $theme = setupTheme(); $_zp_gallery_page = basename($obj = THEMEFOLDER."/$theme/album.php"); } else { handleSearchParms($_zp_current_album->name); $theme = setupTheme(); $_zp_gallery_page = basename($obj = THEMEFOLDER."/$theme/album.php"); } } // update hit counter if (!zp_loggedin() && getCurrentPage() == 1) { $hc = $_zp_current_album->get('hitcounter')+1; $_zp_current_album->set('hitcounter', $hc); $_zp_current_album->save(); } // Display the Index page. } else if (in_context(ZP_INDEX)) { handleSearchParms(); $theme = setupTheme(); $_zp_gallery_page = basename($obj = THEMEFOLDER."/$theme/index.php"); } // Load plugins, then load the requested $obj (page, image, album, or index; defined above). $_zp_loaded_plugins = array(); if (file_exists(SERVERPATH . "/" . UTF8ToFilesystem($obj)) && $zp_request) { foreach (getEnabledPlugins() as $extension) { $_zp_loaded_plugins[] = $extension; require_once(SERVERPATH . "/" . ZENFOLDER . PLUGIN_FOLDER . $extension); } if(!is_null($_zp_HTML_cache)) { $_zp_HTML_cache->startHTMLCache(); } // Include the appropriate page for the requested object, and a 200 OK header. header("HTTP/1.0 200 OK"); header("Status: 200 OK"); include($obj); // If the requested object does not exist, issue a 404 and redirect to the theme's // 404.php page, or a 404.php in the zp-core folder. } else { list($album, $image) = rewrite_get_album_image('album','image'); $_zp_gallery_page = '404.php'; $errpage = THEMEFOLDER.'/'.UTF8ToFilesystem($theme).'/404.php'; header("HTTP/1.0 404 Not Found"); header("Status: 404 Not Found"); if (file_exists(SERVERPATH . "/" . $errpage)) { include($errpage); } else { include(ZENFOLDER. '/404.php'); } } $a = basename($obj); if ($a != 'full-image.php') { if (defined('RELEASE')) { $official = 'Official Build'; } else { $official = 'SVN'; } echo "\n"; } if(!is_null($_zp_HTML_cache)) { $_zp_HTML_cache->endHTMLCache(); } ?>