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:
slerena 2007-08-29 11:41:26 +00:00
parent 2440c69e5f
commit 9f3515799a
2 changed files with 10 additions and 5 deletions

View File

@ -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>
* pandora_console/operation/reporting/graph_viewer.php: Fixed dimensions of graph
view
2007-08-27 Sancho Lerena <slerena@artica.es>
* operation/agentes/ver_agente.php: Truncated too long agent names.

View File

@ -42,12 +42,13 @@ if (!isset($pandora_version))
//error_reporting(0); // Need to use active console at this moment
// 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.
// Please append "/" to the end.
$attachment_store=$config_homedir."/attachment/";
// By default, Pandora adds /attachment to this, so by default is the pandora console home dir
$attachment_store=$config_homedir;
// Default font used for graphics (a Free TrueType font included with Pandora FMS)
$config_fontpath = $config_homedir."/reporting/FreeSans.ttf";