Search found 928 matches

by myVesta
Mon Oct 05, 2020 11:33 pm
Forum: General discussion
Topic: phpmyadmin opens blank page
Replies: 1
Views: 1443

Re: phpmyadmin opens blank page

by myVesta
Thu Oct 01, 2020 1:04 pm
Forum: General discussion
Topic: Mail server error
Replies: 2
Views: 1524

Re: Mail server error

by myVesta
Thu Oct 01, 2020 2:14 am
Forum: PHP
Topic: How to install multi PHP versions
Replies: 42
Views: 160805

Re: How to install multi PHP versions

soptec wrote: Wed Sep 30, 2020 6:11 pm Hi, ¿is possible configure multiphp to php 5.4? . Thanks
Unfortunately, no.
by myVesta
Thu Oct 01, 2020 2:09 am
Forum: Backup
Topic: Limiting number of remote backups
Replies: 6
Views: 6789

Re: Remote backup schedule

The only thing you can do is to limit number of remote backups that will be kept remotely. echo "ONLY_ONE_FTP_BACKUP='yes'" >> /usr/local/vesta/conf/vesta.conf or echo "KEEP_N_FTP_BACKUPS=1" >> /usr/local/vesta/conf/vesta.conf That way only last backup will be on remote backup. O...
by myVesta
Tue Sep 29, 2020 10:46 am
Forum: ClamAV
Topic: clamav-daemon service failed
Replies: 2
Views: 4575

Re: clamav-daemon and logrotate services failed

Probably too low free memory in RAM (2GB RAM is not enough to run ClamAV), so Kernel OOM Killer killed IT in order to free the RAM, you can find that event in /var/log/syslog (if you have a clue what day it happened) If you are not using that server for receving email, I suggest you to turn off Clam...
by myVesta
Tue Sep 29, 2020 1:21 am
Forum: General discussion
Topic: phpMyAdmin don't work
Replies: 1
Views: 1606

Re: phpMyAdmin don't work

Probably before 10 days you opened:

Code: Select all

https://your-server-host-name.com/phpmyadmin/
and today you opened

Code: Select all

https://your-domain.com/phpmyadmin/
Please see viewtopic.php?f=8&t=37
by myVesta
Sat Sep 26, 2020 4:48 pm
Forum: PHP
Topic: Apache-less variant with PHP 7.4 or greater
Replies: 13
Views: 13452

Re: General inquiries

Manually. I mean, it's not 'update' because many other PHP software strictly require php7.3 and does not works with php7.4, so it's bad idea to install 7.4 instead of 7.3. Debian10 packages are based on php7.3, for example Roundcube webmail. So, we will probably wait Debian11 if we expect php7.4 to ...
by myVesta
Sat Sep 26, 2020 12:55 pm
Forum: PHP
Topic: Apache-less variant with PHP 7.4 or greater
Replies: 13
Views: 13452

Re: Apache-less variant with PHP 7.4

Well, in default myVesta variant (with Apache), you would just need to follow instructions from https://forum.myvestacp.com/viewtopic.php?f=18&t=52 in order to install php7.4 Then you can easily "avoid Apache" and make nginx poining directly to php-fpm by following this tutorial - http...
by myVesta
Sat Sep 26, 2020 12:34 pm
Forum: Installation
Topic: RAM usage of myVesta services
Replies: 5
Views: 7094

Re: RAM usage of myVesta services

Anyway, to see how much myVesta nginx+php-fpm uses RAM, first stop distribution's nginx and php-fpm: systemctl --full --type service --all | grep "php...-fpm" | awk '{print $1}' | xargs systemctl stop systemctl stop nginx Now only myVesta nginx and php-fpm are active, and you can do measur...