The synchronize function will fail if you don’t use friendly url’s and will add short module names (only 8 positions) to your security tables. You can fix it by the following changes of the onvalidate event in the synchronize application:
//$arr_apps = array_diff(scandir($this->Ini->path_aplicacao . "../_lib/friendly_url/"), array('.','..'));
//foreach($arr_apps as $k => $v)
//{
//$arr_apps[$k] = substr($v, 0, 8);
//}
$arr_apps=array();
$arr_apps_without_friendly = array_diff(scandir($this->Ini->path_aplicacao . "../"), array('.','..', 'index.php', 'index.html'),$arr_apps);