I am attempting to install SugarCRM on a Linux server. To successfully install, I must set the file permissions for the modules folder and all files/subdirectories to be writable. I attempted to set the directories to 777 and the files to 755 using the following code:
It ran without any error messages; however, when I checked the install process for SugarCRM, it told me that my Modules directory was still not set up right (not everything was writable). Can anyone give me guidance how to get where I need to go?
MrsBean
Code:
<?php
system( 'find /hsphere/local/home/mrsburns/sugar.burnsidebiz.net/modules -type f | xargs
chmod 777' );
system( 'find /hsphere/local/home/mrsburns/sugar.burnsidebiz.net/modules -type d | xargs
chmod 777' );
?>
<h1>All Done</h1>
It ran without any error messages; however, when I checked the install process for SugarCRM, it told me that my Modules directory was still not set up right (not everything was writable). Can anyone give me guidance how to get where I need to go?
MrsBean