ftp_ssl_connect problom

Not for 'how-to' coding questions but PHP theory instead, this forum is here for those of us who wish to learn about design aspects of programming with PHP.

Moderator: General Moderators

Post Reply
asifkamalzahid
Forum Commoner
Posts: 36
Joined: Tue Nov 18, 2008 8:00 am

ftp_ssl_connect problom

Post by asifkamalzahid »

ftp_ssl_connect problom
i run my php program for uploading file from my server to another server.
it works with normal ftp connection but it has problom with ftp_ssl_connect function.

it gives me an error u calling an undefined function (ftp_ssl_connect)
i read the follwing information on the php.net site about this problom, but i realy not understand what means by compile your own binaries.

ftp_ssl_connect() is only available if both the ftp module and the OpenSSL support is built staticlly into php, this means that on Windows this function will be undefined in the official PHP builds. To make this function available on Windows you must compile your own PHP binaries.
josh
DevNet Master
Posts: 4872
Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida

Re: ftp_ssl_connect problom

Post by josh »

Means you have to get the sources and compile in whatever functionality you need. This is not a theory or design Q either
Post Reply