How to determine if we have php.net?

lancelyons

New member
Im relatively new to php. we have been asked to containerize a php 8.0 application that is running under IIS on a windows server. I am assuming this is php.net but I am not sure. We want to use linux containers solely and so if this is php.net then it wont run in linux.

How do I find if I am using php.net or anything that ties the app to .net?
 
what do you mean by php.net? wiki says that .net does not have PHP.

Anyway if your app is written at php it could be moved to Docker.
Just make sure it does not depend on any not linux software like MS Word, who knows what services you use
 
The errors in your logs indicate a PHP application running on a Linux server, not tied to .NET. To check the PHP version, run php -v in the terminal. You can specify PHP 8.0 in your Dockerfile for containerization.

Best Regard
Danish Hafeez | QA Assistant
ICTInnovations
 
Back
Top