Are there any best practices for setting up PHP on Windows IIS for hosting a dotnetnuke site?
When setting up PHP on Windows IIS for hosting a DotNetNuke site, it is important to ensure that the PHP version is compatible with DotNetNuke and that the necessary PHP extensions are enabled. It is also recommended to configure the PHP settings such as memory_limit, max_execution_time, and error_reporting to meet the requirements of the DotNetNuke site.
; Enable required PHP extensions for DotNetNuke
extension=php_curl.dll
extension=php_gd2.dll
extension=php_mbstring.dll
; Configure PHP settings for DotNetNuke
memory_limit = 256M
max_execution_time = 300
error_reporting = E_ALL & ~E_NOTICE