Tagged Questions
The fsockopen tag has no wiki summary.
9
votes
3answers
14k views
Unable to find the socket transport “https”
I'm using this to check for the availability of a URL:
$fp = fsockopen("$url", 443, $errno, $errstr);
and I get this error back...
Warning: fsockopen() [function.fsockopen]: unable to connect to ...
3
votes
3answers
69 views
Is fsockopen generally slow?
I am trying to perform a downstream bandwidth speed test in PHP. I dunno why wget would download 1 Mbyte data in 400 Mbps while fsockopen does it in 170 Mbps. I am using fsockopen since it is ...
3
votes
3answers
90 views
Does my server's port 8080 have to be open when connecting to a remote 8080 port?
I'm trying to use fsockopen() to connect from my apache server to a remote API server. The remote server script I need to connect to runs on port 8080.
The following keeps returning a 101 connection ...
3
votes
2answers
87 views
How check if file exists from web address url in php?
I need to check if a particular file exists on a remove server:
http://www.site.com/images/test.jpg
is_file and file_exists doesn't don't work. Any ideas how to do this quickly and easily?
3
votes
2answers
2k views
Upload a file to Google Code Hosting with PHP and fsockopen()
Google Code Hosting has the ability to upload files to it remotely. I've been trying to program a script in PHP which uploads files to my account. Here's the script itself:
<?php
/* I censored a ...
2
votes
2answers
55 views
Using fsockopen to POST to a GET query URL
Whats wrong with this raw HTTP call using fsockopen?
POST /api/?action=report HTTP/1.1
Host: www.webhosting-performance.com
Content-Type: application/x-www-form-urlencoded
Conent-Length: 9
...
2
votes
1answer
48 views
fsockopen does not always perform the mysql queries when page is refreshed
Server A uses fsockopen, fwrite, and fgets to collect information from remote server B. Remote server B creates mysql queries and provides this info. When server A first loads, all the information ...
2
votes
2answers
66 views
fsockopen inside php to a remote server, what IP will the remote server get?
Background :
My apache webserver runs on two virtual host with two different IP address. I have whitelisted both of these IPs to the remote SMPP server/system. I would be communicating to the remote ...
2
votes
1answer
143 views
problem communicating with gmail imap server using fsockopen in php
i m able to communicate using the imap functions in php and also using the openssl from commandline ,i just wanted to try this doing fsockopen() in php.
my code is :
<?php
...
2
votes
1answer
51 views
Sessions in programmatically requested pages
After doing some research on this issue, I couldn't find any satisfying fix.
The problem is:
I'm performing a GET request programmatically. The request itself works fine and the requested page does ...
2
votes
1answer
253 views
Setup a TCP listener in PHP
We're using a system at the moment that takes an incoming JSON request over TCP and responds using JSON too. Currently I've set up my socket like so in PHP:
$socket = fsockopen($host, $port, $errno, ...
2
votes
2answers
347 views
fsockopen connection does not close until timeout
Background:
I have to create a plain site that accepts incoming posted XML and sends the XML to a server via a socket connection and in turn display the XML sent back from the server. Easy peasy.
...
2
votes
2answers
249 views
Error connecting through proxy in wordpress plugin via fsockopen
I'm using the stats plugin for wordpress which uses a core wordpress class IXR_Client in class-IXR. Although according to documentation it uses the proxy config found in wp-config.php I see no way it ...
2
votes
3answers
234 views
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 the request to server
fockeopen
curl
and why one is better than another?
2
votes
1answer
411 views
Paypal IPN call - fsockopen timeout
Warning: fsockopen()
[function.fsockopen]: unable to
connect to www.paypal.com:443
(Connection timed out)
This has worked previously? And suddenly has stopped working.
Any ideas?
This is ...
2
votes
2answers
96 views
Rare strange readings with fsockopen
I'm using fsockopen on a small cronjob to read and parse feeds on different servers. For the most past, this works very well. Yet on some servers, I get very weird lines in the response, like this:
...
2
votes
3answers
13k views
php_network_getaddresses: getaddrinfo failed: Name or service not known
Here is a snippet of my code
$fp = fsockopen($s['url'], 80, $errno, $errstr, 5);
if($fp){
fwrite($fp, $out);
fclose($fp);
When I run it, it outputs:
...
2
votes
4answers
141 views
File resource persistence in PHP
I'm developing a simple chat web application based on the MSN protocol. The server communicates with the MSN server through a file resource returned from fsockopen (). The client accesses the server ...
2
votes
2answers
541 views
Why does fsockopen have performance problems and not fopen when sending a POST request in PHP?
I have tried two different implementations for simulating POSTing a form. One uses fsockopen (example here: http://www.faqts.com/knowledge_base/view.phtml/aid/7962) and the other uses fopen (example ...
1
vote
1answer
29 views
Can I open socket in PHP from a specific IP (if the machine has two IPs)?
I'm using PHPMailer and it uses fsockopen to access the SMTP server.
But the machine has two IPs with different reverse DNS records. So in email headers I got the following:
Received: from ...
1
vote
3answers
53 views
Unable to connect with fsockopen in PHP (Connection timed out)
I developped an application for a friend and he recently changed his dedicated server for overload problems.
Since this migration, a part of the site doesn't work anymore : a connection on a socket ...
1
vote
4answers
200 views
PayPal IPN with fsockopen returns NULL
I'm trying to set up the PayPal IPN on my web application, I copied from PayPal's documentation on an example PHP snippet which is found here.
However, when I'm testing with the PayPal's sandbox, ...
1
vote
1answer
56 views
fsockopen demo at localhost
Can anybody help me to sort out fsockopen issue in localhost.
I created fsock.php to post a variable to test121.php in the same folder.
http://localhost/ftp/fsock.php
<?php
$fp = ...
1
vote
2answers
111 views
fsockopen have errors : HTTP/1.1 301 Moved Permanently and 404
I have used this code to open whatismyipaddress.com
$fp = fsockopen("whatismyipaddress.com", 80, $errno, $errstr, 5);
if ($fp) {
$url = "/";
fputs($fp, "GET $url HTTP/1.1\r\nHost: ...
1
vote
1answer
54 views
Please help me to fix fsockopen error
Please help me to fix my code
$fp = fsockopen("projecthoneypot.org/statistics.php", 80, $errno, $errstr, 5);
if ($fp) {
$url = "/";
fputs($fp, "GET $url HTTP/1.1\r\nHost: ...
1
vote
1answer
279 views
I need to go through a proxy, (from a running fsockopen code that gets the size from a remote video file)
I've a PHP running code that ask the file size of a remote mp4 file, thanks to a fsockopen function and HEAD command.
Now, i need to move this code to other server behind a proxy, which is the best ...
1
vote
1answer
148 views
Asynchronous requests not working using fsock - php - Nginx
I have a php script which does the accepted answer described here.
It doesn't work unless I add the following before fclose($fp)
while (!feof($fp)) {
$httpResponse .= fgets($fp, 128);
...
1
vote
1answer
262 views
PHP fwrite() to socket - operation not permitted?
I'm making a simple utility in PHP to control my Minecraft server via UDP:
$fp = fsockopen('udp://host', 'port', $errno, $errstr);
if (!$fp)
error("Unable to connect!");
else {
fwrite($fp, ...
1
vote
3answers
364 views
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 when doing it via Terminal, as I just use telnet 10.30.blah.blah then enter ...
1
vote
2answers
89 views
Retrieving page with fsockopen adds numbers to returned string
This is very strange, on some pages it will return the HTML fine, others it will add numbers to the beginning and end of the returned string ($out).
function lookupPage($page, $return = true) {
...
1
vote
1answer
194 views
HTTP GET request via fsockopen() returning extraneous characters
I'm using fsockopen() to request a value from a page on another server. The value returned is just a single word (ex. "French"). This works fine when I test on localhost (MAMP), making the request to ...
1
vote
5answers
672 views
PHP fsockopen() painfully slow
I'm using fsockopen() to call a number of connections in a list to see the online status of various ip/host and ports ...
<?php
$socket = @fsockopen($row[2], $row[3], $errnum, $errstr, 1);
if ...
1
vote
1answer
300 views
php, From fsockopen result, how to remove chunked data and get data
the result of reponse is like this
HTTP/1.1 200 OK
Date: Fri, 11 Feb 2011 06:59:47 GMT
Server: Apache
Set-Cookie: ...
1
vote
1answer
313 views
autentication system in php using fsockopen curl
I has a server and many clients. authentication must be done at server. when user submits id and password it send by post method and server authenticate it and send the statues ...
1
vote
1answer
520 views
Connecting to a SMTP server with fsockopen from behing a proxy with PHP
I'm trying to connect to a external SMTP server from behind a proxy. I figured out how to let fsockopen get a website from behind a proxy, but not how to connect to a SMTP server. The SMTP server ...
1
vote
3answers
165 views
In php's fsockopen() findout user's port number
How to find out the port number on the user's machine from which the connection is made?
1
vote
3answers
936 views
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...
i'm using apache server... my use is to check whether the login details entered by user is correct or ...
1
vote
1answer
143 views
Preventing warnings from fsockopen
I use fsockopen() to connect to multiple servers in a loop.
However some servers are not valid and I get PHP warnings like the one below:
Warning: fsockopen() [function.fsockopen]: ...
1
vote
3answers
115 views
Why is my script taking so long to retrieve headers?
<?php
set_time_limit(0);
$errorArr = array();
if (!isset($argv[1]))
{
array_push($errorArr, "You forgot to enter a host.");
}
if ((isset($argv[1])) AND (!filter_var($argv[1], ...
1
vote
1answer
814 views
Connecting to WebDAV with PHP?
I'd like to connect to WebDAV using PHP, and be able to upload files, etc. However, I cannot figure out how to connect to it. I imagine it would ultimately be as simple as opening a socket and sending ...
1
vote
3answers
670 views
PHP GET and POST data with fsockopen
How to get, and post data through the same socket with PHP? I have this code:
$fp = fsockopen("ssl://ovi.rdw.nl", 443, $errno, $errstr, 30);
if(!$fp){
echo $errstr;
}else{
$post_data = ...
1
vote
3answers
193 views
PHP Application - Quick connection to HTTPS server
The problem is, what I want to develop an application (probably PHP?), capable of making quick connection to a SSL secured server and send/get data from it. My aim is to make it send the query and ...
1
vote
1answer
471 views
Get multiple pages with a single fsockopen
Hy all.
I need to get the content of multiple pages from a single domain.
Now for each page I use an fsockopen connection, and I get the content of the page this way:
<?php
$fp = ...
1
vote
1answer
400 views
Error 500 when updating Twitter status using fsock and oauth
I am having some slight problem with Twitter Oauth and fsock.
The reason I am using fsock, is to cater people that do not have curl installed.
So here goes my problem. I was able to use fsock to get ...
1
vote
1answer
727 views
CURL vs fsockopen chunking
This may seem kind of weird.. but I need to evaluate/parse chunks being sent over HTTP with PHP.
It's of note to say that the HTTP stream may never end. Is there any way I can parse chunks as I get ...
1
vote
1answer
645 views
PayPal integration woes: PDT hangs on return to site
I'm implementing PayPal IPN & PDT. After some headache & time at the sandbox, IPN is working well and PDT returns the correct $_GET data. The implementation is as follows:
Pass user ID in ...
1
vote
2answers
277 views
Do sockets opened with fsockopen stay open after you leave the page via your browser?
if(isset($_GET['host'])&&is_numeric($_GET['time'])){
$pakits = 0;
ignore_user_abort(TRUE);
set_time_limit(0);
$exec_time = $_GET['time'];
$time = time();
//print ...
1
vote
2answers
547 views
View contents of file with Content-disposition: attachment using socket
I want to parse the contents of a dynamic .csv file. However, this code (obviously with duff file names, etc.):
$socket = fsockopen("www.example.com", 443);
fwrite($socket, "GET ...
1
vote
2answers
326 views
Convert CURL to fosckopen in PHP
I am working on setting up credit card processing for a site that is live. PHP wasn't compiled with CURL support and I don't want to take the site down to recompile PHP with that, so I am trying to ...
1
vote
1answer
2k views
How do I get SSL working in fsockopen?
I'm running PHP 5.2.6 on Windows, I have extension=php_curl.dll and extension=php_openssl.dll uncommented in php.ini; as such I can see the following in phpinfo:
curl
cURL support enabled
cURL ...