freebsd-ports/deskutils/sugarcrm/files/pkg-message.in
Wen Heping 196a9637e3 - Update to 6.5.15
- Support stage build
- Remove article from COMMENT
- Fix typo in pkg-message.in
2013-10-03 14:17:24 +00:00

42 lines
1.3 KiB
Text

##
Notes:
1. Sugar Community Edition requires that you increase the default PHP
memory limit from 8Mb to 64Mb in the php.ini file. You should edit this
file and ensure that the memory_limit parameter should be set to 64Mb or
greater:
memory_limit = 64M ; Maximum amount of memory a script may consume
2. Sugar Community Edition requires the following three parameters to be set
in your php.ini.
allow_call_time_pass_reference = Off
safe_mode = Off ; disable "safe mode"
session.save_path = "/tmp"
While Sugar Community Edition 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.
3. In order to get Apache or your preferred web server to recognise Sugar
Community Edition's location on your disk, you'll need to put the
following line (or the equivalent) into the web server configuration:
Alias /sugarcrm %%WWWDIR%%
<Directory %%WWWDIR%%>
AllowOverride None
Order allow,deny
Allow from all
</Directory>
4. For full information on how to get the best out of Sugar Community
Edition, please see the documentation on the web:
http://www.sugarforge.org/content/documentation/
5. Enjoy!
##