I'm not able to open "Manage Modules" and "Portal Dashboard" on my OpenEMR Ubuntu instance

I have same problem for very long time, and still can’t resolve it

I recently did new installation of V7.0.0 from scratch, and in new installation have the same problem.
Still can’t resolve this problem because Apache OpenEMR file is missing. All system works fine, but getting problem with modules.

Is there any recommendation, maybe I’m doing some mistake in the installation process

apt update -y

apt upgrade -y

apt install mysql-server php php-xml php-mbstring php-mysql apache2 -y

sudo mysql -u root

CREATE DATABASE openemr;

CREATE USER ‘openemruser’@‘localhost’ IDENTIFIED WITH mysql_native_password BY ‘openemruser123456’;

GRANT ALL PRIVILEGES ON openemr. TO ‘openemruser’@‘localhost’;*

FLUSH PRIVILEGES;

exit

Then go to php settings

Apache PHP configuration

/etc/php/7.4/apache2/php.ini

short_open_tag = Off

max_execution_time = 60

max_input_time = -1

max_input_vars = 3000

memory_limit = 512M

display_errors = Off

log_errors = On

po st_max_size= 30M

file_uploads = On

upload_max_filesize = 30M

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED

mysqli.allow_local_infile = On

Next, you’ll need to reload the Apache web server for changes to take effect:

sudo systemctl reload apache2