aboutsummaryrefslogtreecommitdiffstats
path: root/deskutils/sugarcrm/files/pkg-message.in
diff options
context:
space:
mode:
Diffstat (limited to 'deskutils/sugarcrm/files/pkg-message.in')
-rw-r--r--deskutils/sugarcrm/files/pkg-message.in39
1 files changed, 20 insertions, 19 deletions
diff --git a/deskutils/sugarcrm/files/pkg-message.in b/deskutils/sugarcrm/files/pkg-message.in
index 3ae53e31accd..185f4772a94e 100644
--- a/deskutils/sugarcrm/files/pkg-message.in
+++ b/deskutils/sugarcrm/files/pkg-message.in
@@ -3,33 +3,34 @@
Notes:
1. SugarCRM requires that you increase the default PHP memory limit from
- 8Mb to 10Mb in the php.ini file. You should edit this file and ensure
- that the memory_limit parameter should be set to 10Mb or greater:
+ 8Mb to 32Mb in the php.ini file. You should edit this file and ensure
+ that the memory_limit parameter should be set to 32Mb or greater:
-memory_limit = 10M ; Maximum amount of memory a script may consume
+memory_limit = 32M ; Maximum amount of memory a script may consume
-2. In order to get Apache or your preferred web server to recognise
- SugarCRM's location on your disk, you'll need to put the following line
- (or the equivalent) into the web server configuration:
+2. SugarCRM requires the following two parameters to be set in your php.ini.
-Alias "/sugarcrm" "%%PREFIX%%/%%SUGARCRMDIR%%"
+allow_call_time_pass_reference = Off
+safe_mode = Off ; disable "safe mode"
-3. If you're installing SugarCRM on your system for the first time, in
- order to complete installation, please point your browser to
- http://localhost/sugarcrm/ and set up your database and configuration
- parameters. Once you have finished the installation procedure, you
- should remove the installation directory and make the SugarCRM
- configuration file (config.php) non writable. You can do these things
- be executing the following commands:
+ While SugarCRM will work (albeit inefficiently) with
+ allow_call_time_pass_reference enabled, safe_mode must be disabled to
+ allow the system to work at all. For more information on why these
+ parameters are unnecessary, please see the PHP manual.
-chown root:wheel %%PREFIX%%/%%SUGARCRMDIR%%/config.php
+2. In order to get Apache or your preferred web server to recognise
+ SugarCRM's location on your disk, you'll need to put the following line
+ (or the equivalent) into the web server configuration:
-4. If you are upgrading SugarCRM from a previous version, please follow the
- instructions in %%DOCSDIR%%/UPGRADE-FreeBSD.txt.
+Alias /sugarcrm %%PREFIX%%/%%SUGARCRMDIR%%
+<Directory %%PREFIX%%/%%SUGARCRMDIR%%>
+ Order allow,deny
+ Allow from all
+</Directory>
-5. Please see the documentation directory (%%DOCSDIR%%)
+3. Please see the documentation directory (%%DOCSDIR%%)
for full documentation on how to get the best out of SugarCRM.
-6. Enjoy!
+4. Enjoy!
##