A memorandum when installing PHP-made USVN that can manage Subversion on the web. Using USVN, you can create repositories, manage users/groups, and set permissions for each folder from the web management screen. Environment: CentOS 8.1, Apache 2.4.37, PHP 7.3.5, USVN 1.0.9 1. Install PHP7 php module list # dnf module list php install php7.3 # dnf module install php:7.3/common Install other PHP modules # dnf install php-mysqlnd php-gd From CentOS8, php-fpm is used by default instead of Apache module. Start, automatic start ON, confirmation # systemctl start php-fpm # systemctl enable php-fpm # systemctl list-unit-files -t service | grep php-fpm # php –version Check if the execution user is apache # less /etc/php-fpm.d/www.conf Check php.conf # less /etc/httpd/conf.d/php.conf Apache reload # apachectl configtest # systemctl reload httpd Create php file for confirmation # vi /var/www/html/index.php Enter the IP address in the browser and check if it is displayed.……

Read more →