Here the steps on how I successfully installed sugarCRM on my Amahi 5.1 Fedora12.
- create a web app "sugar" (don't use sugarcrm)
- download the last sugarcrm tar (http://www.sugarforge.org/frs/download. ... -5.5.0.zip)
- unzip the content in /var/hda/web-apps/sugar/html
- modify the welcome.php in /var/hda/web-apps/sugar/html/install
Code: Select all
ORIGINAL:
if (version_compare(phpversion(),'5.1.0') < 0 || version_compare(phpversion(),'5.3.0') >= 0) {
if(empty($mod_strings['LBL_MINIMUM_PHP_VERSION'])){
$mod_strings['LBL_MINIMUM_PHP_VERSION'] = 'Minimum Php version required is 5.1.0. Recommended Php version is 5.2.x.';
}
CHANGED TO:
if (version_compare(phpversion(),'5.1.0') < 0 || version_compare(phpversion(),'5.3.2') >= 0) {
if(empty($mod_strings['LBL_MINIMUM_PHP_VERSION'])){
$mod_strings['LBL_MINIMUM_PHP_VERSION'] = 'Minimum Php version required is 5.1.0. Recommended Php version is 5.2.x.';
}
- remove (or comment) everything in the .htaccess file
- chown -R /var/hda/web-apps/sugar/html/
- create a user "sugarcrm" in php my admin with PASSWORD and create a table sugarcrm with it (all privileges on that table)
- go to http://sugar and fill in the details (sugarcrm, localhost, sugarcrm, PASSWORD) (I think, just check)
You're done ! Envoy!
PS: see my other threads on how to get Sabnzbd and Asterisk+Freepbx working on Amahi Fedora12!