View Issue Details

IDProjectCategoryView StatusLast Update
0004361Windows and other desktop OSServerpublic2025-04-30 12:48
ReporterDigitalMy 
PrioritynormalSeverityminorReproducibilityhave not tried
Status assignedResolutionopen 
Summary0004361: Install multiple SSL web sites to one Windows server OS with Apache
DescriptionEdit httpd.conf add:
LoadModule ssl_module modules/mod_ssl.so

first run Apache in the same Windows 2008R2 OS
transfer all web sites from IIS to Apache with php

leave ftp sites in IIS
TagsNo tags attached.
FinishDate
StartDate2022-02-22
WasteTime5
PriorityIndex6
LaboriousnessIndex1

Activities

DigitalMy

2021-07-12 12:48

administrator   ~0007051

Last edited: 2025-04-30 12:48

View 3 revisions

Add PHP to Apache web server

PHPIniDir " /apache/php"
AddHandler application/x-httpd-php .php
LoadModule php7_module " /apache/php/php7apache2_4.dll"

Got errors:
PHP Warning: PHP Startup: Unable to load dynamic library ' \apache\php\ext\php_sqlsrv_73_ts_x64.dll' -
PHP Warning: PHP Startup: Unable to load dynamic library ' \apache\php\ext\php_curl.dll' - %1 Win32.
PHP Warning: PHP Startup: Unable to load dynamic library ' \apache\php\ext\php_openssl.dll' - %1.
PHP Warning: PHP Startup: Unable to load dynamic library ' \apache\php\ext\php_enchant.dll
 in Unknown on line 0

I had to copy ssleay32.dll and libeay32.dll from apache\php dir to apache\bin dir - and it solved error.

fixed by putting proper driver version
extension=php_sqlsrv_82_ts_x64.dll
for this PHP Version 8.2.12 x64 TS

DigitalMy

2025-04-19 18:06

administrator   ~0014423

Last edited: 2025-04-20 07:55

View 2 revisions

Use xampp distributive
installed with php
SSL works fine for several sites now

DigitalMy

2025-04-20 16:06

administrator   ~0014424

Allow root index open in Directory:
<FilesMatch "^()$">
    Require all granted
</FilesMatch>