Hi Brent,
<blockquote>It appears that the system is not creating the files in the same way?</blockquote>
Yes, this issue occurs with Application PDF files created if Job seeker checks the option “Attach JA JOB BOARD resume” when submitting application.
To resolve this issue, please open the
components/com_jajobboard/models/jaapplications.php file:
Replace the code line below
[PHP]@chmod(JPATH_SITE . $uploadfolder.’/applications/’.date(‘Ymdhms’) . $filename, 777);[/PHP]
With:
[PHP]@chmod(JPATH_SITE . $uploadfolder.’/applications/’.date(‘Ymdhms’) . $filename, 0644);[/PHP]
It seems that your server does not allow web user to create file with mod 0777, so when the code tried to create file with 0777, it was updated to 0000.