Any help please.

Post by fodde » Sun Aug 15, 2010 2:45 pm
Post by guilliam » Tue Aug 31, 2010 5:19 pm
Post by raeldc » Thu Sep 09, 2010 5:05 am
Post by sthadd » Mon Jan 05, 2015 3:05 pm
Code: Select all
chmod 775 joomlawebsitedirectory
chown -R ftpuser:www-data joomlawebsitedirectory
Code: Select all
for file in $(find .); do if [ -f $file ]; then echo "$file" is a file; chmod 664 $file; elif [ -d $file ]; then echo $file is a directory; chmod 775 $file; else echo "wtf"; fi; done
Post by Per Yngve Berg » Mon Jan 05, 2015 4:45 pm
Return to “International Support Center”
© 2005 - 2021 Open Source Matters, Inc. All Rights Reserved.