Search found 56 matches
- Tue Apr 26, 2016 3:24 pm
- Forum: Zend Server for IBM i
- Topic: Move Zend Server install from one IBM i server to another
- Replies: 4
- Views: 4259
Re: Move Zend Server install from one IBM i server to anothe
Zend no longer distributes or supports Zend Server 5. We are not able to provide an installer for it. If the Zend Server 5 installer is still on the old partition, it will be in the form of a save file QGPL/ZSVRSAVF. This command runs the installation: RSTLICPGM LICPGM(2ZSVRPI) DEV(*SAVF) SAVF(QGPL/...
- Fri Aug 21, 2015 5:46 pm
- Forum: Zend Server for IBM i
- Topic: Zend Server and IBM i V6R1 support
- Replies: 4
- Views: 3218
Re: Zend Server and IBM i V6R1 support
Yes, we dropped V6R1 support a little bit early this go round. Here is why:
https://support.zend.com/hc/en-us/articles/208035107
https://support.zend.com/hc/en-us/articles/208035107
- Tue Jun 30, 2015 3:51 pm
- Forum: Zend Server for IBM i
- Topic: Zend server os V7R01
- Replies: 1
- Views: 2341
Re: Zend server os V7R01
Please download and install the Free Trial from our web site. There is a version of Zend Server for IBM i included with IBM i, but we usually have a newer version than is shipped by IBM. For first time installers, we always recommend getting the latest version from our download site. Here are some n...
- Tue Dec 16, 2014 7:54 pm
- Forum: Zend Server for IBM i
- Topic: Moving from I5_tools to DB2 functions
- Replies: 7
- Views: 5238
Re: Moving from I5_tools to DB2 functions
Some general tips on settings that can help prevent problems with character translations in DB2:
https://support.zend.com/hc/en-us/articles/203748206
https://support.zend.com/hc/en-us/articles/203748206
- Fri Sep 26, 2014 8:11 pm
- Forum: Zend Server for IBM i
- Topic: db_connect
- Replies: 7
- Views: 6021
Re: db_connect
There is also an older issue where the user ID is entered, but the password is not:
https://support.zend.com/hc/en-us/articles/203733853
This article should answer the original question.
https://support.zend.com/hc/en-us/articles/203733853
This article should answer the original question.
- Fri Sep 26, 2014 6:31 pm
- Forum: Zend Server for IBM i
- Topic: db_connect
- Replies: 7
- Views: 6021
Re: db_connect
Please see this article: https://support.zend.com/hc/en-us/articles/203297676 As the article states: "Prior to Zend Server 7.0.0, this is the designed behavior of db2_connect(). If no user or password is entered, the connection is for the Apache user QTMHHTTP. This could provide a performance boost ...
- Mon Sep 22, 2014 3:17 pm
- Forum: Zend Server for IBM i
- Topic: Zend Server 7.0 mcrypt
- Replies: 3
- Views: 4283
Re: Zend Server 7.0 mcrypt
This has been corrected in Hotfix 1 for Zend Server 7.0.0. The Hotfix can be found at http://www.zend.com/en/products/server/downloads-ibmi
Please download the Hotfix that matches your PHP version (PHP 5.4 or PHP 5.5)
Please download the Hotfix that matches your PHP version (PHP 5.4 or PHP 5.5)
- Wed May 28, 2014 7:07 pm
- Forum: Zend Server for IBM i
- Topic: How to get second "basic edition" license
- Replies: 1
- Views: 1854
Re: How to get second "basic edition" license
The Basic license is per company, not per server. You may use it on all of the IBM i servers in your company. The automated system will not send you a second Basic license because you do not need it.
- Tue Mar 04, 2014 7:11 pm
- Forum: New Toolkit
- Topic: Remember to set CCSID in Apache
- Replies: 1
- Views: 4392
Re: Remember to set CCSID in Apache
Instead of editing httpd.conf, you can use the menu option to set CCSID and Language options for FastCGI and Apache. From the 5250 Command line: For Zend Server version 5: GO ZENDSVR/ZSMENU For Zend Server version 6: GO ZENDSVR6/ZSMENU Use option "8. Set Zend Server Language/CCSID environment". Unde...
- Tue Feb 11, 2014 5:23 pm
- Forum: Zend Server for IBM i
- Topic: db2 calling stored procedures
- Replies: 10
- Views: 8820
Re: db2 calling stored procedures
We were looking for the CREATE PROCEDURE from your original example, that would have matched this code: $key='KEY'; //defined in RPG program as Char(10) $nbr='0'; //defined in RPG program as Decimal(15) db2_bind_param($stmt,1,"key",DB2_PARAM_INOUT); db2_bind_param($stmt,2,"nbr",DB2_PARAM_INOUT); Or,...