Help

Installing phpMyAdmin in BitrixVM

For phpMyAdmin installation on VDS with the Bitrix 7 operating system, follow these steps:

1. Install phpMyAdmin:

yum install -y phpmyadmin

2. Create a symbolic link to the phpMyAdmin directory in the main site directory:

ln -s /usr/share/phpMyAdmin /home/bitrix/www/phpmyadmin

3. Open the Apache configuration file (you can also use the nano editor, see below):

vim /etc/httpd/bx/conf/default.conf

4. Add the following code before the line ErrorLog logs/error_log:

<Directory /home/bitrix/www/phpmyadmin>
php_admin_value mbstring.func_overload 0
</Directory>

5. Save the file with the changes and restart the web server:

systemctl restart httpd

Additional information on working with the vim editor can be found, for example, here.

If you prefer, you can also use the nano editor instead of vim by installing it with the following command:

yum install -y nano

Have more questions about Hosting?