-
Pandora Console in Windows
It works perfect, but you have to change some of the code because it is written thinking about the directory structure of *X Operating Systems.
First, to see correctly the text in “Last Contact” graphics, you should change in file %CONSOLE_PATH%includeconfig.php, the line
$config_fontpath = “/usr/share/fonts/truetype/msttcorefonts/arial.ttf”;
to
$config_fontpath = “c:windowsfontsarial.ttf”; (for example, it depends on OS version)
If you want to attach a file in the indicents page, there are two changes:
First: in file %CONSOLE_PATH%includeconfig.php
change line
$attachment_store=”/var/www/pandora/”;
to
$attachment_store=”C:apachehtdocspandora”, for example. This is the directory root of Pandora Console
Second, change in file %CONSOLE_PATH%incidentsincident_detail.php
the line
unlink ($attachment_store.”attachment/pand”.$file_id.”_”.$filename);”
to
unlink ($attachment_store.”attachmentpand”.$file_id.”_”.$filename);”
Good Luck with Windows 😀
Raúl
Sorry, there were no replies found.