Обнаружен неправильный путь в нескольких установках xampp в windows 10 - PullRequest
0 голосов
/ 28 мая 2020

У меня две разные установки xampp на моем windows 10.

Одна находится на C диске, версия XAMPP: 7.2.5, версия панели управления: 3.2.2 [Скомпилировано: 12 ноября 2015 г. ], все работает нормально.

Второй находится на диске G. Версия XAMPP: 7.4.6, версия панели управления: 3.2.4 [Скомпилирована: 5 июня 2019 г.] и не работает. Я изменил следующее:

в httpd.conf >>>

#Listen 12.34.56.78:80
Listen 82

в httpd-ssl.conf >>>

#
# When we also provide SSL we have to listen to the 
# standard HTTP port (see above) and to the HTTPS port
#
Listen 444

##
## SSL Virtual Host Context
##


<VirtualHost _default_:444>


#   General setup for the virtual host
DocumentRoot "G:/xampp/htdocs"
ServerName www.example.com:444
ServerAdmin admin@example.com

в моем. ini >>>

# The following options will be passed to all MySQL clients
[client]
# password       = your_password 
port=3307
socket="G:/xampp/mysql/mysql.sock"

на сервере FileZilla. xml >>>

<FileZillaServer>
    <Settings>
        <Item name="Admin port" type="numeric">14148</Item>
    </Settings>
</FileZillaServer>

Но когда я запускаю xampp, он находит неправильный путь:

1:47:32 PM  [Apache]    Apache Service detected with wrong path
1:47:32 PM  [Apache]    Change XAMPP Apache and Control Panel settings or
1:47:32 PM  [Apache]    Uninstall/disable the other service manually first
1:47:32 PM  [Apache]    Found Path: "C:\xampp\apache\bin\httpd.exe" -k runservice
1:47:32 PM  [Apache]    Expected Path: "g:\xampp\apache\bin\httpd.exe" -k runservice
1:47:32 PM  [Apache]    Problem detected!
1:47:32 PM  [Apache]    Port 80 in use by ""C:\xampp\apache\bin\httpd.exe" -k runservice" with PID 13860!
1:47:32 PM  [Apache]    Apache WILL NOT start without the configured ports free!
1:47:32 PM  [Apache]    You need to uninstall/disable/reconfigure the blocking application
1:47:32 PM  [Apache]    or reconfigure Apache and the Control Panel to listen on a different port
1:47:32 PM  [Apache]    Problem detected!
1:47:32 PM  [Apache]    Port 443 in use by ""C:\xampp\apache\bin\httpd.exe" -k runservice" with PID 13860!
1:47:32 PM  [Apache]    Apache WILL NOT start without the configured ports free!
1:47:32 PM  [Apache]    You need to uninstall/disable/reconfigure the blocking application
1:47:32 PM  [Apache]    or reconfigure Apache and the Control Panel to listen on a different port
1:47:32 PM  [mysql]     MySQL Service detected with wrong path
1:47:32 PM  [mysql]     Change XAMPP MySQL and Control Panel settings or
1:47:32 PM  [mysql]     Uninstall/disable the other service manually first
1:47:32 PM  [mysql]     Found Path: C:\xampp\mysql\bin\mysqld.exe --defaults-file=c:\xampp\mysql\bin\my.ini mysql
1:47:32 PM  [mysql]     Expected Path: g:\xampp\mysql\bin\mysqld.exe --defaults-file=g:\xampp\mysql\bin\my.ini mysql
1:47:32 PM  [mysql]     Problem detected!
1:47:32 PM  [mysql]     Port 3306 in use by "C:\xampp\mysql\bin\mysqld.exe --defaults-file=c:\xampp\mysql\bin\my.ini mysql"!
1:47:32 PM  [mysql]     MySQL WILL NOT start without the configured ports free!
1:47:32 PM  [mysql]     You need to uninstall/disable/reconfigure the blocking application
1:47:32 PM  [mysql]     or reconfigure MySQL and the Control Panel to listen on a different port
1:47:32 PM  [filezilla]     FileZilla Service detected with wrong path
1:47:32 PM  [filezilla]     Change XAMPP FileZilla and Control Panel settings or
1:47:32 PM  [filezilla]     Uninstall/disable the other service manually first
1:47:32 PM  [filezilla]     Found Path: "C:\xampp\filezillaftp\filezillaserver.exe"
1:47:32 PM  [filezilla]     Expected Path: "g:\xampp\FileZillaFTP\filezillaserver.exe"
1:47:32 PM  [filezilla]     Problem detected!
1:47:32 PM  [filezilla]     Port 21 in use by ""C:\xampp\filezillaftp\filezillaserver.exe""!
1:47:32 PM  [filezilla]     FileZilla WILL NOT start without the configured ports free!
1:47:32 PM  [filezilla]     You need to uninstall/disable/reconfigure the blocking application
1:47:32 PM  [filezilla]     or reconfigure FileZilla and the Control Panel to listen on a different port
1:47:32 PM  [filezilla]     Problem detected!
1:47:32 PM  [filezilla]     Port 14147 in use by ""C:\xampp\filezillaftp\filezillaserver.exe""!
1:47:32 PM  [filezilla]     FileZilla WILL NOT start without the configured ports free!
1:47:32 PM  [filezilla]     You need to uninstall/disable/reconfigure the blocking application
1:47:32 PM  [filezilla]     or reconfigure FileZilla and the Control Panel to listen on a different port

Как решить эту проблему?

...