modifying htaccess for localhost with a custom port

To be honest, I’d change my .conf file to state the correct port if you’ve got access to that. For instance. <VirtualHost *:8012> ServerAdmin webmaster@localhost DocumentRoot /var/www/LOCATION OF FILES <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/LOCATION OF FILES> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> Then i’d restart … Read more

wp-cli core install unknown: fatal: file /etc/postfix/main.cf: parameter mail_owner: user postfix has same user ID as _postfix

Postfix is a free and open-source mail transfer agent that routes and delivers electronic mail, when you get an error like this: unknown: “fatal: file /etc/postfix/main.cf: parameter mail_owner: user postfix has same user ID as _postfix it typically means you need to fix some configuration inside of /etc/postfix/main.cf. If you do not plan on ever … Read more