在 Aptana Studio 3 中添加外部服务器
由于没有服务器视图,如何在 Aptana Studio 3 中添加外部服务器?
此处 是一些关于如何执行此操作的说明,但它们都使用 Windows >显示视图> Aptana 3 中不再提供服务器。可以使用控制台吗?如何?
我安装了 wamp 服务器,并且可以正确运行 htdocs 文件夹中存储的 php 文件。现在我想从 Aptana 运行这些 php 文件,但我得到的是空白页面。
在项目中>运行配置我注意到“使用选定的服务器”选项,但无法在那里添加服务器,因此我将“使用基本 URL”与“附加项目名称”一起使用,现在我可以从 Aptana 运行 php 文件,但我仍然想知道是否这是最好的选择,也是我如何告诉 Aptana 使用 wamp 服务器的方法。
How can I add an external server in Aptana Studio 3, since there is no Servers view?
Here are some instructions on how to do it but they both use Windows > Show view > Servers which is no longer available in Aptana 3. With the console is possible? How?
I have a wamp server installed and I can run correctly php files stored inside the htdocs folder. Now I want to run those php files from Aptana but I was getting blank pages.
In Project > Run Configurations I noticed the "Use selected server" option but no possibilty to add a server there, so I used "Use base URL" together with "Append project name" and now I can run php files from Aptana but I am still wondering if it is the best option and how I could tell Aptana to use the wamp server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Aptana Studio 3 中,您需要打开“首选项”、“Aptana/ Web 服务器”节点并在其中添加本地 apache 服务器。
如果您正确设置文档根目录,您的 apache 服务器将用于在 Studio 中预览(请参阅工具栏上的“预览”按钮)。
In Aptana Studio 3 you need to open Preferences, Aptana/ Web Servers node and add your local apache server there.
If you set the document root correctly, your apache server will be used for previewing in Studio (See Preview button on toolbar).
只需在我的 apache 配置中添加一个别名,就像
我在 Aptana 中拥有 MyApp 项目一样,
然后在运行 cnfiguration、Web 浏览器、我的 Apache 服务器中,
在我的浏览器 URL 中:http:///aptana/MyApp
就这样
Just add an alias in my apache config like
where I have MyApp project in Aptana,
Then in Run cnfiguration, Web Browser, My Apache Server,
In my browser URL : http:///aptana/MyApp
That's all
我通过以下方法解决了这个问题:
1.在{path to Apache}/conf/中找到httpd.conf,将“DocumentRoot”值设置为您的
阿普塔纳工作区。
2.运行->运行配置..选择一个Web浏览器,将“使用基本URL”值设置为http://
localhost
/{这里是您的项目名称}/3.运行。
I solved it by following method:
1.find the httpd.conf in {path to Apache}/conf/, set the "DocumentRoot" value as your
Aptana workspace.
2.Run->Run Configurations.. choose a web browser, set the "Use base URL" value as http://
localhost
/{here is your project name}/3.run.