Wordpress & Git, urgent permissions issues, need help...


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) Wordpress & Git, urgent permissions issues, need help...
# 1  
Old 02-22-2011
Wordpress & Git, urgent permissions issues, need help...

Heya,
So I recently upgraded my MacBook to a solid state drive, during the re-install of Snow Leopard I chose to abandon MAMP and use the built in Apache & PHP and in doing so moved my ~/Sites to /Library/WebServer/Documents from a Time Machine backup. During this transition the permissions were changed (I expected that but didn't change them directly).
All of the sudden Wordpress couldn't write to various places such as .htaccess, wp-content/uploads, wp-content/plugins, etc... So I changed the user and group to _www:_www correcting that issue, but then Git couldn't write to it's own directory.

At this point my permissions are spencerhill:staff 755 for folders and 644 for all files. And I'm completely confused as to how to untangle everything so it's set it the appropriate default user, group and symbolic privileges preventing me from doing any work. Please help!

Thank you!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Xalan & Xerces issues for Oracle Linux 6.6 & Solarisstudio12.3 C++ compiler for Linux

Hi Team, I am facing issue while using Xalan & Xerces for my application. Below are my environment details i am using :- Platform:- Oracle Linux 6.6 Compiler :- solarisstudio12.3 C++ compiler for Linux Below are the versions of Xalan & Xerces source code used to build the shared object... (0 Replies)
Discussion started by: agrachirag
0 Replies

2. UNIX Desktop Questions & Answers

Web Server/Permissions issues.

I do not know if this is the correct place to post this, and I have tried to trawl through relevant articles to fix the issue, but I am stumped. I have a server, log as root. var/www is root:root var/www/website-one is root:root var/www/website-one/neosmart-stream is root:root This... (10 Replies)
Discussion started by: LightCastle
10 Replies

3. UNIX for Dummies Questions & Answers

Permissions Issues FTP server

Hi all, Quick question, im going to find this a bit hard to explain but ill give it a go. Basically i have an admin account on an FTP server that i want to be able to control ALL files without having to use sudo (as i need to run cron scripts to move files that are owned by a number of... (2 Replies)
Discussion started by: mokachoka
2 Replies

4. Red Hat

Issues with LDAP user/group permissions on NFS share

I can't seem to make sense of this. $ cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.2 Beta (Tikanga) $ $ mount /dev/sda2 on / type ext3 (rw) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) /dev/sda1 on... (6 Replies)
Discussion started by: dfinn
6 Replies

5. UNIX for Dummies Questions & Answers

Permissions & Webhosting

I just setup a Fedora10 box. I used yum to install : httpd php mysql mysql-server php-mysql Then I went out to wordpress (blogging software) and installed wordpress in /etc/httpd/wordpress I imported my wordpress database into mysql and its all working. Except for a few things. When I... (2 Replies)
Discussion started by: flood
2 Replies

6. Solaris

nslookup issues urgent

bwadmin@as1$ nslookup as2.synapse.com *** Can't find server name for address 192.168.0.16: No response from server *** Can't find server name for address 192.168.0.17: No response from server *** Default servers are not available /etc/resolv.conf have already 192.168.0.16/17 defined. I... (2 Replies)
Discussion started by: sandeepsudeep
2 Replies

7. HP-UX

To give the "unzip" permissions & "create" file permissions

Hi, I am a Unix Admin. I have to give the permissions to a user for creating new file in a directory in HP-Ux 11.11 system since he cannot able to create a new file in the directory. Thanks in advance. Mike (3 Replies)
Discussion started by: Mike1234
3 Replies

8. Shell Programming and Scripting

shell script performance issues --Urgent

I need help in awk please help immediatly. This below function is taking lot of time Please help me to fine tune it so that it runs faster. The file count is around 3million records # Process Body processbody() { #set -x while read line do ... (18 Replies)
Discussion started by: icefish
18 Replies

9. UNIX for Dummies Questions & Answers

problem with rdist & permissions

I have a .rdist & .sh files. shell script contains code like this rdist -h -f <rdist file> when this script executed i am getting the following error. rdist:<full path of files>: Permission denied. I verified the folder on the other system by connecting FTP.It doesn't has write... (0 Replies)
Discussion started by: Mar1006
0 Replies

10. UNIX for Dummies Questions & Answers

Permissions issues

I'm hoping this is a pretty simple question. I have a problem were memebers of a group can't delete or overwrite a file. The box is setup several users all part of the same group. Now default umask is 002. The problem I run into is there are processes that add to, del, and over write files. ... (3 Replies)
Discussion started by: lightspd
3 Replies
Login or Register to Ask a Question
Git::SVN::Editor(3)					User Contributed Perl Documentation				       Git::SVN::Editor(3)

NAME
Git::SVN::Editor - commit driver for "git svn set-tree" and dcommit SYNOPSIS
use Git::SVN::Editor; use Git::SVN::Ra; my $ra = Git::SVN::Ra->new($url); my %opts = ( r => 19, log => "log message", ra => $ra, config => SVN::Core::config_get_config($svn_config_dir), tree_a => "$commit^", tree_b => "$commit", editor_cb => sub { print "Committed r$_[0] "; }, mergeinfo => "/branches/foo:1-10", svn_path => "trunk" ); Git::SVN::Editor->new(\%opts)->apply_diff or print "No changes "; my $re = Git::SVN::Editor::glob2pat("trunk/*"); if ($branchname =~ /$re/) { print "matched! "; } DESCRIPTION
This module is an implementation detail of the "git svn" command. Do not use it unless you are developing git-svn. This module adapts the "SVN::Delta::Editor" object returned by "SVN::Delta::get_commit_editor" and drives it to convey the difference between two git tree objects to a remote Subversion repository. The interface will change as git-svn evolves. DEPENDENCIES
Subversion perl bindings, the core Carp and IO::File modules, and git's Git helper module. "Git::SVN::Editor" has not been tested using callers other than git-svn itself. SEE ALSO
SVN::Delta, Git::SVN::Fetcher. INCOMPATIBILITIES
None reported. BUGS
None. perl v5.16.3 2013-06-10 Git::SVN::Editor(3)