Solved PHP 7.3 + Apache 2.4.41 + Multiple TLD's (PHP Quit Working)

Hey everyone! Back again,

I originally received help from a bunch of people and most notably in these regards to anlashok on this thread !

I eventually added another domain and broke PHP after having to move from PHP 7.4 to PHP 7.3 (the version change didn't have anything to do with it; but rather a compatibility with PHP Software).

I am guessing it's something simple that I did wrong and hopefully I can get pointed in the right direction to get this moving along correctly.

As always; Thanks a bunch!

Best Regards,

Brandon

Next post's will be the configuration files.
 
Apache 2.4.41 httpd.conf:

Code:
erverRoot "/usr/local"
LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so
Listen IP-ADDRESS:80

# ALT APACHE MODES (NON-PHP-FPM)

#LoadModule mpm_prefork_module libexec/apache24/mod_mpm_prefork.so
#LoadModule mpm_worker_module libexec/apache24/mod_mpm_worker.so

# BARE MINIMUM - REQUIRED

LoadModule authn_core_module libexec/apache24/mod_authn_core.so
LoadModule authz_core_module libexec/apache24/mod_authz_core.so
LoadModule log_config_module libexec/apache24/mod_log_config.so
LoadModule expires_module libexec/apache24/mod_expires.so
LoadModule headers_module libexec/apache24/mod_headers.so
LoadModule version_module libexec/apache24/mod_version.so
LoadModule unixd_module libexec/apache24/mod_unixd.so
LoadModule vhost_alias_module libexec/apache24/mod_vhost_alias.so
LoadModule dir_module libexec/apache24/mod_dir.so
LoadModule rewrite_module libexec/apache24/mod_rewrite.so
LoadModule mime_module  libexec/apache24/mod_mime.so
LoadModule actions_module libexec/apache24/mod_actions.so
LoadModule alias_module libexec/apache24/mod_alias.so
LoadModule authz_host_module libexec/apache24/mod_authz_host.so
LoadModule access_compat_module libexec/apache24/mod_access_compat.so
LoadModule proxy_module libexec/apache24/mod_proxy.so
LoadModule proxy_fcgi_module libexec/apache24/mod_proxy_fcgi.so

# CHOSEN MODULES - EXTENDABLES

LoadModule authz_user_module libexec/apache24/mod_authz_user.so
LoadModule auth_basic_module libexec/apache24/mod_auth_basic.so
LoadModule autoindex_module libexec/apache24/mod_autoindex.so


# THIRD PARTY MODULES

IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf

<IfModule unixd_module>

User www
Group www

</IfModule>

# TLD - TLD1.tldextension

<VirtualHost tld1.tldextension:80>

ServerAdmin admin@tld1.tldextension

ServerName tld1.tldextension:80

DocumentRoot "/usr/local/www/apache24/data/tld1/"

ProxyPassMatch "^/(.*\.php(/.*)?)$" "unix:/var/run/php-fpm-sysorg.sock|fcgi://localhos>

<Directory "/usr/local/www/apache24/data/tld1/">

    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

ErrorLog "/var/log/httpd-tld1-tldextension-main-error.log"

LogLevel warn

<IfModule log_config_module>

    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
    </IfModule>

    CustomLog "/var/log/httpd-tld1-tldextension-main-access.log" common

</IfModule>

#<FilesMatch "\.php$">
#    <If "-f %{REQUEST_FILENAME}">
#      SetHandler "proxy:unix:/var/run/tld1.tldextension-php-fpm.sock|fcgi://localh>
#    </If>
#  </FilesMatch>
</VirtualHost>

#<FilesMatch "\.php$">
#    <If "-f %{REQUEST_FILENAME}">
#      SetHandler "proxy:unix:/var/run/tld1.tldextension-php-fpm.sock|fcgi://localh>
#    </If>
#  </FilesMatch>

# TLD - TLD2.tldextension

<VirtualHost tld2.tldextension:80>

ServerAdmin admin@tld2.tldextension

ServerName tld2.tldextension:80

DocumentRoot "/usr/local/www/apache24/data/tld2/"

ProxyPassMatch "^/(.*\.php(/.*)?)$" "unix:/var/run/php-fpm-sysorg.sock|fcgi://localhos>

<Directory "/usr/local/www/apache24/data/tld2/">

    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

ErrorLog "/var/log/httpd-tld2-tldextension-main-error.log"

LogLevel warn

<IfModule log_config_module>

    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
    </IfModule>

    CustomLog "/var/log/httpd-tld2-tldextension-main-access.log" common

</IfModule>

#<FilesMatch "\.php$">
#    <If "-f %{REQUEST_FILENAME}">
#      SetHandler "proxy:unix:/var/run/tld2.tldextension-php-fpm.sock|fcgi://localh>
#    </If>
#  </FilesMatch>
</VirtualHost>

#<FilesMatch "\.php$">
#    <If "-f %{REQUEST_FILENAME}">
#      SetHandler "proxy:unix:/var/run/tld2.tldextension-php-fpm.sock|fcgi://localh>
#    </If>
#  </FilesMatch>
 
PHP 7.3 php-fpm /usr/local/etc/php-fpm.d/www.conf:

Code:
[global]
; global settings, alter to your requirements
;pid = run/tld1-main-php-fpm.pid
;error_log = log/tld1-main-php-fpm.log
pid = run/global-php-fpm.pid
error_log = log/global-php-fpm.log

syslog.facility = daemon
syslog.ident = php-fpm
log_level = notice

emergency_restart_threshold = 2
emergency_restart_interval = 30
process_control_timeout = 60
process.max = 128
daemonize = yes

; host specific settings, again feel free to adjust to your needs

[tld1.tldextension]

user = www
group = www
; this next line needs to match the wording of the httpd setHandler above, I chose you>
listen = /var/run/tld1.tldextension-php-fpm.sock
listen.owner = www
listen.group = www
listen.mode = 0660
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.max_requests = 500
request_terminate_timeout = 300
security.limit_extensions = .php
;error_log=log/tld1main-php-fpm.log
;pid = run/tld1-main-php-fpm.pid

[tld2.tldextension]

user = www
group = www
; this next line needs to match the wording of the httpd setHandler above, I chose you>
listen = /var/run/tld2.tldextension-php-fpm.sock
listen.owner = www
listen.group = www
listen.mode = 0660
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.max_requests = 500
request_terminate_timeout = 300
security.limit_extensions = .php
;error_log=log/tld2main-php-fpm.log
;pid = run/tld2-main-php-fpm.pid
 
Since upgrading the original fix from anlashok to 2 TLD's instead of 1; the following 503 PHP error:

Code:
Service Unavailable

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
 
You still need to have the relevant SetHandler blocks inside each discrete <virtualhost> section otherwise the PHP requests don't get forwarded on to php-fpm. Also check the spellings of localhost/localho/localh in each set handler section.

Assuming you want a separate php-fpm process for the new domain, I would suggest the easiest way to set up the new domain is to take your working configuration from when you had only one domain, then make an exact copy of the existing <virtualhost> section for the new TLD2, then just change all occurrences of the first TLD1 to the new TLD2 in the new <virtualhost> section.

In php-fpm.conf do exactly the same, duplicate the existing [tld1.extension] block and just rename all occurrences of TLD1 to TLD2 in the new section.

restart php-fpm then apache24 services and you should be good to go.
 
You still need to have the relevant SetHandler blocks inside each discrete <virtualhost> section otherwise the PHP requests don't get forwarded on to php-fpm. Also check the spellings of localhost/localho/localh in each set handler section.

Assuming you want a separate php-fpm process for the new domain, I would suggest the easiest way to set up the new domain is to take your working configuration from when you had only one domain, then make an exact copy of the existing <virtualhost> section for the new TLD2, then just change all occurrences of the first TLD1 to the new TLD2 in the new <virtualhost> section.

In php-fpm.conf do exactly the same, duplicate the existing [tld1.extension] block and just rename all occurrences of TLD1 to TLD2 in the new section.

restart php-fpm then apache24 services and you should be good to go.
anglashok,

I believe "ProxyPassMatch" line was added after I couldn't get the second working and I was checking online.
The line also cut off:
Code:
ProxyPassMatch "^/(.*\.php(/.*)?)$" "unix:/var/run/php-fpm-tld1.sock|fcgi://localhost/usr/local/www/apache24/data/tld1/"
I know that wasn't the line you suggested.

I remember now after changing the lines back; I am receiving the following:
Code:
service php-fpm restart
Performing sanity check on php-fpm configuration:
[02-Feb-2020 09:51:31] NOTICE: configuration file /usr/local/etc/php-fpm.conf test is successful

php_fpm not running? (check /var/run/php-fpm.pid).
Performing sanity check on php-fpm configuration:
[02-Feb-2020 09:51:31] NOTICE: configuration file /usr/local/etc/php-fpm.conf test is successful

Starting php_fpm.
[02-Feb-2020 09:51:31] ERROR: Another FPM instance seems to already listen on /var/run/tld1-php-fpm.sock
[02-Feb-2020 09:51:31] ERROR: FPM initialization failed
/usr/local/etc/rc.d/php-fpm: WARNING: failed to start php_fpm
root@tld1:/usr/local/etc/apache24 #
It seems to not allow a second instance; even when both httpd.conf & www.conf lines are /var/run/tld1-php-fpm.sock & /var/run/tld2-php-fpm.sock ... Not sure why.
 
I changed the global line on www.conf :
Code:
[global]
; global settings, alter to your requirements
;pid = run/tld1-php-fpm.pid
;error_log = log/tld1-php-fpm.log
pid = run/global-php-fpm.pid
error_log = log/global-php-fpm.log
Should the global line be set toward tld1 and then the [tld1] set to tld1 and [tld2] set to tld2 ?
 
This is what happens with a stop / restart :
Code:
root@tld1:/usr/local/etc/php-fpm.d # service php-fpm stop
php_fpm not running? (check /var/run/php-fpm.pid).
root@tld1:/usr/local/etc/php-fpm.d # service php-fpm start
Performing sanity check on php-fpm configuration:
[02-Feb-2020 10:02:04] NOTICE: configuration file /usr/local/etc/php-fpm.conf test is successful

Starting php_fpm.
[02-Feb-2020 10:02:04] ERROR: Another FPM instance seems to already listen on /var/run/tld1-php-fpm.sock
[02-Feb-2020 10:02:04] ERROR: FPM initialization failed
/usr/local/etc/rc.d/php-fpm: WARNING: failed to start php_fpm
root@tld1:/usr/local/etc/php-fpm.d #
 
When I go to test a TLD info.php page... I am receiving a

"File not found. " white page.

This is even after rebooting the server.
 
Now... when I only enable ProxyPassMatch on TLD2 ... I receive a 503

Code:
Service Unavailable

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
...

Trying every combo over here.
 
Sounds like you have set both php-fpm configurations to the same name/sock which is not correct.

Try these

/usr/local/etc/apache24/httpd.conf
Code:
ServerRoot "/usr/local"
LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so
Listen IP-ADDRESS:80

# ALT APACHE MODES (NON-PHP-FPM)
#LoadModule mpm_prefork_module libexec/apache24/mod_mpm_prefork.so
#LoadModule mpm_worker_module libexec/apache24/mod_mpm_worker.so

# BARE MINIMUM - REQUIRED

LoadModule authn_core_module libexec/apache24/mod_authn_core.so
LoadModule authz_core_module libexec/apache24/mod_authz_core.so
LoadModule log_config_module libexec/apache24/mod_log_config.so
LoadModule expires_module libexec/apache24/mod_expires.so
LoadModule headers_module libexec/apache24/mod_headers.so
LoadModule version_module libexec/apache24/mod_version.so
LoadModule unixd_module libexec/apache24/mod_unixd.so
LoadModule vhost_alias_module libexec/apache24/mod_vhost_alias.so
LoadModule dir_module libexec/apache24/mod_dir.so
LoadModule rewrite_module libexec/apache24/mod_rewrite.so
LoadModule mime_module  libexec/apache24/mod_mime.so
LoadModule actions_module libexec/apache24/mod_actions.so
LoadModule alias_module libexec/apache24/mod_alias.so
LoadModule authz_host_module libexec/apache24/mod_authz_host.so
LoadModule access_compat_module libexec/apache24/mod_access_compat.so
LoadModule proxy_module libexec/apache24/mod_proxy.so
LoadModule proxy_fcgi_module libexec/apache24/mod_proxy_fcgi.so

# CHOSEN MODULES - EXTENDABLES

LoadModule authz_user_module libexec/apache24/mod_authz_user.so
LoadModule auth_basic_module libexec/apache24/mod_auth_basic.so
LoadModule autoindex_module libexec/apache24/mod_autoindex.so

# THIRD PARTY MODULES

IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf

<IfModule unixd_module>
    User www
    Group www
</IfModule>

<VirtualHost tld1.tldextension:80>
    # domain1 - tld1.tldextension, you need to change this everywhere inside this VirtualHost section, eg on lines marked  #***
    ServerAdmin admin@tld1.tldextension    #***
    ServerName tld1.tldextension:80        #***
    DocumentRoot "/usr/local/www/apache24/data/tld1/"    #***

    <Directory "/usr/local/www/apache24/data/tld1/">    #***
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
    </Directory>

    <IfModule dir_module>
        DirectoryIndex index.html index.php
    </IfModule>

    <Files ".ht*">
        Require all denied
    </Files>

    ErrorLog "/var/log/httpd-tld1.tldextension-main-error.log"    #***
    LogLevel warn
    
    <IfModule log_config_module>
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
        <IfModule logio_module>
        </IfModule>
        CustomLog "/var/log/httpd-tld1.tldextension-main-access.log" common    #***
    </IfModule>

    <FilesMatch "\.php$">
        <If "-f %{REQUEST_FILENAME}">
            SetHandler "proxy:unix:/var/run/tld1.tldextension-php-fpm.sock|fcgi://localhost>    #***
        </If>
    </FilesMatch>
</VirtualHost>

<VirtualHost tld2.tldextension:80>
    # domain2 - tld2.tldextension, you need to change this everywhere inside this VirtualHost section, eg on lines marked  #***
    ServerAdmin admin@tld2.tldextension    #***
    ServerName tld2.tldextension:80        #***
    DocumentRoot "/usr/local/www/apache24/data/tld2/"    #***

    <Directory "/usr/local/www/apache24/data/tld2/">    #***
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
    </Directory>

    <IfModule dir_module>
        DirectoryIndex index.html index.php
    </IfModule>

    <Files ".ht*">
        Require all denied
    </Files>

    ErrorLog "/var/log/httpd-tld2.tldextension-main-error.log"    #***
    LogLevel warn
    
    <IfModule log_config_module>
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
        <IfModule logio_module>
        </IfModule>
        CustomLog "/var/log/httpd-tld2.tldextension-main-access.log" common    #***
    </IfModule>

    <FilesMatch "\.php$">
        <If "-f %{REQUEST_FILENAME}">
            SetHandler "proxy:unix:/var/run/tld2.tldextension-php-fpm.sock|fcgi://localhost>    #***
        </If>
    </FilesMatch>
</VirtualHost>

/usr/local/etc/php-fpm.conf
note $pool below means that the name in the preceding [set of square brackets] gets substituted automatically, in your case either tld1.extension or tld2.tldextension

Code:
[global]
; global settings, alter to your requirements
pid = run/global-php-fpm.pid
error_log = log/global-php-fpm.log
syslog.facility = daemon
syslog.ident = php-fpm
log_level = notice
emergency_restart_threshold = 2
emergency_restart_interval = 30
process_control_timeout = 60
process.max = 128
daemonize = yes

[tld1.tldextension]
; settings for domain 1
user = www
group = www
listen = /var/run/$pool-php-fpm.sock
listen.owner = www
listen.group = www
listen.mode = 0660
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.max_requests = 500
request_terminate_timeout = 300
security.limit_extensions = .php

[tld2.tldextension]
;settings for domain2
user = www
group = www
listen = /var/run/$pool-php-fpm.sock
listen.owner = www
listen.group = www
listen.mode = 0660
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.max_requests = 500
request_terminate_timeout = 300
security.limit_extensions = .php
 
Sounds like you have set both php-fpm configurations to the same name/sock which is not correct.

Try these

/usr/local/etc/apache24/httpd.conf
Code:
ServerRoot "/usr/local"
LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so
Listen IP-ADDRESS:80

# ALT APACHE MODES (NON-PHP-FPM)
#LoadModule mpm_prefork_module libexec/apache24/mod_mpm_prefork.so
#LoadModule mpm_worker_module libexec/apache24/mod_mpm_worker.so

# BARE MINIMUM - REQUIRED

LoadModule authn_core_module libexec/apache24/mod_authn_core.so
LoadModule authz_core_module libexec/apache24/mod_authz_core.so
LoadModule log_config_module libexec/apache24/mod_log_config.so
LoadModule expires_module libexec/apache24/mod_expires.so
LoadModule headers_module libexec/apache24/mod_headers.so
LoadModule version_module libexec/apache24/mod_version.so
LoadModule unixd_module libexec/apache24/mod_unixd.so
LoadModule vhost_alias_module libexec/apache24/mod_vhost_alias.so
LoadModule dir_module libexec/apache24/mod_dir.so
LoadModule rewrite_module libexec/apache24/mod_rewrite.so
LoadModule mime_module  libexec/apache24/mod_mime.so
LoadModule actions_module libexec/apache24/mod_actions.so
LoadModule alias_module libexec/apache24/mod_alias.so
LoadModule authz_host_module libexec/apache24/mod_authz_host.so
LoadModule access_compat_module libexec/apache24/mod_access_compat.so
LoadModule proxy_module libexec/apache24/mod_proxy.so
LoadModule proxy_fcgi_module libexec/apache24/mod_proxy_fcgi.so

# CHOSEN MODULES - EXTENDABLES

LoadModule authz_user_module libexec/apache24/mod_authz_user.so
LoadModule auth_basic_module libexec/apache24/mod_auth_basic.so
LoadModule autoindex_module libexec/apache24/mod_autoindex.so

# THIRD PARTY MODULES

IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf

<IfModule unixd_module>
    User www
    Group www
</IfModule>

<VirtualHost tld1.tldextension:80>
    # domain1 - tld1.tldextension, you need to change this everywhere inside this VirtualHost section, eg on lines marked  #***
    ServerAdmin admin@tld1.tldextension    #***
    ServerName tld1.tldextension:80        #***
    DocumentRoot "/usr/local/www/apache24/data/tld1/"    #***

    <Directory "/usr/local/www/apache24/data/tld1/">    #***
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
    </Directory>

    <IfModule dir_module>
        DirectoryIndex index.html index.php
    </IfModule>

    <Files ".ht*">
        Require all denied
    </Files>

    ErrorLog "/var/log/httpd-tld1.tldextension-main-error.log"    #***
    LogLevel warn
  
    <IfModule log_config_module>
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
        <IfModule logio_module>
        </IfModule>
        CustomLog "/var/log/httpd-tld1.tldextension-main-access.log" common    #***
    </IfModule>

    <FilesMatch "\.php$">
        <If "-f %{REQUEST_FILENAME}">
            SetHandler "proxy:unix:/var/run/tld1.tldextension-php-fpm.sock|fcgi://localhost>    #***
        </If>
    </FilesMatch>
</VirtualHost>

<VirtualHost tld2.tldextension:80>
    # domain2 - tld2.tldextension, you need to change this everywhere inside this VirtualHost section, eg on lines marked  #***
    ServerAdmin admin@tld2.tldextension    #***
    ServerName tld2.tldextension:80        #***
    DocumentRoot "/usr/local/www/apache24/data/tld2/"    #***

    <Directory "/usr/local/www/apache24/data/tld2/">    #***
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
    </Directory>

    <IfModule dir_module>
        DirectoryIndex index.html index.php
    </IfModule>

    <Files ".ht*">
        Require all denied
    </Files>

    ErrorLog "/var/log/httpd-tld2.tldextension-main-error.log"    #***
    LogLevel warn
  
    <IfModule log_config_module>
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
        <IfModule logio_module>
        </IfModule>
        CustomLog "/var/log/httpd-tld2.tldextension-main-access.log" common    #***
    </IfModule>

    <FilesMatch "\.php$">
        <If "-f %{REQUEST_FILENAME}">
            SetHandler "proxy:unix:/var/run/tld2.tldextension-php-fpm.sock|fcgi://localhost>    #***
        </If>
    </FilesMatch>
</VirtualHost>

/usr/local/etc/php-fpm.conf
note $pool below means that the name in the preceding [set of square brackets] gets substituted automatically, in your case either tld1.extension or tld2.tldextension

Code:
[global]
; global settings, alter to your requirements
pid = run/global-php-fpm.pid
error_log = log/global-php-fpm.log
syslog.facility = daemon
syslog.ident = php-fpm
log_level = notice
emergency_restart_threshold = 2
emergency_restart_interval = 30
process_control_timeout = 60
process.max = 128
daemonize = yes

[tld1.tldextension]
; settings for domain 1
user = www
group = www
listen = /var/run/$pool-php-fpm.sock
listen.owner = www
listen.group = www
listen.mode = 0660
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.max_requests = 500
request_terminate_timeout = 300
security.limit_extensions = .php

[tld2.tldextension]
;settings for domain2
user = www
group = www
listen = /var/run/$pool-php-fpm.sock
listen.owner = www
listen.group = www
listen.mode = 0660
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.max_requests = 500
request_terminate_timeout = 300
security.limit_extensions = .php

anlashok,

LORD Bless you and your family! Soon as I replaced tld.tldextension on the /usr/local/etc/php-fpm.d/www.conf line to $pool ; reloaded; received the same ERROR: FPM initialization failed. However; all worked like butter!

Thank you very very much!

~ Best Regards Always

Brandon
 
Back
Top