Well:
This code is responsible for redirection:
| Code: |
mosRedirect($mosConfig_live_site.$_ENV["REQUEST_URI"]);
|
$_ENV["REQUEST_URI"] variable is supposed to be holding everything after domain from currect http request, i.e.
If request was:
| Code: |
http://www.blah.com/index.php?option=com_fireboard&catid=124
|
Then:
$_ENV["REQUEST_URI"] should be equal to
| Code: |
/index.php?option=com_fireboard&catid=124
|
$_ENV variable might be empty in your case, so redirection is going to your frontpage, change that to direct forum URL (i.e. make it
www.blah.com/index.php?option=com_fireboard), OR manually find all GET/POST request variables and add them to the end of redirect request, OR find out another way how to redirect to same URL as original request was made.