Solved [Solved] Samba: Can see the folders but cannot access them

Thank you for your time to read this and sorry for wasting your time. I recently set up Samba, and I am able to see the computer and the folders I am currently trying to share. After logging in, it doesn't let me access the folders. Any help would be appreciated. My smb.conf is as follows:
Code:
 [global]
   passdb backend = tdbsam
   domain logons = No
   domain master = No
   security = user
   usershare allow guests = No

   workgroup = WORKGROUP


   [Media]
   comment = share1
   path = /media/share1
   valid users = eminent
   writeable = yes
   browseable = yes
 
Re: Samba: Can see the folders but cannot access them

Nevermind I figured it out, I had to add the script below and it worked perfectly. Thank you for your time

Code:
 create mask = 0770

force create mode = 0770

locking = yes
 
Back
Top