如何在 iSeries 上为 PHP 作业分配更多内存?
在 iSeries 上运行 php 脚本时,即使我在 php.ini 中将内存限制设置为 -1...PHP 仍显示内存不足 256MB 左右。我很好奇是否有一种方法可以为 iSeries 上的作业分配更多内存,以允许 PHP 分配更多内存。
When running php scripts on the iSeries, even though I set my memory limit to -1 in php.ini... PHP says it runs out of memory around 256MB. I'm curious if there is a way to allocate more memory to a job on the iSeries to allow PHP to allocate more memory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于弄清楚了!
在 iSeries apache 配置中,您必须在 httpd.conf 文件中设置以下环境变量:
这将允许您通过 Web 服务器访问一个 php 脚本中的 2.25GB 内存,而不是 256MB
(在我的例子中,我使用的是 ZendServer,并且有编辑配置文件 fastcgi.conf)
参考:
Zend 论坛帖子
IBM 参考
Finally figured this out!
On the iSeries apache configuration you must set the following environment variable in the httpd.conf file:
This will allow you to access 2.25GB of memory in one php script via the web server instead of 256MB
(In my case I am using ZendServer and had to edit the config file fastcgi.conf)
Ref :
Zend Forum Post
IBM Reference