drivetimenz New Member Online I Love YaBB! for 21 years now Posts: 8 Location: New Zealand Joined: Jun 13th, 2026 Gender: Re: permissions issues Reply #5 - yesterday at 10:43am Mark & QuoteQuote rather than set everything to 0777 & 0666 use this... if you're unable to do this yourself i can do it for you but i will charge, while i'm there i will change every instance of yabbforum.com to yabbforumsoftware.com as well (there's a lot) even on this board and that's not a good look Code # Add user to apache or www-data group # On RHEL/AlmaLinux/CentOS: usermod -aG yourusername apache # On Debian/Ubuntu: usermod -aG yourusername www-data # 1. Set the owner to your SSH user, and the group to your primary group chown -R yourusername:yourusername /path/to/userdir # 1.1 restart apache # rhel systemctl restart httpd # debian systemctl restart apache2 # 1.2 cd to forum/dir # 2. Set standard secure permissions (775 for folders, 664 for data files) find . -type d -exec chmod 775 {} + find . -type f -exec chmod 664 {} + # 3. Apply the SGID bit to directories # This forces all NEW files created by YaBB/Apache to inherit your group! find . -type d -exec chmod g+s {} + # 4. Apply Default ACLs (Access Control Lists) # This forces all NEW files to automatically get group read/write (664/775) # overriding any restrictive defaults hardcoded into older scripts. find . -type d -exec setfacl -d -m g::rwx {} + find . -type d -exec setfacl -d -m g::rw {} + # 5. Restore execute permissions to the Perl scripts so they can run find . -name "*.pl" -exec chmod +x {} + find . -name "*.cgi" -exec chmod +x {} + « Last Edit: Today at 8:11am by drivetimenz » IP Logged
drivetimenz New Member Online I Love YaBB! for 21 years now Posts: 8 Location: New Zealand Joined: Jun 13th, 2026 Gender: Re: permissions issues Reply #4 - yesterday at 10:43am Mark & QuoteQuote last 1, unbeleivable IP Logged
drivetimenz New Member Online I Love YaBB! for 21 years now Posts: 8 Location: New Zealand Joined: Jun 13th, 2026 Gender: Re: permissions issues Reply #3 - yesterday at 10:43am Mark & QuoteQuote msg 4 IP Logged
drivetimenz New Member Online I Love YaBB! for 21 years now Posts: 8 Location: New Zealand Joined: Jun 13th, 2026 Gender: Re: permissions issues Reply #2 - yesterday at 10:43am Mark & QuoteQuote msg 3 : IP Logged
drivetimenz New Member Online I Love YaBB! for 21 years now Posts: 8 Location: New Zealand Joined: Jun 13th, 2026 Gender: Re: permissions issues Reply #1 - yesterday at 10:42am Mark & QuoteQuote msg 2 IP Logged
drivetimenz New Member Online I Love YaBB! for 21 years now Posts: 8 Location: New Zealand Joined: Jun 13th, 2026 Gender: permissions issues Yesterday at 10:42am Mark & QuoteQuote msg 1 IP Logged