Heim >php教程 >php手册 >测试 Apache Web 和 PHP 应用程序服务器

测试 Apache Web 和 PHP 应用程序服务器

WBOY
WBOYOriginal
2016-06-21 09:00:231011Durchsuche

  测试 PHP 安装 (Macintosh)

  您可以通过运行测试页测试 Macintosh 上的 Apache Web 服务器和 PHP 应用程序服务器。

  但是,在使用 Web 服务器处理 PHP 页和 MySQL 数据库的内容时,必须先配置该服务器,使之能够使用 PHP 和 MySQL。

  若要测试 Apache Web 服务器和 PHP 应用程序服务器,请执行以下操作:

  1、按照 Macromedia Web 站点上的文章的说明配置该服务器。

  2、在 Dreamweaver 或任何文本编辑器中,创建一个纯文本文件并将其命名为 timetest.php。

  3、在该文件中,输入以下代码:

  

This page was created at 
  
  
 on the computer running PHP.

  此代码显示在服务器上处理该页的时间。

  4、将此文件复制到 Macintosh 上的 /Users/your_user_name/Sites 文件夹中。

  该 Sites 文件夹是您的 Apache Web 服务器个人根文件夹。

  5、在您的 Web 浏览器中,输入以下 URL,然后按 Return 键:

  http://localhost/~your_user_name/timetest.php

  测试页应该打开并显示时间,如下所示:

  该指定的时间称作动态内容,因为您每次请求该页它都发生变化。单击浏览器上的"刷新"按钮生成具有不同时间的新页。

  注意:查看源代码(Safari 中的"查看">"查看源文件")将确认该页没有使用任何客户端 JavaScript 来实现此效果。

  如果该页未按预期方式工作,则检查是否可能存在以下错误:

  • 该文件不具有 .php 扩展名。
  • URL 中包含键入错误。检查是否存在错误并确保文件名后没有斜杠,例如 http://localhost/~your_user_name/timetest.php/。同时确保您的用户名之前有代字号 (~)。
  • 页代码中包含键入错误。
  • Apache 服务器没有运行。打开"系统首选项",在"共享"类别中,查看是否启用了"个人 Web 共享"。
  • 测试服务器软件之后,为您的 Web 应用程序创建根文件夹。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn