XAMPP for Mac 无法查看 PHP 文件

发布于 2024-08-02 08:13:20 字数 190 浏览 2 评论 0原文

下载 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

爱给你人给你 2024-08-09 08:13:20

您的 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.

匿名的好友 2024-08-09 08:13:20

如果没有错误消息,很难猜测。试试这个:编辑你的 php.ini(我不知道它在 XAMPP 中的什么位置,但你应该能够找到它)并查找此变量设置:

display_errors

如果它设置为“关闭”,请将其设置为“打开”,<然后重新启动 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:

display_errors

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.

梦在夏天 2024-08-09 08:13:20

将文件夹或文件放入(小写)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.

抱着落日 2024-08-09 08:13:20

检查以下内容是否包含在您的 httpd.conf 中

让 Apache 运行 phtml 文件

AddHandler application/x-httpd-php .php .php5 .php4 .php3 .html .htm .phtml

Check if the below is included in your httpd.conf

Let Apache run phtml files

AddHandler application/x-httpd-php .php .php5 .php4 .php3 .html .htm .phtml
玻璃人 2024-08-09 08:13:20

Apache 需要在 httpd.conf 文件中进行一些配置,然后才能正确对待 PHP 文件。

(只是开玩笑)

我正在使用 Windows 版 XAMPP,我需要将以下内容添加到 httpd.conf 文件中:

LoadModule php5_module "C:/Program Files/xampp/apache/bin/php5apache2.dll"
AddType application/x-httpd-php-source .phps
AddType application/x-httpd-php .php .php5 .php4 .php3 .phtml

可能还有一些我忘记的细节。那是很久以前的事了。

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:

LoadModule php5_module "C:/Program Files/xampp/apache/bin/php5apache2.dll"
AddType application/x-httpd-php-source .phps
AddType application/x-httpd-php .php .php5 .php4 .php3 .phtml

There may be some more details I've forgotten. It was a long time ago.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文