问题标签 [zend-server]

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 回答
4250 浏览

php - 如何在 zend 服务器上安装 sqlsrv php 驱动程序?

我从Microsoft 网站下载了“Microsoft Drivers for PHP for SQL Server (V 2.0.1)”并将其移动到php_sqlsrv_5.3_nts_vc6.dll“C:\Program Files\Zend\ZendServer\lib\phpext\”旁边的“php5 .dll”

然后转到 Zend 服务器面板“服务器设置 > 扩展”将其打开。重新启动 php 后,Zend Server 说:“系统无法加载此扩展”!

我应该怎么办?

PS:Zend 在 Apache 上配置

编辑:我也试过“php_sqlsrv_5.3_ntc_vc9.dll”,但也失败了!

在此处输入图像描述

0 投票
2 回答
1015 浏览

php - 即使有完整的 error_reporting 和 display_errors 也是白页

我这里有一个非常非常奇怪的情况。我正在使用安装了 Zend Server 的本地开发服务器。我有完整的错误报告和显示错误,但我仍然得到一个白页。当然,我知道我做错了什么,但我想知道我做错了什么。

我目前正在使用的系统在很大程度上依赖于类、包含等,因此我不能简单地“检查”一个页面(即在系统外部独立运行它,直接调用它等等)。那是行不通的。

我检查了语法,这不是问题。我被困住了,想看看我的错误。如果您有任何想法,请告诉我!


为了清楚起见,我已经在使用以下内容:

ini_set('display_errors', true); error_reporting(-1);


在使用了自己的错误处理程序 (php.net/set_error_handler) 和一些硬调试(回声、退出等)后,我发现我否决了稍后使用的变量。该变量曾经是一个对象,但现在是一个 int。奇怪的是,我在非对象上调用函数这一事实没有任何错误......

很奇怪,但我很高兴在我的应用程序中发现了这个错误。

0 投票
3 回答
7246 浏览

mod-rewrite - mod_rewrite Zend 服务器

无法让我的 mod_rewrite 与 Zend Server 一起工作我的网址出现以下错误

未找到

在此服务器上找不到请求的 URL /forums/main-forum.2/。

http://pastebin.com/nki3uh8X

这是我的 http.conf

干杯

0 投票
2 回答
2339 浏览

zend-studio - Zend_Tool 问题

这是我第三次安装zend studio和zend server,现在这两个安装成功(半天后)。但是当我尝试创建一个新项目时,我总是会收到这个 zf 错误......

` * ** * ** * ** * ** * ** ZF ERROR * ** * ** * ** * ** * ** * 为了运行 zf 命令,您需要确保 Zend Framework 是在您的 include_path 中。有多种方法可以确保此 zf 命令行工具知道 Zend Framework 库在您的系统上的位置,但并非所有方法都可以在此处描述。

好的(花了 0:04.038)`

我已经通过命令行使用新的 zend-framework 库设置了 ZF_INCLUDE_PATH。

我从来没有安装过任何与 zend 相关的东西。

有人可以帮我解决这个问题吗?

谢谢

0 投票
5 回答
6615 浏览

php - zeromq Windows 的 php 扩展

我正在使用配置了 IIS 7.5 的 Zend 服务器。我搜索了编辑:zeromq php 扩展,我找到了这些http://valokuva.org/builds/http://snapshot.zero.mq/

我试图在 php.ini 中添加扩展名,当我从 zend admin 启用它时,它显示错误“系统无法加载此扩展名”并在日志中显示“PHP 启动:无法加载动态库 'C:\Program Files\ Zend\ZendServer\lib\phpext\php_zmq.dll' - 找不到指定的模块。在第 0 行的未知中。

我试图从源代码构建扩展(.dll),但它也没有工作。在http://www.zeromq.org/bindings:php上写着

您首先需要安装 ØMQ(推荐 2.1.x 或更高版本)

我是否必须先在我的机器上安装一些东西才能使用这个扩展,因为只有可用的源,或者我是否错误地放置了文件?

