"One or more required parameters are missing from the request. This action cannot proceed"
I am using mod-rewrite and the link I get in the archive list to go to the message is in the following structure:
http://www.mydomain.com/NMS/message/3.html
I looked at the action.showmessage.php file and it appears it is that it is not getting the message id here:
Code: Select all
if( !isset($params['msgID']) )
{
$this->_DisplayErrorPage($id,$params,$returnid,
$this->Lang('error_insufficientparams'));
return;
}
Thanks