got a bit of a problem with Zend not adding the base url into routes i think.
What i have is as follows:
application
modules
menu
public
menu
css
js
index.php
index.base.php
I am using the function
<?php echo $this->url(array('module' => 'module1'), 'menu-install'); ?>
With the route:
$router->addRoute('menu-install', new Zend_Controller_Router_Route('/install/:modulePath', array('module' => 'menu', 'controller' => 'install', 'action' => 'install')));
Which is outputting http://menu/install/module1/ instead of http://localhost:8888/menu/install/module1/
Any ideas whats going on?