I'm running an https site on a non-standard port (9443), and trying to
use setRedirect() in a view after a successful form submission, like so:
class Default_LoginSuccessView extends ProjectBaseView
{
public function executeHtml(AgaviRequestDataHolder $rd)
{
$this->getContainer()->getResponse()->setRedirect(
$this->getContext()->getRouting()->gen('index'));
}
}
The gen('index') simply returns '/', as I'd expect, but the
setRedirect(), or more accurately the AgaviWebRequest::getUrlAuthority()
doesn't seem to recognise that my virtual host is running on port 9443.
Am I missing something here?
_______________________________________________
users mailing list
[email protected]
http://lists.agavi.org/mailman/listinfo/users