For whatever reason my cache folders have 775 permissions, but my files have 600. I am using suPHP and have seen that this is an issue that comes up on occasion and it usually results in a patch to the module:
+ // Set standard file permissions for webserver-generated files
+ @chmod($destination, 0664);
Do you think this is the case here as well?
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | boost-493764.patch | 900 bytes | mikeytown2 |
Comments
Comment #1
mikeytown2 commentedPut that into boost_cache_write()
Before
After
Is something like this what your proposing?
Comment #2
mikeytown2 commentedComment #3
doughold commentedThat looks like what I need, thanks! I will test it out tonight and let you know.
Comment #4
mikeytown2 commentedcommitted.
Please post if the above patch doesn't fix the issue.
Comment #5
doughold commentedThat did the trick, thanks!