Your webserver runs under a user account, on OS X 10.6 that user is _www and the group is also _www
WordPress needs the owner and/or group of the web server to match the owner and/or group of the files -- which is your user account.
First, open your Terminal. Find your username and group by typing: id
You should see output like:
uid=503(gabrielk) gid=20(staff) groups=20(staff),[a bunch of others]
Note the first two values in parenthesis. This is your user and group.
Next editing your Apache config and set it to run as your user & group. In the Terminal type: sudo nano /Applications/XAMPP/etc/httpd.conf
(In a default OS X install not running XAMPP, you would type: sudo nano /etc/apache2/httpd.conf
)
Find this section (this is from the default httpd.conf in OS X, the one in XAMPP may be slightly different but the config values will be the same):
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User _www
Group _www
Change the user and group to match yours. In my case:
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User gabrielk
Group staff
Save, then restart Apache. In a default OS X install that would be: sudo apachectl restart
WordPress should not give you any trouble after that. Note, however, that you may need to repeat these steps next time you update OS X.