<html>
<head>
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div class="moz-cite-prefix">On 05/14/2017 04:22 PM, Richard Barker
wrote:<br>
</div>
<blockquote
cite="mid:01e002df-d33f-674c-71b1-ffe72bb15f95@probass.com"
type="cite">
<meta http-equiv="content-type" content="text/html;
charset=windows-1252">
<p>Command for chmod for All php files I have tried chmod 644 -R
*.php but did not work.<br>
I got a worpdress site for another hosting company like host
monster and all files are set at 777<br>
trying to set to 644</p>
<p>RC<br>
</p>
<br>
</blockquote>
<br>
<i>find /path/to/site/ -name "*.php" -exec chmod 644 \{} \;</i><br>
<br>
should do what you want. Try first without the -exec part to see if
you come up with the files that you want to chmod.<br>
<br>
HTH<br>
</body>
</html>