Search found 932 matches

by myVesta
Tue Sep 29, 2020 1:21 am
Forum: General discussion
Topic: phpMyAdmin don't work
Replies: 1
Views: 1619

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: 13799

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: 13799

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: 7314

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...
by myVesta
Sat Sep 26, 2020 12:29 pm
Forum: Installation
Topic: RAM usage of myVesta services
Replies: 5
Views: 7314

Re: RAM usage of myVesta services

Good way to see what is holding your RAM:

Code: Select all

ps aux | awk '{print $2, $4, $11}' | sort -k2rn | head -n 20
Output will come as 3 columns that means:

Code: Select all

PID | percent of used RAM | process name
by myVesta
Thu Sep 24, 2020 3:45 pm
Forum: General discussion
Topic: Why can't I use an apostrophe in an email address
Replies: 2
Views: 1572

Re: Why can't I use an apostrophe in an email address

Actually it's here - https://github.com/myvesta/vesta/blob/m ... in.sh#L529
We must make separated function for email username check.
by myVesta
Thu Sep 24, 2020 3:25 pm
Forum: Roundcube
Topic: Roundcube Filters plugin
Replies: 1
Views: 7675

Re: Roundcube Filters plugin

Extract plugin to: /usr/share/roundcube/plugins/filters/ Screenshot_58.png Then, in SSH, as root, do: ln -s /usr/share/roundcube/plugins/filters /etc/roundcube/plugins/filters ln -s /usr/share/roundcube/plugins/filters /var/lib/roundcube/plugins/filters sed -i "s/\$rcmail_config\['plugins'\] = ...
by myVesta
Thu Sep 24, 2020 3:13 pm
Forum: Installation
Topic: RAM usage of myVesta services
Replies: 5
Views: 7314

Re: RAM usage of myVesta services

Because you measured myvesta php-fpm + standard php-fpm + myvesta nginx + standard nginx. I measured only myvesta php-fpm + myvesta nginx, because that is a topic here, to see PANEL usage, not usage of other services. Also, keep in mind that ClamAV should be stoped on VM with less than 4GB RAM, beca...