Hello experts
recently i did set up a new home pc for testing. I installed Apache 2.4
Trying to use it with virtual host i have some errors.
One of them is using phpmyadmin.
I can go trough the login page to the main panel.
If i submit a form for action , to make a change or upload .sql files... i get an error like:
Not Found
The requested URL /search.php was not found on this server.
My virtual host settings are:
<VirtualHost *:80>
ServerAdmin test@test-host.example.com
DocumentRoot "C:/Inetpub/wwwroot/phpmyadmin"
ServerName phpmyadmin.selfip.com
ServerAlias *.phpmyadmin.selfip.com
<Directory C:/Inetpub/wwwroot>
AllowOverride none
Require all granted
</Directory>
ErrorLog logs/phpmyadmin.loc-error.log
CustomLog logs/phpmyadmin.loc-access.log common
</VirtualHost>
Any help?