Hi, your soft use port 82 (ex: http://host:82/view/main.php) and in then link of mails port is not present (ex: http://host/view/main.php?directAccess=true&objectClass=Activity&objectId=210)
Thanks for help
Hi, your soft use port 82
No, the soft does not use any port.
It is your PHP server who does.
I never tried with a non standard port (standard is 80)
Maybe a redirect in your PHP config may help.
In your case, replacing line 2353 in /model/persistence/SqlElement.php, from
$url=$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
to
$url=$_SERVER['SERVER_NAME'].(($_SERVER['SERVER_PORT']!='80')?':'.$_SERVER['SERVER_PORT']:'').$_SERVER['REQUEST_URI'];
should solve your problem.
It's ok thanks