• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

installing Payflow pro

S

swebs

Guest
I have a few customers that are trying to use PayFlow Pro and according to Verisign I have to recomplie PHP to get pfpro support.

I'm running :
7.5.2-rh9.build75050128.10

Any help with the steps I need to do to accomplish this would be great.

Thanks in advance.
 
Hey there. Did you ever get this working? We've got the same situation that just came up.

Thanks,

-Nick Voth
 
nope.. no one ever answered. I'm not sure enough to attempt a recomplie without having some kind of step-by-step.
 
There are several suggestions and tricks on the PHP website about this
http://us3.php.net/pfpro

I don't use PFPro so don't take my word as gospel and I have no idea if this will work, break Plesk etc, so beware.

Your best bet may be the DSO installation suggestion
For those of you looking to install pfpro functionality without having to rebuild PHP, bear in mind that you can create a dso, which is especially useful for Red Hat Enterprise or other situations where you want to be able to automagically receive binary updates (such as Debian's apt-get).

The procedure for creating a dso on Red Hat is:

install php-devel from RPM, and get php source:

up2date --get-source php
rpm -i /var/spool/up2date/php-X.X.X.src.rpm

cd /usr/src/redhat/SOURCES
gunzip php-X.X.X.tar.gz
tar xvf php-X.X.X.tar
cd php-X.X.X/ext/pfpro
phpize
./configure
make
make install

Add the line:

extension=pfpro.so;

to /etc/php.d/pfpro.ini

and issue apachectl restart. Voila!
 
Anyone able to get the pfpro working with plesk?

The above command failes when I try:
up2date --get-source php

I'm running:
Red Hat Update Agent v3.1.23.2
PHP 4.3.2 (cgi),
Zend Engine v1.3.0, with Zend Extension
 
[root]# up2date --get-source php
usage: up2date [OPTIONS] [<packages>]

/usr/sbin/up2date: error: no such option: --get-source
 
Back
Top