XAMPP for Mac 无法查看 PHP 文件
下载 XAMPP 后我无法看到 php 文件。我正在尝试编写一个 php 文件,因此我下载并启动了 XAMPP,但我看不到 PHP 文件显示。当我打开任何简单的东西时:
<?php
echo "Hello World";
?>
只会显示一个空白的 Firefox 窗口。有人可以帮忙吗?
I am unable to see php files after I downloaded XAMPP. I am trying to write a php file, so I download and started XAMPP, but I cannot see PHP files show up. When I open anything as simple as:
<?php
echo "Hello World";
?>
Just a blank Firefox window shows up. Can anyone please help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您的 PHP 文件使用哪个目录?这需要位于 xampp 目录中的 htdocs 目录中。通过在浏览器 URL 中输入 http://localhost 检查 xampp 是否正在运行。如果您看到 xampp 页面出现,那么它工作正常,您需要检查您的 PHP 文件是否位于正确的位置。如果没有显示任何内容,则表明 xampp 不起作用。
我刚刚在xampp网站上查了文档根目录。如果您在应用程序目录中安装了 xampp 应用程序,则它是 /Applications/XAMPP/htdocs/ 。
What directory are you using for your PHP files? This needs to be in the htdocs directory in the xampp directory. Check to see if xampp is running by typing http://localhost in your browser URL. If you see the xampp page come up then it's working fine and you need to check if your PHP files are in the correct location. If nothing shows up then it's xampp that's not working.
I just checked for the document root directory on the xampp website. It's /Applications/XAMPP/htdocs/ if you installed the xampp application in the applications directory.
如果没有错误消息,很难猜测。试试这个:编辑你的 php.ini(我不知道它在 XAMPP 中的什么位置,但你应该能够找到它)并查找此变量设置:
如果它设置为“关闭”,请将其设置为“打开”,<然后重新启动 XAMPP。加载页面时,您应该在屏幕上看到一些有意义的错误消息。
It's hard to guess without an error message. Try this: edit your php.ini (I don't know where this would be in XAMPP, but you should be able to find it) and look for this variable setting:
if it is set to Off, turn it to On, then restart XAMPP. When you load the page, you should see some meaningful error message on the screen.
将文件夹或文件放入(小写)xampp 文件夹中。
应用程序/XAMPP/htdocs/xampp
然后尝试网址:localhost/xampp/folder/file.php
那应该有效。
put the folder or files in the (lowercase) xampp folder.
Applications/XAMPP/htdocs/xampp
then try the url: localhost/xampp/folder/file.php
That should work.
检查以下内容是否包含在您的 httpd.conf 中
让 Apache 运行 phtml 文件
Check if the below is included in your httpd.conf
Let Apache run phtml files
Apache 需要在 httpd.conf 文件中进行一些配置,然后才能正确对待 PHP 文件。
(只是开玩笑)
我正在使用 Windows 版 XAMPP,我需要将以下内容添加到 httpd.conf 文件中:
可能还有一些我忘记的细节。那是很久以前的事了。
Apache will need a bit of configuration in the httpd.conf file before it treats PHP files with the respect they deserve.
(Only joking about the respect)
I'm using XAMPP for Windows, and I needed to add the following to the httpd.conf file:
There may be some more details I've forgotten. It was a long time ago.