here’s some useful snippet to control the size and the order of the access groups of a page.

standard size of the page access list
access user group listwhen working with larger TYPO3 sites, the access groups can become increasingly complex. the list view to select the groups from is about only five elements long by default, but that maybe a bit too short when it comes to more than 200 user groups out of i.e. an ldap structure.
this makes selecting the right group painful, especially when this list is not ordered by natural alphabetical order but by id or other fancy computer data.
// more space to select fe_groups $TCA['pages']['columns']['fe_group']['config']['size'] = 12; $TCA['pages']['columns']['fe_group']['config']['foreign_table_where'] = 'ORDER BY fe_groups.title'; $TCA['be_users']['columns']['usergroup']['config']['size'] = 12; $TCA['be_users']['columns']['usergroup']['config']['foreign_table_where'] = 'ORDER BY be_groups.title';
Add this code to your extTables.php file and things get smoother again. The last two lines apply the same for the backend user dialog with the backend user selection.



