Seiden Group
Modern Development & Open Source for IBM i
  • Link to LinkedIn
  • Link to Mail
  • Home
  • Seiden PHP+
    • Seiden PHP+
    • Install & Learn
    • SmartSupport
    • PHP Migrations & Upgrades
    • Success Stories
    • Free PHP Assessment
    • Documentation
    • What’s New (Changelog)
  • IBM i Services
    • Development
    • Training & Mentoring
    • Open Source Setup & Upgrades
    • SSL/TLS Install & Learn
    • Performance
  • Support
    • Open Source & PHP
    • VS Code for i
    • Developer Support
    • Support Success Stories
  • VS Code for i
    • Support
    • Training
    • Code for i Resource Guide
    • Getting Started Videos
    • Code for IBM i Fridays
  • Free Stuff
    • IBM i Strategy & Tips
    • PHP Upgrade Assessment
    • CNX Valence Assessment
    • VS Code for IBM i Resources
    • Code for IBM i Fridays
    • QCachegrind Download
    • PHP Toolkit for IBM i Resources
    • Qshell on i Library
  • Blog
  • About
    • About Our Team
    • About Alan Seiden
    • Speakers & Sessions
    • In the News
  • Contact
  • 201.447.2437
  • Search
  • Menu Menu

Tag Archive for: IBMi

Alan Seiden

PHP 8.6 is Coming Soon to IBM i

July 24, 2026/1 Comment/in PHP /by Alan Seiden

Scheduled for late 2026, PHP 8.6 is expected to bring numerous improvements, especially in diagnostics, security, and performance.

Here are several PHP 8.6 highlights that I see as helpful for IBM i users and a note about PHP 8.2 going end-of-life.

Seiden Group’s Contribution to PHP 8.6

We are especially pleased that one of the proposed PHP 8.6 enhancements comes from our own team. Calvin Buckley of Seiden Group wrote the RFC to display function arguments in PHP error messages:

https://wiki.php.net/rfc/display_error_function_args

This improvement is designed to make debugging easier by showing more information when a built-in function fails.

For example, instead of seeing only that a file operation failed, developers may be able to see which argument caused the problem. That kind of detail can save time when troubleshooting production issues.

Easier JSON Troubleshooting

PHP 8.6 should help when looking for invalid JSON. Before PHP 8.6, json_last_error_msg() would describe the error, but not tell where in the JSON string to find the invalid portion.  Now, in 8.6, if json_decode() fails, error and exception messages can indicate where the JSON problem occurred. Courtesy of the php.watch site, here is an example:

