Welcome to GLPi feature request service.
Please check if the feature has not already been requested.
If not, please describe it

0

Add ACTUAL markdown support in notes and knowledge base

Wilbur 4 weeks ago 0

I just tried the 11 beta and I saw the new tools for editing text. 
It's better than before, but being used to writing Markdown on the go, this gives me the FosWiki vibes.
- I also tried to convert Markdown to HTML but even there, code block won't follow for example.

Proxmox implemented this a couple versions ago:
Simply writing this:
## Simple markdown heading
### This is so easy and effective

- Ok now a bullet list
- Easy again

```
Code block
```
Gives this 

Image 506

It could be very nice to at least toggle a markdown mode for writing then display the "View mode" in html like GLPI does.... There's a project called Perlite that perfectly fits markdown pages to a static website :https://github.com/secure-77/Perlite


Then we could make documentation flow as we link with actual cases, hardware, tickets etc, without lifting our mouse so often....

Thank you

0

is it possible to use Password Protection while uninstall GLPI-Agent

Bruce 4 weeks ago 0

I don't want our colleagues to uninstall GLPI-AGENT by themselves, therefore I want to set the Password to protect GLPI-Agent.

Is it possible?

Thank you in advance.

0

Permission or filter to see only my assets in the Assets Dashboard.

I would like to know if it is possible to have a filter or certain configuration in the profile so that each user can see only the amount of their assigned assets in the Assets Dashboard.

I am just using GLPI and I am trying to get the assets I have created and assigned to certain users to display correctly on the dashboard. Because currently the 4 computers I have created are showing on the dashboard for all users even though I have already assigned them to specific users.

Image 505

0

Replace dropdown visibility of status elements

acerra 1 month ago 0

Replace the Yes / No dropdowns for the visibility of item statuses with checkboxes, similar to the capabilities of assets.

In the long run, instances will have more and more assets and associated statuses. The configuration of statuses will undoubtedly become a nightmare.

0

filter in the computer search

Robert 1 month ago 0
is it possible to add a filter in the computer search filter like in History
Image 504
0

name for racks row

Николай Куликов 2 months ago 0

usually in server rooms of datacenter row has name, but in glpi you can set only number. Will it be changed?

0

Asset tag modify

yair 2 months ago 0

I'm having issues trying to modify tags on assets I get from the GLPI agent.

Some agents didn't report any tag or, for example, there are some mispelled ones, and I would like to modify them.

is there any way to do it?

Thanks.

0

Search by MacAddress

Michele 2 months ago 0

Hello everyone,

I would like to propose a possible feature implementation for GLPI's search function. Currently, I'm using GLPI to manage my network inventory, which includes several switches discovered and inventoried via GLPI agents. These switches provide detailed information about connected devices, including their MacAddresses.

It would be extremely useful to extend GLPI's search functionality to include MacAddresses, both those of assets in the main inventory and those of devices connected to switches. This would allow for:

- Quickly locating a device: by simply entering its MacAddress in the search bar.
- Tracking devices on the network: even when they are not present in the main inventory.
- Simplifying troubleshooting activities: by quickly identifying the physical location of a device based on its MacAddress.

Does anyone know if there is a plugin, or an existing search filter that can be used to search for a MacAddress within Glpi?

I hope this proposal will be taken into consideration. 



Best regards,
Michele

0

use HTTP_CLIENT_IP over REMOTE_ADDR toolbox.php

eduardotv 2 months ago 0

in toolbox.php


public static function getRemoteIpAddress()

{

if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {

$ipList = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);

return trim($ipList[0]); // Pega o primeiro IP da lista

} elseif (!empty($_SERVER['HTTP_CLIENT_IP'])) {

return $_SERVER['HTTP_CLIENT_IP'];

} else {

return $_SERVER['REMOTE_ADDR'];

}

}

0

Global search improvement

Martina Luna 2 months ago 0

It occurred to me to be able to filter the modules returned by the global search.

For example, when we search for a ticket in the global search, it returns data from other modules, related to the keyword we mainly use.

Thanks

Regards