问题标签 [host]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
85 浏览

javascript - 相同的 Javascript 代码但不同的行为

//编辑

你好。

我做了一个网站并上传到主机。因此,我的本地主机和网站主机中的代码是相同的。除了一个 JavaScript(jQuery) 操作(一个下拉菜单)外,一切正常。在我的本地主机上,它运行良好,在网站主机上,它再次下降和上升,而不是再次下降。

网站:http ://www.hastahakki.com/index.php?page=anasayfa

“Doğru Hastane Seçimi”、“Hasta Şikayetleri”等大按钮上的问题

我该怎么办?

0 投票
1 回答
267 浏览

dns - 从另一个域连接到数据库

我有一个域 (.com) 和一个包含在该域中的数据库

我还有另一个托管公司托管的另一个域 (.eu),但我想使用 .com 域的数据库 使用 .com 域的 ipaddress 链接到数据库是否安全

或者我怎么能连接到数据库?

0 投票
5 回答
37258 浏览

amazon-web-services - How redirect a domain to Amazon EC2 Machine?

I'm using EC2 of Amazon to host a website built in JSP :

http://ec2-50-17-144-64.compute-1.amazonaws.com:8080/p2p

And I bought this domain: www.p2pbrasil.com

How can I redirect www.p2pbrasil.com to my website in Amazon EC2 ?

When someone type www.p2pbrasil.com it redirects to http://ec2-50-17-144-64.compute-1.amazonaws.com:8080/p2p ?

0 投票
3 回答
992 浏览

asp.net - ASP.Net 在 IIS6 上无法正常工作

我有一个 Visual Studio 2010 ASP.Net 项目。我想将此项目部署到我的主机。我做到了,但我的网站无法正常工作。我可以访问主页等,但我不能做我以前的工作。我必须更改一些位于服务器上的单词模板。我正在使用 IIS 6。谢谢。顺便说一下,我确实更改了一些访问属性,但它不起作用。

在执行当前 Web 请求期间生成了未处理的异常。可以使用下面的异常堆栈跟踪来识别有关异常起源和位置的信息。

这是堆栈跟踪

0 投票
1 回答
58 浏览

php - php的安装方式

我经常看到这个“ the php is installed in suPHP,那个php is installed in fastcgi。我怎么知道我的php是哪种方式安装的。谢谢

0 投票
3 回答
9970 浏览

php - PHP通过FTP下载整个文件夹(递归)

我目前有一个非常大的站点,大小约为 5GB,包含 60,000 个文件。当前主机在帮助我将站点转移到新主机方面并没有做太多事情,我想的是在我的新主机上制作一个简单的脚本以 FTP 到旧主机并下载整个 public_html 文件夹(递归) 到新服务器。这可能吗?如果可以,是否有人可以分享任何链接来帮助解决这个问题?非常感激。

0 投票
1 回答
14185 浏览

ftp - wget ".listing: 没有这样的文件或目录"

我正在尝试将一台服务器的目录转移到另一台服务器(我两周前做过的事情),但现在我不确定为什么这不起作用。我在用:

然后得到这个:

这是怎么回事?

谢谢你的帮助!

0 投票
0 回答
539 浏览

tomcat - Mass virtual hosts with tomcat

I'm using tomcat 5.5 for serving more that 100 sites(suppose my-gwt-site-1.com to my-gwt-site-100.com).
All of my sites are using a single instance of a previously deployed gwt application, the only deference between them is in their "Host" configuration section in server.xml :

& it repats fot all of my sites...

the only reason I do this is because my application needs to use the separate resource for every domain.
when number "host" sections in server.xml is about 5, the is no problem, but when it grows up to about 10 or more, the tomcat server starts successfully but it cant load any of my site(seems that it crashes in the background silently!)
I want to know is this a good solution to add a lot of "host" tags in server.xml or there is any better way to do this? Attention that I Just want to use one code with separate databases for all of my sites.
Another question is that how many java sites(each one with about 500 users and low traffic) usually can be run on a single server(with 2 Quand Core CPUs & 4GB of RAM)?

0 投票
1 回答
554 浏览

php - PHP HOST 指令

我使用 [HOST=subdomain.mydomain.com] 进行一些设置,但现在我想将设置应用于除 subdomain.mydomain.com 之外的所有内容。

这是我的 php.ini 文件:

我想要除 subdomain.mydomain.com 之外的所有其他域的 disable_functions = phpinfo。我怎样才能做到这一点?

问候,凯文

PS 我正在使用 Ubuntu、Apache2 和 PHP5。

0 投票
4 回答
1221 浏览

.net - 从 .NET 3.5 应用程序运行 .NET 4.0 应用程序

我们有 2 个使用 .NET 3.5 和 .NET 4.0 编写的桌面主机应用程序。我们有 3 个在 .NET 3.5 上编写的加载项。一个加载项是在 .NET 4 上编写的 - “NET4APP”。

我们希望使用 .NET 3.5 主机应用程序为所有加载项集成主机应用程序和加载项。

它们可以与 MSI 包以任意组合捆绑在一起。

如果客户没有 .NET 4 并且不使用 NET4APP,我们不希望他们使用它。

有没有办法将 .NET 4 应用程序(或 .NET 4 运行时)加载到 .NET 3.5 应用程序中?