2008-08-29 Sancho Lerena <slerena@artica.es>
* include/config.inc.php: Change defaults to avoid problems with attachments. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@629 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2440c69e5f
commit
9f3515799a
|
@ -1,9 +1,13 @@
|
||||||
|
|
||||||
|
2008-08-29 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
|
* include/config.inc.php: Change defaults to avoid problems with attachments.
|
||||||
|
|
||||||
2008-08-28 Sancho Lerena <slerena@artica.es>
|
2008-08-28 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
* pandora_console/operation/reporting/graph_viewer.php: Fixed dimensions of graph
|
* pandora_console/operation/reporting/graph_viewer.php: Fixed dimensions of graph
|
||||||
view
|
view
|
||||||
|
|
||||||
|
|
||||||
2007-08-27 Sancho Lerena <slerena@artica.es>
|
2007-08-27 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
* operation/agentes/ver_agente.php: Truncated too long agent names.
|
* operation/agentes/ver_agente.php: Truncated too long agent names.
|
||||||
|
|
|
@ -42,12 +42,13 @@ if (!isset($pandora_version))
|
||||||
//error_reporting(0); // Need to use active console at this moment
|
//error_reporting(0); // Need to use active console at this moment
|
||||||
|
|
||||||
// Display ALL errors
|
// Display ALL errors
|
||||||
error_reporting(E_ALL);
|
error_reporting(E_ERROR);
|
||||||
|
|
||||||
//This is directory where placed "attachment" directory, to upload files stores.
|
// This is directory where placed "/attachment" directory, to upload files stores.
|
||||||
// This MUST be writtable by http server user, and should be in pandora root.
|
// This MUST be writtable by http server user, and should be in pandora root.
|
||||||
// Please append "/" to the end.
|
// By default, Pandora adds /attachment to this, so by default is the pandora console home dir
|
||||||
$attachment_store=$config_homedir."/attachment/";
|
|
||||||
|
$attachment_store=$config_homedir;
|
||||||
|
|
||||||
// Default font used for graphics (a Free TrueType font included with Pandora FMS)
|
// Default font used for graphics (a Free TrueType font included with Pandora FMS)
|
||||||
$config_fontpath = $config_homedir."/reporting/FreeSans.ttf";
|
$config_fontpath = $config_homedir."/reporting/FreeSans.ttf";
|
||||||
|
|
Loading…
Reference in New Issue