Page 1 of 1
Can I turn off the Ip address?
Posted: Tue Mar 01, 2022 1:39 pm
by mystasia
Hello
Is it possible to set in the HelpDesk software that the IP address of the "customer" is not visible for employees?

Re: Can I turn off the Ip address?
Posted: Tue Mar 01, 2022 5:45 pm
by Klemen
There is no built-in way of doing that.
However, you can:
1. download and install the free
Notepad++
2. open file admin/admin_ticket.php in Notepad++
4. find
5. just below that line add
6. save, upload and test
Re: Can I turn off the Ip address?
Posted: Wed Mar 02, 2022 11:51 am
by mystasia
Hello thank you for your answer.
Did what you wrote, however, the IP address is still displayed unfortunately?
Re: Can I turn off the Ip address?
Posted: Wed Mar 02, 2022 5:29 pm
by Klemen
As, sorry, didn't test it before posting.
You will also need to do this:
1. open file /admin/admin_ticket.php in Notepad++
2. find this line:
Code: Select all
<span class="title"><?php echo $hesklang['ip']; ?>:</span>
3. two lines ABOVE that line, find
and change it to
4. a few lines BELOW line in #2, find line
5. below this line, find
and change it to
It should now look something like:
Code: Select all
/* ?>
<li class="noclose">
<span class="title"><?php echo $hesklang['ip']; ?>:</span>
<span class="value">
<?php
if ($ticket['ip'] == '' || $ticket['ip'] == 'Unknown' || $ticket['ip'] == $hesklang['unknown']) {
echo $hesklang['unknown'];
} else {
?>
<a href="../ip_whois.php?ip=<?php echo urlencode($ticket['ip']); ?>"><?php echo $ticket['ip']; ?></a>
<?php } ?>
</span>
</li>
<li class="separator"></li>
<?php */
Save, upload a test.