I checked the htacces, and run setup again,
in the theme the links are fine, but with this code no, so that i can show the latest albums on another page.
`<?php define('ZENFOLDER', 'zp-core');
define('WEBPATH', 'pasteventsv3');
require_once (WEBPATH . "/" . ZENFOLDER . "/template-functions.php") ; //load extensions
$_zp_plugin_scripts = array();
$_zp_flash_player = NULL;
$curdir = getcwd();
chdir(SERVERPATH . "/" . ZENFOLDER . PLUGIN_FOLDER);
$filelist = safe_glob('*'.'php');
chdir($curdir);
foreach ($filelist as $extension) {
$opt = 'zp_plugin_'.substr($extension, 0, strlen($extension)-4);
if (getOption($opt)) {
require_once(SERVERPATH . "/" . ZENFOLDER . PLUGIN_FOLDER . $extension);
}
}
?>
<?php printLatestAlbums(5, true, true, false, 40); ?>`