error when install last build zenphoto

Hi
No create zenpage tables.
This error display if no zp_config.php or if login or pasword mysql is incorect
"Fatal error: Call to undefined function filesystemToInternal() in C:\wa\www

\z7\zp-core\setup.php on line 1554"

current
$expected_tables = array($_zp_conf_vars['mysql_prefix'].'options', $_zp_conf_vars['mysql_prefix'].'albums',
$_zp_conf_vars['mysql_prefix'].'images', $_zp_conf_vars['mysql_prefix'].'comments',
$_zp_conf_vars['mysql_prefix'].'administrators', $_zp_conf_vars['mysql_prefix'].'admin_to_object',
$_zp_conf_vars['mysql_prefix'].'tags', $_zp_conf_vars['mysql_prefix'].'obj_to_tag',
$_zp_conf_vars['mysql_prefix'].'captcha',$_zp_conf_vars['mysql_prefix'].'pages',
$_zp_conf_vars['mysql_prefix'].'news2cat', $_zp_conf_vars['mysql_prefix'].'news_categories',
$_zp_conf_vars['mysql_prefix'].'news',$_zp_conf_vars['mysql_prefix'].'menu',
$_zp_conf_vars['mysql_prefix'].'plugin_storage'
);

Should by
$expected_tables = array($_zp_conf_vars['mysql_prefix'].'options', $_zp_conf_vars['mysql_prefix'].'albums',
$_zp_conf_vars['mysql_prefix'].'images', $_zp_conf_vars['mysql_prefix'].'comments',
$_zp_conf_vars['mysql_prefix'].'administrators', $_zp_conf_vars['mysql_prefix'].'admin_to_object',
$_zp_conf_vars['mysql_prefix'].'tags', $_zp_conf_vars['mysql_prefix'].'obj_to_tag',
$_zp_conf_vars['mysql_prefix'].'captcha',$_zp_conf_vars['mysql_prefix'].'zenpage_pages',
$_zp_conf_vars['mysql_prefix'].'zenpage_news2cat', $_zp_conf_vars['mysql_prefix'].'zenpage_news_categories',
$_zp_conf_vars['mysql_prefix'].'zenpage_news',$_zp_conf_vars['mysql_prefix'].'menu',
$_zp_conf_vars['mysql_prefix'].'plugin_storage'
);

Comments

  • Are you using the latest nightly build? One of the recent changes was to shift the database from using `zenpage_pages` to simply `pages`, so what you posted as "current" should be correct. This is probably an oversight (bug) since those changes.
  • acrylian Administrator, Developer
    Indeed, we are also improving and restructuring the object model a little currently and especially the Zenpage parts. As soon as sbillard will be back Zenpage news categories will also get their own class for that reason.
  • Are you using the latest nightly build? Yes
    testing for my site. Other change is ok :)

    Thank's for answer.
  • All fixed with tonight's build.
Sign In or Register to comment.