Search found 938 matches

by myVesta
Thu Jul 25, 2024 6:51 pm
Forum: PHP
Topic: How to install multi PHP versions
Replies: 48
Views: 184901

Re: How to install multi PHP versions

brain8torm wrote: Thu Jul 25, 2024 12:45 pm Hi! I installed myVesta for the first time on VDS c Debian 12.6. I try to install Multi PHP and get such errors. I'm attaching a screenshot. How to solve this problem?
I just checked, and everything went fine.
Run apt update and paste output here; maybe you have an old sury signing key.
by myVesta
Mon Jul 22, 2024 10:55 am
Forum: General discussion
Topic: PHP-FPM and non-ASCII domain
Replies: 3
Views: 245

Re: PHP-FPM and non-ASCII domain

domain.rf.apache2.conf domain.rf.apache2.ssl.conf domain.rf.nginx.conf domain.rf.nginx.ssl.conf will be overwritten when something gets changed in the configuration of domain, even when LetsEncrypt renewing occur. I suggest you remove the domain, check /etc/bind/named.local to ensure that empty quot...
by myVesta
Thu Jun 20, 2024 10:05 pm
Forum: Mail
Topic: Setup authenticated SMTP users to send emails from second IPv4
Replies: 0
Views: 959

Setup authenticated SMTP users to send emails from second IPv4

In SSH, as root, run: v-make-separated-ip-for-email "your-second.hostname.com" "YOUR-SECOND-IP" "NETMASK" "NetworkInterface" Your second hostname should point to your second IP YOUR-SECOND-IP is something like 123.123.123.123 - it's PTR record should point bac...
by myVesta
Mon Jun 03, 2024 11:45 am
Forum: Virtualization
Topic: How to install Docker on Debian
Replies: 2
Views: 6713

Re: How to install Docker on Debian

Tutorial for old Deban 10: sudo apt update sudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian ...
by myVesta
Mon May 27, 2024 2:18 pm
Forum: PHP
Topic: How to install multi PHP versions
Replies: 48
Views: 184901

Re: How to install multi PHP versions

debirose55 wrote: Sun May 26, 2024 4:54 am Will updating to a new PHP version affect existing web templates,download lagu or will it only add new features? Thank you.
It will NOT affect existing templates and PHP versions; it will only add new ones.
by myVesta
Fri May 10, 2024 4:01 pm
Forum: nginx templates
Topic: How to create a custom nginx template
Replies: 1
Views: 1782

Re: How to create a custom nginx template

Code: Select all

cd /usr/local/vesta/data/templates/web/nginx
cp hosting.tpl mycustom.tpl
cp hosting.stpl mycustom.stpl
by myVesta
Wed Apr 10, 2024 6:47 pm
Forum: Mail
Topic: How to empty all Trash and Spam folders
Replies: 0
Views: 2012

How to empty all Trash and Spam folders

In SSH, as 'root', run: USER='*' # enter user if you don't want * users (*=all) DOMAIN='*' # enter domain if you don't want * domains (*=all) MAILACC='*' # enter mail account if you don't want * mail accounts (*=all) find /home/$USER/mail/$DOMAIN/$MAILACC/.Spam/new/ -type f -delete find /home/$USER/...
by myVesta
Wed Apr 10, 2024 3:15 pm
Forum: Linux tutorials
Topic: How to find the largest files/folders on the server
Replies: 0
Views: 2535

How to find the largest files/folders on the server

To find the largest files on the server: Logged in as 'root', in your SSH console run: find / -type f -ls 2>/dev/null | grep -v ' /proc/\| /var/lib/\| /boot' | awk '{print $7" "$5":"$6" ("$9"."$8"/"$9":"$10") "$11 $12 $13 $14 $15 ...
by myVesta
Tue Apr 09, 2024 10:48 am
Forum: Bash
Topic: Automatic WordPress installing (v-install-wordpress)
Replies: 6
Views: 48150

Re: Automatic WordPress installing (v-install-wordpress)

Romabento wrote: Thu Apr 04, 2024 8:06 pm Hello gentlemen, Can I call the v-install-wordpress command through the api?
Yes.