虽然我正在为 python 运行 zeromq 绑定并且运行没有问题。

非常感谢任何帮助或指导。

0 投票
2 回答
712 浏览

php - 安装 Zend Framework 和使用 zf 脚本的问题

我已经安装了 ZendFramewrok,并附有以下说明: http: //framework.zend.com/manual/en/learning.quickstart.create-project.html当我尝试运行类似的命令时

我收到此错误:

我正在使用 Ubuntu 11.04。有谁知道可能是什么问题?

0 投票
1 回答
733 浏览

zend-server - Zend Server 与 newrelic

我需要选择一种解决方案来深度监控基于 PHP 和 MySQL 的生产环境。

  • 帮助我们发现并重新创建进入生产环境的错误
  • 帮助我们在真实用户模式和硬件上分析应用程序并发现真正的瓶颈

我在 Zend Server 和 Newrelic 之间。

我知道 Zend 服务器提供的不仅仅是事件监控,但在本练习中让我们专注于它。

我想 Zend 服务器可以在代码跟踪时提供有关特定功能性能的更多详细信息。另一方面,newrelic 必须拥有更广泛的报告集,并且其新的最终用户页面加载报告似乎对于端到端了解性能非常有用。

有没有人用过两者?你的经验是什么?

0 投票
2 回答
1282 浏览

zend-server - configure Zend server CE if a machine doesn't support ipv6

I have installed latest Zend Server CE in my notebook (it has Win 7 installed) and then I installed it on my desktop machine. But when you start server controller there is an alert saying Connection refused (or timed out)

What's the problem? When I start server http://localhost:10081/ZendServer/

the following message appears

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, admin@example.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

and apache works well in the following address http://localhost:81

when i telnet localhost 10081 there is a reply !!!

I found from the inet http://forums.zend.com/viewtopic.php?f=8&t=7518 that it's because of not having ipv6 support, I am running windows xp3 on my desktop how to disable default ipv6 support in Zend conf?

how to fix this problem or should I switch to win 7 (my desktop)? Thanks in advance!

0 投票
1 回答
469 浏览

php - Doctrine 2 ODM - 保存嵌套的嵌入式文档在开发环境中有效,但在生产环境中无效

如果有一个看起来像这样的记录:

我为学说设置了相应的实体,其中 subdoc 是根文档的 EmbedMany,subdoc2 是子文档的 EmbedMany。

它在我的开发环境中运行良好。在生产环境中,它不保存 subdoc2。我可以创建它,将它添加到子文档中,并告诉它刷新,没有错误,但它只是不保存。

我已经排除的事情:

  • 这不是教义:两个环境都使用相同版本的教义,完全相同的文件
  • 这不是 mongo:相同版本的 mongo php 驱动程序:1.2.2(相同配置)
  • 两者都在 ubuntu 上使用 apache2
  • 这不可能是我的代码,对吗?我的意思是两台机器上的代码相同

它可能是:

  • 生产:PHP版本5.3.5-1ubuntu7.2;开发:PHP 版本 5.3.5
  • 生产实际上是 Zend Server,开发不是。我真的无法控制它,但也许 Zend Server 中的某些设置可能会导致问题?我很乐意发布特定设置,但其中有很多,所以除非需要,否则我不想全部发布。

我真的很茫然!请帮忙。

0 投票
1 回答
371 浏览

php - 如何在 Mac 上设置 Zend Server?

我有一台 mac,想设置 Zend Server。我不是 php 开发人员,但正在试验,当安装它时,我可以访问管理控制等,但是当我尝试将我自己的代码添加到 rood 文档文件夹时,它说它找不到该站点。我不确定它是否是放置它的正确位置,但它与 zend 服务器符号链接位于同一文件夹中。

还有其他我应该做的调整吗?我刚刚使用 zend 为 mac 提供的 dog 安装程序包进行了安装。

任何帮助都是极好的。