I’ve been a long time user of ASPMaker and wanted to try PHPMaker. So I installed PHP Version 7.4.6 and edited the php.ini to work with my production IIS server.
I know my php is working since the following command gave me the configuration:
<?php phpinfo(); ?>I then installed phpmaker 2020.0.15. I also installed Composer. I know the latter is working since it executed properly from a Command Prompt.
I then tested phpmaker. After generating the files I accessed it from my browser. I got an error saying:
“PHP COM extension required for database type ‘ACCESS’ is not installed on this server. Note that Windows server is required for database type ‘ACCESS’ and as of PHP 5.3.15/5.4.5, the COM extension requires php_com_dotnet.dll to be enabled in php.ini. See http://php.net/manual/en/com.installation.php for details.”
I looked at the “ext” folder and saw a file “php_com_dotnet.dll”. So I added in the php.ini file the following:
extension=php_com_dotnet.dll
After restarting IIS I browsed the site and now the error says:
“This page isn’t working. Localhost is currently unable to handle this request.
HTTP ERROR 500”
My setup:
OS: Windows 10 Pro 64-bit
Database: MS Access Version Microsoft 365
PHP: Version 7.4.6
Composer: version 1.10.6 2020-05-06
Appreciate your assistance.
Thank you.