prohibit customers from using IP addresses for employees?

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
Marcel_164
Posts: 6
Joined: Fri Feb 21, 2025 11:16 am

prohibit customers from using IP addresses for employees?

Post by Marcel_164 »

Hello,
Is it actually possible to prevent employees from seeing an IP address because of data protection?
Best regards
Marcel
Klemen
Site Admin
Posts: 10139
Joined: Fri Feb 11, 2005 4:04 pm

Re: prohibit customers from using IP addresses for employees?

Post by Klemen »

There is no built-in way to do that.

However, you could delete this code from the /admin/admin_ticket.php page:

Code: Select all

                                    <li class="noclose">
                                        <span class="title"><?php echo $hesklang['ip']; ?>:</span>
                                        <?php if ($ticket['ip'] == '' || $ticket['ip'] == 'Unknown' || $ticket['ip'] == $hesklang['unknown']): ?>
                                        <span class="value"><?php echo $hesklang['unknown']; ?></span>
                                        <?php else: ?>
                                        <span class="value"><a href="../ip_whois.php?ip=<?php echo urlencode($ticket['ip']); ?>"><?php echo $ticket['ip']; ?></a></span>
                                        <a href="javascript:" title="<?php echo $hesklang['copy_value']; ?>" onclick="navigator.clipboard.writeText('<?php echo $ticket['ip']; ?>');$('#copy-ip').addClass('copied');setTimeout(function(){$('#copy-ip').removeClass('copied')}, 150);">
                                            <svg class="icon icon-merge copy-me" id="copy-ip">
                                                <use xlink:href="<?php echo HESK_PATH; ?>img/sprite.svg#icon-merge"></use>
                                            </svg>
                                        </a>
                                        <?php endif; ?>
                                    </li>
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Marcel_164
Posts: 6
Joined: Fri Feb 21, 2025 11:16 am

Re: prohibit customers from using IP addresses for employees?

Post by Marcel_164 »

But if you want to ban someone, they will still be banned but the IP address isn't there, or can you then neither ban them nor ban them?
Klemen
Site Admin
Posts: 10139
Joined: Fri Feb 11, 2005 4:04 pm

Re: prohibit customers from using IP addresses for employees?

Post by Klemen »

In that case I recommend hiring a PHP developer that will help you customize your help desk to fit your needs.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Marcel_164
Posts: 6
Joined: Fri Feb 21, 2025 11:16 am

Re: prohibit customers from using IP addresses for employees?

Post by Marcel_164 »

All right.
I've done it now, everything is going great 👍
Post Reply