Top "Fsockopen" questions

PHP function used to open (Internet or Unix domain) sockets connections.

How do I use fsockopen() to open a Telnet connection with a password?

I'd like to access a camera through it's Telnet capability. The problem is, it has Password-protection. This is no problem …

php telnet fsockopen
Unable to establish TLS connection in PHP via fsockopen

I'm trying since a couple of days to establish a TLS connection to a SMTP server in PHP via fsockopen() …

php ssl fsockopen
Enable SSL in PHP fsockopen()

I am using PHP fsockopen() to finalize a payment between my server and PayPal. However, when I try to use …

configuration ssl php fsockopen
Which is better approach between fsockopen and curl?

I am creating an app for Automated Recurring Billing. Please let me know which option should I opt for sending …

php curl payment-gateway fsockopen
fsockopen ssl connection not working

I'm trying to use php function fsockopen on a smtp server using ssl on port 465 on my local server with …

php openssl fsockopen
using php Download File From a given URL by passing username and password for http authentication

I need to download a text file using php code. The file is having http authentication. What procedure I should …

php curl fsockopen
fsockopen() error about sending mail in php

I want to send a confirmation e-mail to user when the user has registered. I am using xampp. When I …

php ssl smtp xampp fsockopen
Use fsockopen with proxy

I have a simple whois script if($conn = fsockopen ($whois_server, 43)) { fputs($conn, $domain."\r\n"); while(!feof($conn)) { $output .= …

php proxy fsockopen whois
connect to a server via sftp php

how do we connect to a remote server via sftp to verify if the login details are valid in php... …

php curl ftp sftp fsockopen
file_get_contents with https requests via proxy

How to do HTTPS requests via proxy server The proxy server is tinyproxy on debian code $context = stream_context_create([ …

php https proxy fsockopen