Is it possible to compose an url, with the base URL of the joomla site, in the redirect action of chronoforms5.
For example I want to redirect to "index.php?option=com_chronoforms5&chronoform=cursus", which is in fact
www.haagstheaterhuis.nl/index.php?option=com_chronoforms5&chronoform=cursus
but on my test site it is:
//localhost.haagstheaterhuis/index.php?option=com_chronoforms5&chronoform=cursus
With the action custom code it works like this:
<?php
$mainframe = JFactory::getApplication();
$node=JURI::base().'index.php?option=com_chronoforms5&chronoform=cursus';
$mainframe->redirect($node);
?>
but how to do this with the Redirect action
Theo
For example I want to redirect to "index.php?option=com_chronoforms5&chronoform=cursus", which is in fact
www.haagstheaterhuis.nl/index.php?option=com_chronoforms5&chronoform=cursus
but on my test site it is:
//localhost.haagstheaterhuis/index.php?option=com_chronoforms5&chronoform=cursus
With the action custom code it works like this:
<?php
$mainframe = JFactory::getApplication();
$node=JURI::base().'index.php?option=com_chronoforms5&chronoform=cursus';
$mainframe->redirect($node);
?>
but how to do this with the Redirect action
Theo