1
2
3
4
<span class="token variable">$json</span> <span class="token operator">=</span> <span class="token string single-quoted-string">'[{'</span><span class="token punctuation">;</span>
<span class="token function">json_decode</span><span class="token punctuation">(</span><span class="token variable">$json</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token comment">// null</span>
<span class="token function">json_last_error_msg</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token comment">// "Syntax error near location 1:3"</span>

For applications that exchange data with APIs, web services, JavaScript front ends, and vendor systems, this should make testing and support easier.

Safer Defaults and Security Hardening

PHP 8.6 also includes security improvements. More secure session defaults are planned, including strict session mode, HttpOnly session cookies, and SameSite=Lax cookies:

https://wiki.php.net/rfc/session_security_defaults

These settings help reduce common risks such as session fixation, stolen cookies through JavaScript, and some cross-site request forgery scenarios.

Other security-related changes include tighter handling of invalid inputs, safer SQL string quoting for mysqli, and limits on long php://filter chains that have been abused in certain attack techniques:

https://wiki.php.net/rfc/policy-exempt-type-value-error-bc-policy

https://wiki.php.net/rfc/mysqli_quote_string

https://wiki.php.net/rfc/limit-maximum-number-of-filter-chains

JSON Performance Improvements

There are performance improvements as well, including faster JSON encoding of arrays and objects, and better performance when using json_encode() with PHP_JSON_PRETTY_PRINT.

True Async: A Direction to Watch

Another area to watch is True Async, which prepares PHP to compete with other languages that natively support concurrent tasks, services, and I/O operations. For IBM i teams, that direction is worth watching as PHP continues to be used for more than traditional web pages.

PHP 8.2 End of Life Is Approaching

While PHP 8.6 develops, PHP 8.2 is approaching end of life. Its security support ends on December 31, 2026. After that, PHP 8.2 will no longer receive upstream security fixes from the PHP project.

Running an end-of-life PHP version can create security exposures, audit concerns, dependency problems, and a harder migration later.

The best approach is to stay current before the situation becomes urgent.

How Seiden Group Can Help

With Seiden PHP+ Server and our support services, we help clients plan PHP migrations, resolve compatibility issues, and keep production environments stable. We also contribute directly to PHP’s future, as Calvin’s RFC demonstrates.

PHP 8.6 brings improvements, while staying current protects your applications, reduces risk, and keeps your IBM i environment ready for the future.

If you are running PHP 8.2 or older releases, or are not sure which PHP versions you have, now is a good time to review your options. Contact Seiden Group to assess your current PHP setup, plan your next migration, and keep your applications secure and supported.

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2026-07-24 08:00:522026-07-24 08:00:52PHP 8.6 is Coming Soon to IBM i
Alan Seiden

Safer npm installation is on the way for Node.js (and all JavaScript)

June 30, 2026/0 Comments/in Node.js /by Alan Seiden

JavaScript’s package manager, npm, has been in the news lately for allowing supply-chain risks. By default, npm trusts a module’s install scripts, running them automatically. In a recent compromise of Red Hat npm packages, attackers used malicious install scripts to spread a credential-stealing worm.

Some packages do need to run installation scripts. The odbc module, for example, uses node-gyp during installation to compile the driver. On IBM i and other platforms, that compile step may be necessary.

npm’s response

Starting with npm 11.16.0, npm will warn about install scripts that have not been explicitly approved. In npm 12, unapproved scripts are expected to be blocked by default.

If you try to install a package with install scripts under npm 11.6.0, you will receive a warning such as this:

1
2
3
4
npm warn allow-scripts 1 package has install scripts not yet covered by allowScripts:
npm warn allow-scripts odbc@2.5.0 (install: node-gyp rebuild)
npm warn allow-scripts
npm warn allow-scripts Run `npm approve-scripts --allow-scripts-pending` to review, or `npm approve-scripts &lt;pkg&gt;` to allow.

For legitimate packages that need install scripts, the fix is to run npm approve-scripts. For example:

1
npm approve-scripts odbc

After approval, npm will remember that the package should be allowed to run its install script:

1
2
Approved odbc:
   added odbc@2.5.0

In our case, approving odbc is appropriate because its installation runs node-gyp, which is needed to compile the ODBC driver.

We suggest updating npm now and reviewing any warnings before npm 12 makes this behavior more strict.

To upgrade npm to the latest version:

1
2
npm install npm@latest -g
 

Thank you to IBM’s Korinne Adler for alerting us to this change.

For more open source support and security help

Contact us for professional open source support and security guidance.

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2026-06-30 09:23:132026-06-30 09:23:13Safer npm installation is on the way for Node.js (and all JavaScript)
Alan Seiden

IBM i: A Natural Platform for Agentic AI

May 29, 2026/1 Comment/in AI /by Alan Seiden
Adam Shedivy and Jack Woehr at PowerUp 2026

Adam Shedivy and Jack Woehr at PowerUp 2026

At the April 2026 COMMON PowerUp conference in New Orleans, IBM’s Adam Shedivy presented a compelling vision of IBM i as an “agentic-native” operating system. Adam observed that IBM i’s integrated architecture provides what agentic AI needs: business data, operations, security, authority, and auditability.

Let’s see what makes IBM i an agentic-native platform.

Integration is the key

While useful for humans, the integrated nature of the IBM i platform becomes even more potent for agentic AI. Here, the operating system, Db2 database, object model, user profiles, job management, command environment, security model, audit journals, and system services are part of the same platform.

As a result, authorized agents can observe, understand, and take action, all within established, governed interfaces, rather than a loose collection of disconnected tools.

SQL services add even more consistency for agents

Using the growing collection of IBM i Services and Db2 for i Services, agents can query system information with SQL instead of relying on green-screen commands.

For agents, SQL Services create a consistent interface to the platform that can help answer questions such as:

  • Which jobs consumed the most CPU overnight?
  • Which user profiles have authority settings that deserve review?
  • What changed on the system recently?
  • Why did a particular order, invoice, or batch process fail?

Security Must Be Enforced by the Platform

Agentic AI becomes risky when an agent can act without boundaries. Although a prompt can suggest that an agent not access payroll data, a better design is to run the agent under an identity that cannot access payroll data.

IBM i has a mature security model that controls access in a consistent manner throughout the database and the operating system itself, with additional database safeguards such as Row and Column Access Control (RCAC). These controls are enforced universally for all users and applications, including AI agents.

A new view of IBM i in the agentic era

As we all move forward modernizing our applications, we leverage IBM i as a near-ideal environment for putting agentic AI to work, even being “agentic-native,” as Adam Shedivy puts it.

We can help you get started with AI with IBM i. Get in touch for an AI strategy session or for any other assistance in turning old AS/400 perceptions to modern IBM i power.

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2026-05-29 11:49:072026-05-29 11:49:07IBM i: A Natural Platform for Agentic AI
Alan Seiden

Your “AS/400” Is a Modern IBM i Platform

May 11, 2026/9 Comments/in IBM i /by Alan Seiden

During a recent client visit, a executive told me that his company was still running an AS/400. His employees had criticized the system as outdated and risky. He defended it because it was stable and reliable, but he also seemed to accept the idea that it was old.

I explained that while the company may once have had an AS/400, today they were running IBM i on Power hardware. They were using it like an old system, but it is modern technology, capable of much more. The executive was pleased and wanted to learn more.

Backward-compatible and future-powered

IBM i’s compatibility with older applications is one of its strengths. A company can continue running proven green-screen software while supporting newer technologies and business requirements.

I reminded the executive that his IBM i system was already running some modern applications, including a PHP-based web portal. What’s more, his system had the potential to integrate with outside services, such as payroll, shipping, customer portals, reporting tools, and other systems through APIs.

IBM i offers an integrated design. The operating system, Db2 database, security model, work management, and application environment work as a team. This architecture supports IBM i’s reliability, data integrity, and security, making it attractive to varied businesses, including retailers, banks, manufacturers, distributors, and insurance companies.

That does not mean every IBM i environment is automatically modern. Some applications need modern web interfaces or API architecture. Integrations may need to be improved. Some systems need updated table design, security practices, newer open source tools, or better development workflows.

AI Potential

As companies explore AI, IBM i systems offer more than the trusted business data and rules that AI tools would need to access. IBM i offers a consistent, integrated, secure environment with a world-class database and a universal SQL interface. As a result, I’ve heard IBM i described as “the first agentic-native operating system.”

Going from AS/400 to IBM i

If you can imagine it, you can do it on IBM i. Backward compatibility lets you move at your own pace.

Now is the time to dream big, call the platform by its right name, and use the power that IBM has given us with this fascinating business platform.

Contact the Seiden team to explore new possibilities for your IBM i applications.

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2026-05-11 18:05:122026-07-21 11:41:11Your “AS/400” Is a Modern IBM i Platform
Alan Seiden

MCP + AI for IBM i Teams (with a MongoDB example)

January 30, 2026/0 Comments/in Analytics, BI, AI /by Alan Seiden

The Model Context Protocol (MCP) standard defines how AI tools connect to systems such as databases, services, and internal utilities. Instead of every AI product inventing its own custom connector, MCP provides a standard interface.

A good example comes from Seiden Group’s Jack Woehr in his article A Simple MongoDB MCP Server Agent. Jack was also just named MongoDB Creator of the Month. (MongoDb is a flexible NoSQL database that can manage large amounts of unstructured or semi-structured data.)

If you’re attending conferences this year, Jack will be talking about AI at NEUGC (April 7–9, 2026) and at COMMON POWERUp 2026 (April 27–30), where his sessions include “Using Large Language Models” and “AI on Power.”

Why IBM i teams should care

Most IBM i shops already live in a hybrid world: RPG + Db2 + CL alongside open source, APIs, web apps, and, increasingly, AI. MCP matters because it points toward a future where:

  • you don’t need a one-off integration for every AI experiment
  • you can put governance and guardrails around what AI can touch
  • you can modernize incrementally, bridging systems instead of rewriting them

MCP fits for IBM i because it helps make AI integration projects more standardized and repeatable.

How Seiden Group can help

At Seiden Group, we’re focused on practical modernization and development. If you’re exploring any mix of:

  • AI enablement (use cases, architecture, guardrails)
  • MongoDB in a hybrid IBM i environment
  • IBM i development and modernization (RPG, COBOL, SQL, APIs, open source)

We can help you evaluate options, build proof-of-concept projects, and implement production-ready solutions.

Get in touch to chat with us about your options.

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2026-01-30 10:20:392026-01-30 10:20:39MCP + AI for IBM i Teams (with a MongoDB example)
Alan Seiden

Seiden PHP+ Delivers PHP 8.5 to IBM i

November 17, 2025/0 Comments/in PHP /by Alan Seiden

PHP on IBM iEach year brings a new PHP release. We’ve prepared Seiden PHP+ so that IBM i users can adopt PHP 8.5 shortly after it becomes generally available (GA) around November 20, 2025. As I mentioned in Keep Your PHP Secure: Why Regular Updates Matter, PHP users should adopt a regular upgrade schedule to make upgrades easier.

November 20, 2025 UPDATE
PHP 8.5 and Seiden PHP+ 8.5 are both available as of today.

Notable Enhancements in PHP 8.5

Two updates stand out to me:

Read more →

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2025-11-17 12:46:192025-12-28 18:25:51Seiden PHP+ Delivers PHP 8.5 to IBM i
Alan Seiden

Keep Your PHP Secure: Why Regular Updates Matter

October 24, 2025/0 Comments/in PHP /by Alan Seiden

Seiden PHP+Cybersecurity best practices require regular security assessments, including for PHP.

We recommend installing PHP patch releases at least quarterly. You can review all regular PHP updates, including CVE security fixes, on the php.net changelog page. Our Seiden PHP+ changelog provides additional updates that we include in our supported Seiden PHP+ package.

Read more →

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2025-10-24 11:45:352026-02-13 15:02:05Keep Your PHP Secure: Why Regular Updates Matter
Alan Seiden

Ransomware Lessons from Brussels Airport and IBM i

October 13, 2025/0 Comments/in Security /by Alan Seiden

API & web security on IBM iAt Brussels Airport recently, I noticed airline staff working from paper passenger lists because their digital systems were unavailable. The EU Cybersecurity Agency (ENISA) later confirmed the disruption was caused by a ransomware attack on a third-party airline system (Reuters report).

Read more →

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2025-10-13 09:54:232025-10-13 10:02:27Ransomware Lessons from Brussels Airport and IBM i
Alan Seiden

A New Generation Shapes the Future of IBM i

September 22, 2025/0 Comments/in CIO Strategy /by Alan Seiden

In recent months, I have seen an unmistakable, growing wave of younger professionals choosing to invest their energy and creativity in the IBM i platform. This trend was particularly evident at the 2025 PowerUp conference.

Read more →

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2025-09-22 11:04:022025-09-22 11:04:02A New Generation Shapes the Future of IBM i
Alan Seiden

When Your IBM i Email Delivery Fails with Office 365 or Gmail

August 11, 2025/0 Comments/in IBM i /by Alan Seiden

Google_MailWe’ve been receiving about one request per week to help clients troubleshoot or fix SMTP email issues on IBM i systems—especially when sending to Microsoft (Office 365) and Gmail accounts.

These problems can affect a wide range of systems, including:

Read more →

https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png 0 0 Alan Seiden https://www.seidengroup.com/wp-content/uploads/2017/03/SeidenLogo-180.png Alan Seiden2025-08-11 08:15:482025-08-11 16:34:44When Your IBM i Email Delivery Fails with Office 365 or Gmail
Page 1 of 12123›»
SUBSCRIBE
Open Thinking
Monthly IBM i Strategy & Tips
  • This field is for validation purposes and should be left unchanged.

IBM i Development

  • RPG, COBOL, SQL, Node,
    PHP, Python, Valance, etc.
  • Modernization. Integration.
  • Web and API Solutions
  • Legacy Maintenance
    ...
LET'S GET IT DONE!

Recent Posts

  • Do You Need IBM i Observability?
  • PHP 8.6 is Coming Soon to IBM i
  • Safer npm installation is on the way for Node.js (and all JavaScript)
  • Access Modern Security for IBM i and Connected Web Environments
  • IBM i: A Natural Platform for Agentic AI
  • PHP on IBM i in 2026: The Modernization Engine
  • Your “AS/400” Is a Modern IBM i Platform
  • MCP + AI for IBM i Teams (with a MongoDB example)
  • GnuPG PHP Extension for IBM i: Now Included with Seiden Support
  • Getting Started with Code for IBM i: A Lunch & Learn Video

SEIDEN GROUP: Modern Development & Open Source for IBM i

Home   |   Seiden PHP+   |   IBM i Services  |   Support   |   VS Code for i   |   Free Stuff   |   Blog  |   Privacy Policy  |   Contact         201.447.2437

© 2026 Seiden Group, LLC
  • Link to LinkedIn
  • Link to Mail
Scroll to top Scroll to top Scroll to top