XAMPP 基本使用
Contents
XAMPP 基本使用
基本使用
http://127.0.0.1
http://127.0.0.1/dashboard/howto.html
需要部署的文件放在 xampp\htdocs
目录下。
常见问题
常见 PHP 集成环境的选择 XAMPP, WAMP or PHPStudy
经常需要临时搭建不同的测试环境,使用一键集成环境安装包是很方便的一件事。
比较受欢迎的集成环境包括 XAMPP、 WAMP 、 PHPStudy 等。
(个人感觉) 从项目活跃度上看 (更新频率)
PHPStudy > WAMP > XAMPP
因此,如果有新的测试项目,建议优先选用 PHPStudy。
Control Panel 误认
Tomcat 服务实际上并未开启
XAMPP Control Panel 却误认为 Tomcat 已经开启。
(实际上是 Burp Suite 的 Java 进程)
VMware 与 XAMPP 冲突的问题
错误信息如下
C:\xampp>apache_start.bat
Diese Eingabeforderung nicht waehrend des Running beenden
Bitte erst bei einem gewollten Shutdown schliessen
Please close this command only for Shutdown
Apache 2 is starting ...
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : AH00072: make_sock: could not bind to address [::]:443
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : AH00072: make_sock: could not bind to address 0.0.0.0:443
AH00451: no listening sockets available, shutting down
AH00015: Unable to open logs
Apache konnte nicht gestartet werden
Apache could not be started
请按任意键继续. . .
解决方案
打开 VMware Workstation
1 Edit > Preferences;
2 Shared VMs tab;
3 Disable;
4 Change port;
5 Enable.
How to stop VMware port error of 443 on XAMPP Control Panel v3.2.1
https://stackoverflow.com/questions/21182512/how-to-stop-vmware-port-error-of-443-on-xampp-control-panel-v3-2-1
XAMPP 多版本 PHP 切换方案
Author Topic: Tutorial: PHP-VersionsSwitcher for Xampp
https://forum.websitebaker.org/index.php?topic=29854.0
Running php 5.x and php 7.0 at the same time in my windows
https://stackoverflow.com/questions/34757122/running-php-5-x-and-php-7-0-at-the-same-time-in-my-windows
Multiple PHP version with XAMPP on Windows
https://silas.com.ng/multiple-php-version-xampp-windows/
Linux 下 XAMPP 的使用
# GUI 管理界面
/opt/lampp/manager-linux-x64.run &
/opt/lampp/lampp start
/opt/lampp/lampp stop
Leave a Reply