From be74864193c0e6e17a0cfcfbd511b3e5510eda3d Mon Sep 17 00:00:00 2001 From: bradymiller Date: Fri, 27 Feb 2009 00:32:15 +0000 Subject: [PATCH] instruction clarifications --- INSTALL | 3 ++- setup.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 5d5d49557..c4f7d831d 100644 --- a/INSTALL +++ b/INSTALL @@ -178,7 +178,8 @@ on the operating system. In linux, php.ini is generally found in the /etc/ directory. In windows, the XAMPP 1.7.0 package places the php.ini file in the xampp\apache\bin\ directory. To ensure proper functioning of OpenEMR you must make sure that settings in the php.ini file include "display_errors = -Off", "register_globals = Off", "magic_quotes_gpc = Off", and "memory_limit" +Off", "register_globals = Off", "magic_quotes_gpc = Off", "max_execution_time" set +to at least 60, "max_input_time" set to at least 90 , and "memory_limit" set to at least "128M". In order to take full advantage of the patient documents capability you must make sure that settings in php.ini file include "file_uploads = On", that "upload_max_filesize" is appropriate for diff --git a/setup.php b/setup.php index 8a612d4df..e7466cbb4 100644 --- a/setup.php +++ b/setup.php @@ -577,7 +577,7 @@ if (version_compare(PHP_VERSION, '5.2.4', '>=')) { $gotFileFlag = 1; } } -echo "
  • To ensure proper functioning of OpenEMR you must make sure that settings in php.ini file include \"display_errors = Off\", \"register_globals = Off\", \"magic_quotes_gpc = Off\", and \"memory_limit\" set to at least \"128M\".
  • \n"; +echo "
  • To ensure proper functioning of OpenEMR you must make sure that settings in php.ini file include \"display_errors = Off\", \"register_globals = Off\", \"magic_quotes_gpc = Off\", \"max_execution_time\" set to at least 60, \"max_input_time\" set to at least 90, and \"memory_limit\" set to at least \"128M\".
  • \n"; echo "
  • In order to take full advantage of the patient documents capability you must make sure that settings in php.ini file include \"file_uploads = On\", that \"upload_max_filesize\" is appropriate for your use and that \"upload_tmp_dir\" is set to a correct value that will work on your system.
  • \n"; if (!$gotFileFlag) { echo "
  • If you are having difficulty finding your php.ini file, then refer to the 'INSTALL' manual for suggestions.
  • \n"; -- 2.11.4.GIT