Hello,
I am trying to install SuiteCRM onto my server. I am using rackspace. I am having trouble, and have gotten to point 15 following the instructions for: Performing a typical installation of SuiteCRM - https://suitecrm.com/wiki/index.php/Installation#PHP_version.
I found that FollowSymLinks has been deprecated, therefore I’ve done some research online. People suggested changing this to SymLinksIfOwnerMatch. However I am getting the error: No input file specified when trying to load the index.php page.
This is what I have in the .htaccess file:
BEGIN SUGARCRM RESTRICTIONS
RedirectMatch 403 (?i)..log$
RedirectMatch 403 (?i)/+not_imported_..txt
RedirectMatch 403 (?i)/+(soap|cache|xtemplate|data|examples|include|log4php|metadata|modules)/+.*.(php|tpl)
RedirectMatch 403 (?i)/+emailmandelivery.php
RedirectMatch 403 (?i)/+upload
RedirectMatch 403 (?i)/+custom/+blowfish
RedirectMatch 403 (?i)/+cache/+diagnostic
RedirectMatch 403 (?i)/+files.md5$
END SUGARCRM RESTRICTIONS
# Options +FollowSymLinks Options +SymLinksIfOwnerMatch RewriteEngine On # RewriteBase /#new code
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
Can someone point me in the right direction please? Thank you