DigitalOcean support team couldnt solve this issue. i ve Ubuntu 16.04 with php7, apache2, PostgreSQL v9.5 and im running php code to read data form PostgreSQL from my 2nd server.
here is the code php http://pastebin.com/R3bwfXtR
but im getting Call to undefined function pg_Connect() in /home/f****/public_html/.****.net/new.php on line 11
php -i result: http://pastebin.com/5z6G73Tw
i tried like every possible soluitons but no luck. im open to all solutions i can give u server access if u really needed
Please help
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Did you ever figure it out, I’ve got the same problem using same snippet of PHP
@canf113378ba95d
The actual function is
pg_connect
notpg_Connect
(you’re using a C instead of c in the function name).The function should look like the following:
Hi,
Try installing this: apt-get install php5-pgsql And also check your command is pg_connect all lower case.
Make sure you restart apache afterwards.
If that’s still failing afterwards perhaps add the port to your connection string,
Thanks
Mike