Yeah, it wasn't that though. I had
function ezgallery_integrate_actions2(&$actions)
{
$actions['gallery'] = array('Gallery_Controller','gallery.controller.php');
}
Which worked on the windows server Changed to
function ezgallery_integrate_actions2(&$actionArray, &$adminAction)
{
$actionArray = array_merge(
array (
'gallery' => array('gallery.controller.php', 'Gallery_Controller', 'action_index')
),
$actionArray
);
}
For some reason I forget why I changed the code in 1.1.x used to use for 1.0.x I forget why I changed now.
function ezgallery_integrate_actions(&$actions)
{
$actions['gallery'] = array('gallery.controller.php', 'Gallery_Controller', 'action_index');
}