Displaying 3 results from an estimated 3 matches for "wpuser".
Did you mean:
puser
2017 Dec 04
1
Apache and web content permissions
...---
#!/bin/bash
#
# wordpress-update.sh
#
# Mise ? jour automatique de toutes les installations Wordpress
#
# (c) Nicolas Kovacs <info at microlinux.fr>
# WP-CLI doit ?tre install?
WP='/usr/local/bin/wp'
# Apache
HTUSER='apache'
HTGROUP='apache'
# Utilisateur normal
WPUSER='microlinux'
WPGROUP='microlinux'
# Racine du serveur Web
WPROOT='/var/www'
# Identifier les installations Wordpress
WPDIRS=$(dirname $(cd $WPROOT && find . -type f -name 'wp-config.php'))
for WPDIR in $WPDIRS; do
cd $WPROOT
# D?finir les permissions c...
2017 Dec 02
5
Apache and web content permissions
Le 02/12/2017 ? 14:19, Leon Fauster a ?crit :
> I would build a rpm package of wordpress (everything can be defined
> there like permissions etc)
The initial question was: WHAT permissions?
> and disabling the automatic update
> function in wordpress. Build once it can be installed on all (two
> dozen) webservers automagically (local yum repository) ... externe
That would mean
2002 Nov 11
0
new to samba, please advise...
...to work.
/home/httpd/html/wp
create samba share in /etc/smb.conf
[global]
workgroup = YourWorkGroup
security = share
smb passwd file = /etc/smbpasswd
encrypt passwords = yes
netbios name = NameOfThisComputer
[WordPerfectDocs]
path=/home/httpd/html/wp
user=wpuser
volume = WordPerfectDocs
browseable = yes
writable = yes
create the user wpuser on the linux box, and give a
smb password using smbpasswd -a wpuser
start samba using service smb start
when I tried this, everything got messed up. Anyone
have any suggestions?
Thank you,
C Bud...