OSX 上的 Git HTML 5 演示
我对 Web 开发非常陌生,想要运行 Github 项目之一(https://github.com/remy/ html5demos) 在我的 Mac 上。
我已经在 Mac 上下载了该项目,但不知道如何运行它。需要 Stackoverflow 上所有有才华的人的帮助。
I am very new to Web development and wanted to run one of the Github project (https://github.com/remy/html5demos) on my Mac.
I have downloaded the project on my Mac and puzzled how to run it. Need help from all talented people across Stackoverflow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该演示使用 php。不幸的是,安装在 OSX 上的 apache(假设您使用的是 Snow Leopard)默认情况下没有启用 php,您需要一些管理编辑才能启用它。
因此,首先将解压的文件夹 remy_something 移至 /Library/WebServer/Documents 并将其重命名为简单名称,例如“remy”。 (最终路径 /Library/WebServer/Documents/remy)
在系统首选项中启用 Web 共享
,将浏览器指向 http:// localhost/remy/index.php
要在 OSX 的 apache 中启用 php,您应该阅读以下示例: http://www .perfectline.ee/blog/how-to-setup-apache-and-php-on-mac-os-x-snow-leopard 或您可以找到的任何其他指南。
启用 php 并重新启动 apache(禁用/启用 Web 共享)后,您可以再次检查页面...
The demo using php. Unfortunately, the apache installed on OSX (assuming you're on Snow Leopard) has not have php enabled by default and you need some admin-editing to enable it.
So, first move the unpacked folder remy_something into /Library/WebServer/Documents and rename it to easy name, for example "remy". (The final path /Library/WebServer/Documents/remy)
enable Web sharing in System preferences
point your browser to http://localhost/remy/index.php
For enabling php in OSX's apache, you should read for example: http://www.perfectline.ee/blog/how-to-setup-apache-and-php-on-mac-os-x-snow-leopard or any other guide you can find.
after enabling php and restarting apache (disable/enable Web sharing), you can check again the page...