在 Win10 x64 AMPPS 本地主机配置错误中遇到3.8 MySQL 连接被拒绝、使用 AMPPS 3.9 卸载并重新安装
但是,尝试通过 AMPPS 面板在 localhost中添加域“ https://example.com ”返回消息“错误”。除了“错误”,加载图标不断旋转
既没有在域面板中添加条目,也没有在主机文件 AMPPS 的条目中添加条目。甚至 Windows 主机文件也无法添加域。我们已经交叉检查了重写添加的域失败的报告错误
localhost 名称解析在 DNS 本身内处理。域名“example.com”在主机文件中手动添加,因为它在 AMPPS 域面板中失败
主机文件配置
127.0.0.1 localhost
::1 localhost
127.0.0.1 example.com ### added manually
由于主机文件无法重写配置,我们添加了 example.com 并尝试了相同但未能填充项目
但是,我们检查了 AMPPS 根/www 并发现域“www / example.com”已添加上述错误。
但是,当您通过安装程序成功安装应用程序时,安装的项目 url 不起作用。
接下来,我们在 AMPPS 中成功安装了管理 URL 上的项目:' https ://example.com/extplorer/index.php'softaculous,但链接报告错误。
错误示例域
此域用于文档中的说明性示例。您可以在没有事先协调或征得许可的情况下在文学作品中使用此域。
在 AMPPS 3.8 中情况并非如此,它在没有问题的情况下添加和删除了域。由于 AMPPS 3.8,我们不得不面对的唯一问题是它在 PHPmyAdmin 中无法使用相同的密码“msyql”在 my.conf 中连接,但 phpmyadmin 直到我们刚刚卸载 AMPPS 3.8 的一周才接受并感到沮丧(输给了项目) 由于 phpmyadmin 1045 Access Denied Error 的频繁问题
然后我们安装了 AMPPS 3.9 x64 位(但安装为 x32)
但是域插件的Ampps 3.9即使在三次之后仍然存在这个问题。干净重新安装
我们在 E:\Ampps\conf\httpd.conf 中检查了具有以下配置的配置
ServerName 127.0.0.1:80
DocumentRoot "{$path}/www"
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
再次使用不同的参数重复相同的目录配置,这似乎是冲突的
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Order allow,deny
Deny from all
Satisfy All
LogLevel warn
本地主机 虚拟主机
Options FollowSymLinks Indexes
AllowOverride All
Order deny,allow
allow from All
ServerName localhost
ServerAlias localhost 127.0.0.1
ScriptAlias /cgi-bin/ "{$path}/www/cgi-bin/"
DocumentRoot "{$path}/www"
ErrorLog "{$path}/apache/logs/error.log"
CustomLog "{$path}/apache/logs/access.log" combined
安全 (SSL/TLS) 连接
Include conf/extra/httpd-ssl.conf
Include conf/extra/alias.conf
虚拟主机
Include conf/extra/httpd-vhosts.conf
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
请勿编辑,由 AMPPS example.com VirtualHost 创建我们在 E:\Ampps\apache\conf\extra\httpd-vhosts.conf 中检查了具有以下配置的虚拟主机配置
Options FollowSymLinks Indexes
AllowOverride All
Order deny,allow
allow from All
ServerName example.com
ServerAlias example.com
ScriptAlias /cgi-bin/ "E:/Ampps/www/example.com/cgi-bin/"
DocumentRoot "E:/Ampps/www/example.com"
ErrorLog "E:/Ampps/apache/logs/example.com.err"
CustomLog "E:/Ampps/apache/logs/example.com.log" combined
# example.com SSL 条目
Options FollowSymLinks Indexes
AllowOverride All
Order deny,allow
allow from All
ServerName example.com
ServerAlias example.com
ScriptAlias /cgi-bin/ "E:/Ampps/www/example.com/cgi-bin/"
DocumentRoot "E:/Ampps/www/example.com"
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile "E:\Ampps/apache/conf/ssl_crt/example.com.crt"
SSLCertificateKeyFile "E:\Ampps/apache/conf/ssl_key/example.com.key"
ErrorLog "E:/Ampps/apache/logs/example.com_ssl_error.log"
TransferLog "E:/Ampps/apache/logs/example.com_ssl_access.log"
SSLOptions +StdEnvVars
SSLOptions +StdEnvVars
BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog "E:/Ampps/apache/logs/example.com_ssl_request.log" \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
#
您的好意将受到高度重视,因为您提供了宝贵的解决方案反馈