l connected to my server via ssh. when l wget latest wordpress.tar.gz from wordpress.org, l am using tar -zxvf latest.tar.gz and l cant start default wordpress installation, and when l reach it says 500 errors.. how can l untar .tar.gz files with its default permissions ? thanks..
Hello there, It sounds like you have the owner incorrect. Are you downloading the file with the root user, then placing them in another users account? You can chown the files to the correct user if this is the case. Chris
try -p for --preserve-permissions but you can always use chown to change the ownership later ... give -R option with chown to change ownership recursively.