Just installed Fedora Core 4, Apache, MySQL and PHP on my server. Everything runs great, but then I found out that I have to recompile PHP with Verisign's Payflow Pro module. Anybody did this and knows how to? Roman
Basically, it works like this: Download PHP, then unpack it: Code: tar xvfz php-5.0.4.tar.gz cd php-5.0.4/ ./configure --with-apxs=/path/to/apxs --enable-track-vars --enable-sockets --with-config-file-path=/etc --enable-ftp --with-mysql=/usr --with-pfpro=/path/to/PayFlowProDirectory [... a lot of other options] You can find out all configuration options by running Code: ./configure --help Then run Code: make make install
Do you have SSL enabled in your Apache? Is there a line Code: Listen 443 in your Apache configuration?
Listen 443 added I have added "Listen 443" into httpd.conf file just before the SSLCert..... Still doesn't work but comes up with a different error: The connection has terminated unexpectedly. Some data may have been transferred. Do I need to tell apache where to look for https content? Or setup a virtual host? Roman