Those folders need to have 777 (0777) permissions so that your members can upload image files or document/PDF files to those directories.
What you need to do is, as you suggest, disallow any executable files from being run from those directories.
For those directories ONLY, create an .htaccess file with these lines as content (or add them to the top of the existing .htaccess file):
Code:
Options +FollowSymLinks
Options All -Indexes
<Files ~ "\.(php\d*|cgi|pl|phtml)$">
order allow,deny
deny from all
</Files>