calling wget from a browser using php
0
My httpd is running with a daemon user. I want to do a wget using php from FTP server. When I run the php from linux server, the same downloads the required file from FTP. But when I call the same php from browser, it does not download the file. On checking the logs of of apache2, I found the below error message. wget: /opt/lampstack-5.6.31-0/common/lib/libcrypto.so.1.0.0: no version information available (required by wget) wget: /opt/lampstack-5.6.31-0/common/lib/libssl.so.1.0.0: no version information available (required by wget) wget: /opt/lampstack-5.6.31-0/common/lib/libssl.so.1.0.0: no version information available (required by wget) Can I know how to run wget and download required file to overcome this error?
apache-httpd php wget